Fixes code save

This commit is contained in:
Steve Ruiz 2021-05-16 09:33:08 +01:00
parent 520553fb2f
commit e21748f7b7
9 changed files with 66 additions and 17 deletions

25
lib/code/ray.ts Normal file
View file

@ -0,0 +1,25 @@
import CodeShape from "./index"
import { v4 as uuid } from "uuid"
import { RayShape, ShapeType } from "types"
export default class Ray extends CodeShape<RayShape> {
constructor(props = {} as Partial<RayShape>) {
super({
id: uuid(),
type: ShapeType.Ray,
isGenerated: false,
name: "Ray",
parentId: "page0",
childIndex: 0,
point: [0, 0],
direction: [0, 1],
rotation: 0,
style: {
fill: "#777",
stroke: "#000",
strokeWidth: 1,
},
...props,
})
}
}