mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-11 10:53:45 +01:00
16 lines
194 B
JavaScript
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) {
|
|
}
|
|
}
|