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.

68 lines
1.9 KiB

  1. 'use strict';
  2. import NodeBase from '../util/NodeBase'
  3. class Ellipse extends NodeBase {
  4. constructor(options, body, labelModule) {
  5. super(options, body, labelModule);
  6. }
  7. resize(ctx, selected) {
  8. if (this.width === undefined) {
  9. var textSize = this.labelModule.getTextSize(ctx, selected);
  10. this.width = textSize.width * 1.5;
  11. this.height = textSize.height * 2;
  12. if (this.width < this.height) {
  13. this.width = this.height;
  14. }
  15. }
  16. }
  17. draw(ctx, x, y, selected, hover) {
  18. this.resize(ctx, selected);
  19. this.left = x - this.width / 2;
  20. this.top = y - this.height / 2;
  21. var borderWidth = this.options.borderWidth;
  22. var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth;
  23. ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border;
  24. ctx.lineWidth = (selected ? selectionLineWidth : borderWidth);
  25. ctx.lineWidth /= this.body.view.scale;
  26. ctx.lineWidth = Math.min(this.width, ctx.lineWidth);
  27. ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background;
  28. ctx.ellipse(this.left, this.top, this.width, this.height);
  29. // draw shadow if enabled
  30. this.enableShadow(ctx);
  31. ctx.fill();
  32. // disable shadows for other elements.
  33. this.disableShadow(ctx);
  34. ctx.stroke();
  35. this.boundingBox.left = this.left;
  36. this.boundingBox.top = this.top;
  37. this.boundingBox.bottom = this.top + this.height;
  38. this.boundingBox.right = this.left + this.width;
  39. this.labelModule.draw(ctx, x, y, selected);
  40. }
  41. distanceToBorder(ctx, angle) {
  42. this.resize(ctx);
  43. var a = this.width / 2;
  44. var b = this.height / 2;
  45. var w = (Math.sin(angle) * a);
  46. var h = (Math.cos(angle) * b);
  47. return a * b / Math.sqrt(w * w + h * h);
  48. }
  49. }
  50. export default Ellipse;