mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 12:53:52 +01:00
13 lines
No EOL
237 B
JavaScript
13 lines
No EOL
237 B
JavaScript
import {MObject} from './mobject';
|
|
|
|
export class MVertex extends MObject {
|
|
|
|
static TYPE = 'vertex';
|
|
|
|
constructor(id, shell, brepVertex) {
|
|
super(MVertex.TYPE, id);
|
|
this.shell = shell;
|
|
this.brepVertex = brepVertex;
|
|
}
|
|
|
|
} |