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.

20 lines
297 B

  1. 'use strict';
  2. import NodeBase from '../util/NodeBase'
  3. class Empty extends NodeBase {
  4. constructor (options, body, labelModule) {
  5. super(options, body, labelModule);
  6. }
  7. setOptions() {}
  8. resize() {}
  9. draw() {}
  10. distanceToBorder() {}
  11. updateBoundingBox() {}}
  12. export default Empty;