jsketcher/web/app/sketcher/shapes/shape.js
2016-12-08 22:58:18 -08:00

16 lines
194 B
JavaScript

export class Shape {
constructor() {
this.visible = true;
this.style = null;
this.role = null;
}
accept(visitor) {
return visitor(this);
}
draw(ctx, scale) {
}
}