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