From 3cfff1b8639ade19f88e347b3671da3de00f9854 Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Wed, 30 Nov 2016 21:47:28 -0800 Subject: [PATCH] add hints for ellipse tools --- web/app/sketcher/tools/ellipse.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/app/sketcher/tools/ellipse.js b/web/app/sketcher/tools/ellipse.js index 52a93ab8..50c780e8 100644 --- a/web/app/sketcher/tools/ellipse.js +++ b/web/app/sketcher/tools/ellipse.js @@ -33,6 +33,7 @@ export class EllipseTool extends Tool { this.viewer.activeLayer.objects.push(this.ellipse); this.viewer.refresh(); this.state = STATE_POINT2; + this.sendHint('specify second major axis point') break; } case STATE_POINT2: { @@ -40,6 +41,7 @@ export class EllipseTool extends Tool { this.ellipse.ep2.setFromPoint(p); this.viewer.refresh(); this.state = RADIUS; + this.sendHint('specify minor axis radius') break; } case RADIUS: