Object2D.js 243 B

123456789101112131415161718
  1. "use strict";
  2. /**
  3. * Base 2D object class, implements all the object positioning and scalling features.
  4. *
  5. * @class
  6. */
  7. function Object2D()
  8. {
  9. this.uuid =
  10. this.children = [];
  11. }
  12. Object2D.prototype.method_name = function()
  13. {
  14. // body...
  15. };