rt-graphic-component/components/Section/Section.js
2023-12-25 13:55:02 +08:00

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 };