mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-16 21:43:08 +01:00
14 lines
No EOL
310 B
JavaScript
14 lines
No EOL
310 B
JavaScript
import {MObject} from './mobject';
|
|
|
|
export class MSketchObject extends MObject {
|
|
|
|
static TYPE = 'sketchObject';
|
|
|
|
constructor(face, sketchPrimitive) {
|
|
super(MSketchObject.TYPE, sketchPrimitive.id);
|
|
this.face = face;
|
|
this.sketchPrimitive = sketchPrimitive;
|
|
this.construction = false;
|
|
}
|
|
|
|
} |