mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 02:13:58 +01:00
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
import {MShell} from './mshell';
|
|
import {MFace} from './mface';
|
|
|
|
export class MOpenFaceShell extends MShell {
|
|
|
|
constructor(surface) {
|
|
super();
|
|
this.faces.push(new MFace(this.id + '/SURFACE', this, surface))
|
|
}
|
|
|
|
get face() {
|
|
return this.faces[0];
|
|
}
|
|
|
|
}
|