Tldraw/lib/shape-utils/circle.tsx

121 wiersze
2.8 KiB
TypeScript
Czysty Zwykły widok Historia

2021-05-28 20:30:27 +00:00
import { v4 as uuid } from 'uuid'
import * as vec from 'utils/vec'
import { CircleShape, ColorStyle, DashStyle, ShapeType, SizeStyle } from 'types'
2021-05-28 20:30:27 +00:00
import { registerShapeUtils } from './index'
import { boundsContained } from 'utils/bounds'
import { intersectCircleBounds } from 'utils/intersections'
import { pointInCircle } from 'utils/hitTests'
import { translateBounds } from 'utils/utils'
import { defaultStyle, getShapeStyle } from 'lib/shape-styles'
2021-05-12 21:11:17 +00:00
2021-05-20 09:49:40 +00:00
const circle = registerShapeUtils<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(),
2021-06-07 21:12:14 +00:00
seed: Math.random(),
2021-05-12 21:11:17 +00:00
type: ShapeType.Circle,
2021-05-15 13:02:13 +00:00
isGenerated: false,
2021-05-28 20:30:27 +00:00
name: 'Circle',
parentId: 'page0',
2021-05-12 21:11:17 +00:00
childIndex: 0,
point: [0, 0],
rotation: 0,
2021-05-26 10:34:10 +00:00
radius: 1,
isAspectRatioLocked: false,
isLocked: false,
isHidden: false,
style: defaultStyle,
2021-05-12 21:11:17 +00:00
...props,
}
},
2021-05-28 20:30:27 +00:00
render({ id, radius, style }) {
const styles = getShapeStyle(style)
2021-05-28 20:30:27 +00:00
return (
<circle
id={id}
cx={radius}
cy={radius}
r={Math.max(0, radius - Number(styles.strokeWidth) / 2)}
2021-05-28 20:30:27 +00:00
/>
)
2021-05-12 21:11:17 +00:00
},
getBounds(shape) {
2021-05-18 08:32:20 +00:00
if (!this.boundsCache.has(shape)) {
const { radius } = shape
2021-05-12 22:08:53 +00:00
2021-05-18 08:32:20 +00:00
const bounds = {
minX: 0,
maxX: radius * 2,
minY: 0,
maxY: radius * 2,
width: radius * 2,
height: radius * 2,
}
2021-05-12 21:11:17 +00:00
2021-05-18 08:32:20 +00:00
this.boundsCache.set(shape, bounds)
2021-05-12 21:11:17 +00:00
}
2021-05-12 22:08:53 +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-18 08:32:20 +00:00
getRotatedBounds(shape) {
return this.getBounds(shape)
2021-05-12 21:11:17 +00:00
},
2021-05-17 21:27:18 +00:00
getCenter(shape) {
return [shape.point[0] + shape.radius, shape.point[1] + shape.radius]
},
2021-05-14 22:56:41 +00:00
hitTest(shape, point) {
return pointInCircle(
point,
vec.addScalar(shape.point, shape.radius),
shape.radius
2021-05-12 21:11:17 +00:00
)
},
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-23 13:46:04 +00:00
transform(shape, bounds, { initialShape, transformOrigin, scaleX, scaleY }) {
shape.radius =
initialShape.radius * Math.min(Math.abs(scaleX), Math.abs(scaleY))
shape.point = [
bounds.minX +
(bounds.width - shape.radius * 2) *
(scaleX < 0 ? 1 - transformOrigin[0] : transformOrigin[0]),
bounds.minY +
(bounds.height - shape.radius * 2) *
(scaleY < 0 ? 1 - transformOrigin[1] : transformOrigin[1]),
]
2021-05-14 12:44:23 +00:00
return this
2021-05-14 12:44:23 +00:00
},
2021-05-15 13:02:13 +00:00
2021-05-19 09:35:00 +00:00
transformSingle(shape, bounds, info) {
2021-05-23 13:46:04 +00:00
shape.radius = Math.min(bounds.width, bounds.height) / 2
shape.point = [bounds.minX, bounds.minY]
return this
},
2021-05-23 13:46:04 +00:00
canChangeAspectRatio: false,
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