2021-05-28 20:30:27 +00:00
|
|
|
import { v4 as uuid } from 'uuid'
|
|
|
|
import * as vec from 'utils/vec'
|
|
|
|
import { EllipseShape, ShapeType } from 'types'
|
|
|
|
import { registerShapeUtils } from './index'
|
|
|
|
import { boundsContained, getRotatedEllipseBounds } from 'utils/bounds'
|
|
|
|
import { intersectEllipseBounds } from 'utils/intersections'
|
|
|
|
import { pointInEllipse } from 'utils/hitTests'
|
2021-05-19 09:35:00 +00:00
|
|
|
import {
|
|
|
|
getBoundsFromPoints,
|
|
|
|
getRotatedCorners,
|
|
|
|
rotateBounds,
|
|
|
|
translateBounds,
|
2021-05-28 20:30:27 +00:00
|
|
|
} from 'utils/utils'
|
2021-05-14 12:44:23 +00:00
|
|
|
|
2021-05-20 09:49:40 +00:00
|
|
|
const ellipse = registerShapeUtils<EllipseShape>({
|
2021-05-14 12:44:23 +00:00
|
|
|
boundsCache: new WeakMap([]),
|
|
|
|
|
|
|
|
create(props) {
|
|
|
|
return {
|
|
|
|
id: uuid(),
|
|
|
|
type: ShapeType.Ellipse,
|
2021-05-15 13:02:13 +00:00
|
|
|
isGenerated: false,
|
2021-05-28 20:30:27 +00:00
|
|
|
name: 'Ellipse',
|
|
|
|
parentId: 'page0',
|
2021-05-14 12:44:23 +00:00
|
|
|
childIndex: 0,
|
|
|
|
point: [0, 0],
|
2021-05-26 10:34:10 +00:00
|
|
|
radiusX: 1,
|
|
|
|
radiusY: 1,
|
2021-05-14 12:44:23 +00:00
|
|
|
rotation: 0,
|
2021-05-29 10:12:28 +00:00
|
|
|
isAspectRatioLocked: false,
|
|
|
|
isLocked: false,
|
|
|
|
isHidden: false,
|
2021-05-15 17:11:08 +00:00
|
|
|
style: {
|
2021-05-28 20:30:27 +00:00
|
|
|
fill: '#c6cacb',
|
|
|
|
stroke: '#000',
|
2021-05-15 17:11:08 +00:00
|
|
|
},
|
2021-05-14 12:44:23 +00:00
|
|
|
...props,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-05-28 20:30:27 +00:00
|
|
|
render({ id, radiusX, radiusY, style }) {
|
2021-05-14 12:44:23 +00:00
|
|
|
return (
|
2021-05-28 20:30:27 +00:00
|
|
|
<ellipse
|
|
|
|
id={id}
|
|
|
|
cx={radiusX}
|
|
|
|
cy={radiusY}
|
|
|
|
rx={Math.max(0, radiusX - Number(style.strokeWidth) / 2)}
|
|
|
|
ry={Math.max(0, radiusY - Number(style.strokeWidth) / 2)}
|
|
|
|
/>
|
2021-05-14 12:44:23 +00:00
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-05-26 10:34:10 +00:00
|
|
|
applyStyles(shape, style) {
|
|
|
|
Object.assign(shape.style, style)
|
|
|
|
return this
|
|
|
|
},
|
|
|
|
|
2021-05-14 12:44:23 +00:00
|
|
|
getBounds(shape) {
|
2021-05-18 08:32:20 +00:00
|
|
|
if (!this.boundsCache.has(shape)) {
|
|
|
|
const { radiusX, radiusY } = shape
|
|
|
|
|
|
|
|
const bounds = {
|
|
|
|
minX: 0,
|
|
|
|
minY: 0,
|
2021-05-23 08:30:20 +00:00
|
|
|
maxX: radiusX * 2,
|
2021-05-18 08:32:20 +00:00
|
|
|
maxY: radiusY * 2,
|
|
|
|
width: radiusX * 2,
|
|
|
|
height: radiusY * 2,
|
|
|
|
}
|
|
|
|
|
|
|
|
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-18 08:32:20 +00:00
|
|
|
getRotatedBounds(shape) {
|
2021-05-23 08:30:20 +00:00
|
|
|
return getRotatedEllipseBounds(
|
|
|
|
shape.point[0],
|
|
|
|
shape.point[1],
|
|
|
|
shape.radiusX,
|
|
|
|
shape.radiusY,
|
|
|
|
shape.rotation
|
|
|
|
)
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
2021-05-17 21:27:18 +00:00
|
|
|
getCenter(shape) {
|
|
|
|
return [shape.point[0] + shape.radiusX, shape.point[1] + shape.radiusY]
|
|
|
|
},
|
|
|
|
|
2021-05-14 12:44:23 +00:00
|
|
|
hitTest(shape, point) {
|
2021-05-14 22:56:41 +00:00
|
|
|
return pointInEllipse(
|
|
|
|
point,
|
|
|
|
vec.add(shape.point, [shape.radiusX, shape.radiusY]),
|
|
|
|
shape.radiusX,
|
2021-05-19 09:35:00 +00:00
|
|
|
shape.radiusY,
|
|
|
|
shape.rotation
|
2021-05-14 22:56:41 +00:00
|
|
|
)
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
hitTestBounds(this, shape, brushBounds) {
|
|
|
|
const shapeBounds = this.getBounds(shape)
|
|
|
|
|
|
|
|
return (
|
|
|
|
boundsContained(shapeBounds, brushBounds) ||
|
|
|
|
intersectEllipseBounds(
|
|
|
|
vec.add(shape.point, [shape.radiusX, shape.radiusY]),
|
|
|
|
shape.radiusX,
|
|
|
|
shape.radiusY,
|
2021-05-19 09:35:00 +00:00
|
|
|
brushBounds,
|
|
|
|
shape.rotation
|
2021-05-14 12:44:23 +00:00
|
|
|
).length > 0
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-05-25 11:38:21 +00:00
|
|
|
rotateTo(shape, rotation) {
|
|
|
|
shape.rotation = rotation
|
2021-05-25 09:00:59 +00:00
|
|
|
return this
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
2021-05-25 11:38:21 +00:00
|
|
|
translateTo(shape, point) {
|
2021-05-28 20:30:27 +00:00
|
|
|
shape.point = vec.toPrecision(point)
|
2021-05-25 09:00:59 +00:00
|
|
|
return this
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
2021-05-23 08:30:20 +00:00
|
|
|
transform(shape, bounds, { scaleX, scaleY, initialShape }) {
|
2021-05-14 12:44:23 +00:00
|
|
|
shape.point = [bounds.minX, bounds.minY]
|
|
|
|
shape.radiusX = bounds.width / 2
|
|
|
|
shape.radiusY = bounds.height / 2
|
|
|
|
|
2021-05-23 08:30:20 +00:00
|
|
|
shape.rotation =
|
|
|
|
(scaleX < 0 && scaleY >= 0) || (scaleY < 0 && scaleX >= 0)
|
|
|
|
? -initialShape.rotation
|
|
|
|
: initialShape.rotation
|
|
|
|
|
2021-05-25 09:00:59 +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) {
|
|
|
|
return this.transform(shape, bounds, info)
|
|
|
|
},
|
|
|
|
|
2021-05-29 10:12:28 +00:00
|
|
|
setProperty(shape, prop, value) {
|
|
|
|
shape[prop] = value
|
2021-05-25 09:00:59 +00:00
|
|
|
return this
|
|
|
|
},
|
|
|
|
|
2021-05-15 13:02:13 +00:00
|
|
|
canTransform: true,
|
2021-05-23 13:46:04 +00:00
|
|
|
canChangeAspectRatio: true,
|
2021-05-14 12:44:23 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
export default ellipse
|