您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ellipse.ts 902B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import CodeShape from "./index"
  2. import { v4 as uuid } from "uuid"
  3. import { EllipseShape, ShapeType } from "types"
  4. import { vectorToPoint } from "utils/utils"
  5. export default class Ellipse extends CodeShape<EllipseShape> {
  6. constructor(props = {} as Partial<EllipseShape>) {
  7. props.point = vectorToPoint(props.point)
  8. super({
  9. id: uuid(),
  10. type: ShapeType.Ellipse,
  11. isGenerated: false,
  12. name: "Ellipse",
  13. parentId: "page0",
  14. childIndex: 0,
  15. point: [0, 0],
  16. radiusX: 20,
  17. radiusY: 20,
  18. rotation: 0,
  19. style: {
  20. fill: "#777",
  21. stroke: "#000",
  22. strokeWidth: 1,
  23. },
  24. ...props,
  25. })
  26. }
  27. export() {
  28. const shape = { ...this.shape }
  29. shape.point = vectorToPoint(shape.point)
  30. return shape
  31. }
  32. get radiusX() {
  33. return this.shape.radiusX
  34. }
  35. get radiusY() {
  36. return this.shape.radiusY
  37. }
  38. }