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.

19 lines
271 B

  1. /**
  2. * Created by Alex on 3/18/2015.
  3. */
  4. 'use strict';
  5. class Empty extends BaseNode {
  6. constructor (options, body, labelModule) {
  7. super(options, body, labelModule);
  8. }
  9. setOptions() {}
  10. resize() {}
  11. draw() {}
  12. distanceToBorder() {}
  13. }
  14. export default Empty;