mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 12:53:52 +01:00
8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
TCAD = {};
|
|
|
|
TCAD.App2D = function() {
|
|
|
|
this.viewer = new TCAD.Viewer2D(document.getElementById('editor'));
|
|
this.ui = new TCAD.UI2D(this.viewer);
|
|
|
|
};
|