19 lines
437 B
JavaScript
19 lines
437 B
JavaScript
import { JlGraphic } from 'jl-graphic';
|
|
import { SectionGraphic } from './SectionGraphic.js';
|
|
|
|
class Section extends JlGraphic {
|
|
static Type = 'Section';
|
|
lineGraphic;
|
|
constructor() {
|
|
super(Section.Type);
|
|
this.lineGraphic = new SectionGraphic();
|
|
// this.transformSave = true;
|
|
this.addChild(this.lineGraphic);
|
|
}
|
|
doRepaint() {
|
|
console.log('repaint');
|
|
}
|
|
}
|
|
|
|
export { Section };
|