123456789101112131415161718 |
- "use strict";
- /**
- * Base 2D object class, implements all the object positioning and scalling features.
- *
- * @class
- */
- function Object2D()
- {
- this.uuid =
- this.children = [];
- }
- Object2D.prototype.method_name = function()
- {
- // body...
- };
|