mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 01:13:27 +01:00
15 lines
238 B
TypeScript
15 lines
238 B
TypeScript
import {Viewer} from "../viewer2d";
|
|
|
|
export class Shape {
|
|
|
|
visible: boolean = true;
|
|
style: any = null;
|
|
role: string = null;
|
|
|
|
accept(visitor) {
|
|
return visitor(this);
|
|
}
|
|
|
|
draw(ctx: any, scale: number, viewer: Viewer) {
|
|
}
|
|
}
|