| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 | 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'
import {
  getBoundsFromPoints,
  getRotatedCorners,
  rotateBounds,
  translateBounds,
} from 'utils/utils'
const ellipse = registerShapeUtils<EllipseShape>({
  boundsCache: new WeakMap([]),
  create(props) {
    return {
      id: uuid(),
      type: ShapeType.Ellipse,
      isGenerated: false,
      name: 'Ellipse',
      parentId: 'page0',
      childIndex: 0,
      point: [0, 0],
      radiusX: 1,
      radiusY: 1,
      rotation: 0,
      isAspectRatioLocked: false,
      isLocked: false,
      isHidden: false,
      style: {
        fill: '#c6cacb',
        stroke: '#000',
      },
      ...props,
    }
  },
  render({ id, radiusX, radiusY, style }) {
    return (
      <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)}
      />
    )
  },
  applyStyles(shape, style) {
    Object.assign(shape.style, style)
    return this
  },
  getBounds(shape) {
    if (!this.boundsCache.has(shape)) {
      const { radiusX, radiusY } = shape
      const bounds = {
        minX: 0,
        minY: 0,
        maxX: radiusX * 2,
        maxY: radiusY * 2,
        width: radiusX * 2,
        height: radiusY * 2,
      }
      this.boundsCache.set(shape, bounds)
    }
    return translateBounds(this.boundsCache.get(shape), shape.point)
  },
  getRotatedBounds(shape) {
    return getRotatedEllipseBounds(
      shape.point[0],
      shape.point[1],
      shape.radiusX,
      shape.radiusY,
      shape.rotation
    )
  },
  getCenter(shape) {
    return [shape.point[0] + shape.radiusX, shape.point[1] + shape.radiusY]
  },
  hitTest(shape, point) {
    return pointInEllipse(
      point,
      vec.add(shape.point, [shape.radiusX, shape.radiusY]),
      shape.radiusX,
      shape.radiusY,
      shape.rotation
    )
  },
  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,
        brushBounds,
        shape.rotation
      ).length > 0
    )
  },
  rotateTo(shape, rotation) {
    shape.rotation = rotation
    return this
  },
  translateTo(shape, point) {
    shape.point = vec.toPrecision(point)
    return this
  },
  transform(shape, bounds, { scaleX, scaleY, initialShape }) {
    // TODO: Locked aspect ratio transform
    shape.point = [bounds.minX, bounds.minY]
    shape.radiusX = bounds.width / 2
    shape.radiusY = bounds.height / 2
    shape.rotation =
      (scaleX < 0 && scaleY >= 0) || (scaleY < 0 && scaleX >= 0)
        ? -initialShape.rotation
        : initialShape.rotation
    return this
  },
  transformSingle(shape, bounds, info) {
    return this.transform(shape, bounds, info)
  },
  setProperty(shape, prop, value) {
    shape[prop] = value
    return this
  },
  canTransform: true,
  canChangeAspectRatio: true,
})
export default ellipse
 |