tldraw/lib/shapes/circle.tsx

99 lines
1.9 KiB
TypeScript
Raw Normal View History

2021-05-12 21:11:17 +00:00
import { v4 as uuid } from "uuid"
import * as vec from "utils/vec"
2021-05-13 18:22:16 +00:00
import { CircleShape, ShapeType } from "types"
2021-05-14 12:44:23 +00:00
import { createShape } from "./index"
2021-05-13 18:22:16 +00:00
import { boundsContained } from "utils/bounds"
import { intersectCircleBounds } from "utils/intersections"
2021-05-12 21:11:17 +00:00
2021-05-13 18:22:16 +00:00
const circle = createShape<CircleShape>({
2021-05-14 12:44:23 +00:00
boundsCache: new WeakMap([]),
2021-05-13 18:22:16 +00:00
create(props) {
2021-05-12 21:11:17 +00:00
return {
id: uuid(),
type: ShapeType.Circle,
name: "Circle",
parentId: "page0",
childIndex: 0,
point: [0, 0],
radius: 20,
rotation: 0,
style: {},
...props,
}
},
render({ id, radius }) {
return <circle id={id} cx={radius} cy={radius} r={radius} />
},
getBounds(shape) {
2021-05-14 12:44:23 +00:00
if (this.boundsCache.has(shape)) {
return this.boundsCache.get(shape)
2021-05-12 22:08:53 +00:00
}
2021-05-12 21:11:17 +00:00
const {
2021-05-12 22:08:53 +00:00
point: [x, y],
2021-05-12 21:11:17 +00:00
radius,
} = shape
2021-05-12 22:08:53 +00:00
const bounds = {
minX: x,
maxX: x + radius * 2,
minY: y,
maxY: y + radius * 2,
2021-05-12 21:11:17 +00:00
width: radius * 2,
height: radius * 2,
}
2021-05-12 22:08:53 +00:00
2021-05-14 12:44:23 +00:00
this.boundsCache.set(shape, bounds)
2021-05-12 22:08:53 +00:00
return bounds
2021-05-12 21:11:17 +00:00
},
hitTest(shape, test) {
return (
vec.dist(vec.addScalar(shape.point, shape.radius), test) < shape.radius
)
},
2021-05-13 18:22:16 +00:00
hitTestBounds(shape, bounds) {
const shapeBounds = this.getBounds(shape)
return (
boundsContained(shapeBounds, bounds) ||
intersectCircleBounds(
vec.addScalar(shape.point, shape.radius),
shape.radius,
bounds
).length > 0
)
},
2021-05-12 21:11:17 +00:00
rotate(shape) {
return shape
},
2021-05-13 06:44:52 +00:00
translate(shape, delta) {
shape.point = vec.add(shape.point, delta)
2021-05-12 21:11:17 +00:00
return shape
},
2021-05-13 18:22:16 +00:00
scale(shape, scale) {
2021-05-12 21:11:17 +00:00
return shape
},
2021-05-13 18:22:16 +00:00
stretch(shape, scaleX, scaleY) {
2021-05-12 21:11:17 +00:00
return shape
},
2021-05-14 12:44:23 +00:00
transform(shape, bounds) {
shape.point = [bounds.minX, bounds.minY]
shape.radius = Math.min(bounds.width, bounds.height) / 2
return shape
},
2021-05-13 18:22:16 +00:00
})
2021-05-12 21:11:17 +00:00
2021-05-13 18:22:16 +00:00
export default circle