Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ray.ts 922B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import CodeShape from "./index"
  2. import { v4 as uuid } from "uuid"
  3. import { RayShape, ShapeType } from "types"
  4. import { vectorToPoint } from "utils/utils"
  5. export default class Ray extends CodeShape<RayShape> {
  6. constructor(props = {} as Partial<RayShape>) {
  7. props.point = vectorToPoint(props.point)
  8. props.direction = vectorToPoint(props.direction)
  9. super({
  10. id: uuid(),
  11. type: ShapeType.Ray,
  12. isGenerated: false,
  13. name: "Ray",
  14. parentId: "page0",
  15. childIndex: 0,
  16. point: [0, 0],
  17. direction: [0, 1],
  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. shape.direction = vectorToPoint(shape.direction)
  31. return shape
  32. }
  33. get direction() {
  34. return this.shape.direction
  35. }
  36. }