Tldraw/lib/shape-utils/ellipse.tsx

212 wiersze
5.1 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 { EllipseShape, ShapeType } from 'types'
2021-06-08 10:32:20 +00:00
import { getShapeUtils, registerShapeUtils } from './index'
2021-05-28 20:30:27 +00:00
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 {
2021-06-08 10:32:20 +00:00
ease,
2021-05-19 09:35:00 +00:00
getBoundsFromPoints,
getRotatedCorners,
2021-06-08 10:32:20 +00:00
getSvgPathFromStroke,
pointsBetween,
rng,
2021-05-19 09:35:00 +00:00
rotateBounds,
2021-06-08 10:32:20 +00:00
shuffleArr,
2021-05-19 09:35:00 +00:00
translateBounds,
2021-05-28 20:30:27 +00:00
} from 'utils/utils'
import { defaultStyle, getShapeStyle } from 'lib/shape-styles'
2021-06-08 10:32:20 +00:00
import getStroke from 'perfect-freehand'
const pathCache = new WeakMap<EllipseShape, string>([])
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(),
2021-06-07 21:12:14 +00:00
seed: Math.random(),
2021-05-14 12:44:23 +00:00
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,
isAspectRatioLocked: false,
isLocked: false,
isHidden: false,
style: defaultStyle,
2021-05-14 12:44:23 +00:00
...props,
}
},
2021-06-08 10:32:20 +00:00
render(shape) {
const { id, radiusX, radiusY, style } = shape
const styles = getShapeStyle(style)
2021-06-08 10:32:20 +00:00
if (!pathCache.has(shape)) {
renderPath(shape)
}
const path = pathCache.get(shape)
2021-05-14 12:44:23 +00:00
return (
2021-06-08 10:32:20 +00:00
<g id={id}>
<ellipse
id={id}
cx={radiusX}
cy={radiusY}
rx={Math.max(0, radiusX - Number(styles.strokeWidth) / 2)}
ry={Math.max(0, radiusY - Number(styles.strokeWidth) / 2)}
stroke="none"
/>
<path d={path} fill={styles.stroke} />
</g>
2021-05-14 12:44:23 +00:00
)
2021-06-08 10:32:20 +00:00
// return (
// <ellipse
// id={id}
// cx={radiusX}
// cy={radiusY}
// rx={Math.max(0, radiusX - Number(styles.strokeWidth) / 2)}
// ry={Math.max(0, radiusY - Number(styles.strokeWidth) / 2)}
// />
// )
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-23 08:30:20 +00:00
transform(shape, bounds, { scaleX, scaleY, initialShape }) {
2021-05-29 13:59:11 +00:00
// TODO: Locked aspect ratio transform
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
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-14 12:44:23 +00:00
})
export default ellipse
2021-06-08 10:32:20 +00:00
function renderPath(shape: EllipseShape) {
const { style, id, radiusX, radiusY, point } = shape
const getRandom = rng(id)
const center = vec.sub(getShapeUtils(shape).getCenter(shape), point)
const strokeWidth = +getShapeStyle(style).strokeWidth
const rx = radiusX + getRandom() * strokeWidth
const ry = radiusY + getRandom() * strokeWidth
const points: number[][] = []
const start = Math.PI + Math.PI * getRandom()
const overlap = Math.PI / 12
for (let i = 2; i < 8; i++) {
const rads = start + overlap * 2 * (i / 8)
const x = rx * Math.cos(rads) + center[0]
const y = ry * Math.sin(rads) + center[1]
points.push([x, y])
}
for (let i = 5; i < 32; i++) {
const rads = start + overlap * 2 + Math.PI * 2.5 * ease(i / 35)
const x = rx * Math.cos(rads) + center[0]
const y = ry * Math.sin(rads) + center[1]
points.push([x, y])
}
for (let i = 0; i < 8; i++) {
const rads = start + overlap * 2 * (i / 4)
const x = rx * Math.cos(rads) + center[0]
const y = ry * Math.sin(rads) + center[1]
points.push([x, y])
}
const stroke = getStroke(points, {
size: 1 + strokeWidth * 2,
thinning: 0.6,
easing: (t) => t * t * t * t,
end: { taper: strokeWidth * 20 },
start: { taper: strokeWidth * 20 },
simulatePressure: false,
})
pathCache.set(shape, getSvgPathFromStroke(stroke))
}