Tldraw/lib/code/dot.ts

36 wiersze
737 B
TypeScript
Czysty Zwykły widok Historia

2021-05-15 13:02:13 +00:00
import CodeShape from "./index"
import { v4 as uuid } from "uuid"
import { DotShape, ShapeType } from "types"
2021-05-17 10:01:11 +00:00
import { vectorToPoint } from "utils/utils"
2021-05-15 13:02:13 +00:00
export default class Dot extends CodeShape<DotShape> {
constructor(props = {} as Partial<DotShape>) {
2021-05-17 10:01:11 +00:00
props.point = vectorToPoint(props.point)
2021-05-15 13:02:13 +00:00
super({
id: uuid(),
type: ShapeType.Dot,
isGenerated: false,
name: "Dot",
parentId: "page0",
childIndex: 0,
point: [0, 0],
rotation: 0,
style: {
2021-05-19 09:35:00 +00:00
fill: "#c6cacb",
2021-05-15 13:02:13 +00:00
stroke: "#000",
strokeWidth: 1,
},
...props,
})
}
2021-05-17 10:01:11 +00:00
export() {
const shape = { ...this.shape }
shape.point = vectorToPoint(shape.point)
return shape
}
2021-05-15 13:02:13 +00:00
}