mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-12 03:13:24 +01:00
14 lines
No EOL
227 B
JavaScript
14 lines
No EOL
227 B
JavaScript
import {MObject} from './mobject';
|
|
|
|
export class MEdge extends MObject {
|
|
|
|
static TYPE = 'edge';
|
|
|
|
constructor(id, shell, brepEdge) {
|
|
super();
|
|
this.id = id;
|
|
this.shell = shell;
|
|
this.brepEdge = brepEdge;
|
|
}
|
|
|
|
} |