mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 10:25:36 +01:00
14 lines
No EOL
239 B
JavaScript
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;
|
|
}
|
|
|
|
} |