jsketcher/web/app/cad/model/mvertex.js
2018-07-02 00:12:57 -07:00

14 lines
No EOL
239 B
JavaScript

import {MObject} from './mobject';
export class MVertex extends MObject {
static TYPE = 'vertex';
constructor(id, shell, brepVertex) {
super();
this.id = id;
this.shell = shell;
this.brepVertex = brepVertex;
}
}