vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
449 B

  1. /**
  2. * Created by Alex on 3/18/2015.
  3. */
  4. 'use strict';
  5. class Empty {
  6. constructor (options, labelModule) {
  7. this.labelModule = labelModule;
  8. this.setOptions(options);
  9. this.top = undefined;
  10. this.left = undefined;
  11. this.height = undefined;
  12. this.height = undefined;
  13. this.boundingBox = {top: 0, left: 0, right: 0, bottom: 0};
  14. }
  15. setOptions() {}
  16. resize() {}
  17. draw() {}
  18. distanceToBorder() {}
  19. }
  20. export default Empty;