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.

21 lines
312 B

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