tldraw/lib/shape-utils/ray.tsx

104 lines
2 KiB
TypeScript
Raw Normal View History

2021-05-14 12:44:23 +00:00
import { v4 as uuid } from "uuid"
import * as vec from "utils/vec"
import { RayShape, ShapeType } from "types"
2021-05-20 09:49:40 +00:00
import { registerShapeUtils } from "./index"
2021-05-14 12:44:23 +00:00
import { boundsContained } from "utils/bounds"
import { intersectCircleBounds } from "utils/intersections"
import { DotCircle } from "components/canvas/misc"
2021-05-18 08:32:20 +00:00
import { translateBounds } from "utils/utils"
2021-05-14 12:44:23 +00:00
2021-05-20 09:49:40 +00:00
const ray = registerShapeUtils<RayShape>({
2021-05-14 12:44:23 +00:00
boundsCache: new WeakMap([]),
create(props) {
return {
id: uuid(),
type: ShapeType.Ray,
2021-05-15 13:02:13 +00:00
isGenerated: false,
2021-05-14 12:44:23 +00:00
name: "Ray",
parentId: "page0",
childIndex: 0,
point: [0, 0],
2021-05-15 15:20:21 +00:00
direction: [0, 1],
2021-05-14 12:44:23 +00:00
rotation: 0,
2021-05-15 15:20:21 +00:00
style: {
2021-05-19 09:35:00 +00:00
fill: "#c6cacb",
2021-05-15 15:20:21 +00:00
stroke: "#000",
strokeWidth: 1,
},
2021-05-14 12:44:23 +00:00
...props,
}
},
render({ id, direction }) {
const [x2, y2] = vec.add([0, 0], vec.mul(direction, 100000))
return (
<g id={id}>
<line x1={0} y1={0} x2={x2} y2={y2} />
<DotCircle cx={0} cy={0} r={4} />
</g>
)
2021-05-14 12:44:23 +00:00
},
2021-05-18 08:32:20 +00:00
getRotatedBounds(shape) {
return this.getBounds(shape)
},
2021-05-14 12:44:23 +00:00
2021-05-18 08:32:20 +00:00
getBounds(shape) {
if (!this.boundsCache.has(shape)) {
const bounds = {
minX: 0,
maxX: 1,
minY: 0,
maxY: 1,
width: 1,
height: 1,
}
this.boundsCache.set(shape, bounds)
2021-05-14 12:44:23 +00:00
}
2021-05-18 08:32:20 +00:00
return translateBounds(this.boundsCache.get(shape), shape.point)
2021-05-14 12:44:23 +00:00
},
2021-05-17 21:27:18 +00:00
getCenter(shape) {
return shape.point
},
2021-05-14 12:44:23 +00:00
hitTest(shape, test) {
return true
2021-05-14 12:44:23 +00:00
},
hitTestBounds(this, shape, brushBounds) {
const shapeBounds = this.getBounds(shape)
return (
boundsContained(shapeBounds, brushBounds) ||
intersectCircleBounds(shape.point, 4, brushBounds).length > 0
)
},
rotate(shape) {
return shape
},
translate(shape, delta) {
shape.point = vec.add(shape.point, delta)
return shape
},
scale(shape, scale: number) {
return shape
},
transform(shape, bounds) {
2021-05-15 15:20:21 +00:00
shape.point = [bounds.minX, bounds.minY]
2021-05-14 12:44:23 +00:00
return shape
},
2021-05-15 13:02:13 +00:00
canTransform: false,
2021-05-14 12:44:23 +00:00
})
export default ray