UNPKG

353 BJavaScriptView Raw
1import RRElement from './rrelement';
2import LayoutInfo from './layoutinfo';
3
4export default class RRLine extends RRElement {
5
6 constructor() {
7 super();
8 }
9
10 computeLayoutInfo(rrDiagramToSVG) {
11 this.setLayoutInfo(new LayoutInfo(0, 10, 5));
12 }
13
14 toSVG(rrDiagramToSVG, xOffset, yOffset, svgContent) {
15 }
16
17}
\No newline at end of file