diff --git a/web/app/sketcher/shapes/arc.js b/web/app/sketcher/shapes/arc.js index d1ca0410..86874b0d 100644 --- a/web/app/sketcher/shapes/arc.js +++ b/web/app/sketcher/shapes/arc.js @@ -9,6 +9,8 @@ TCAD.TWO.Arc = function(a, b, c) { c.parent = this; this.children.push(a, b, c); this.r = new TCAD.TWO.Ref(0); + this.r.value = this.distanceA(); + this.r.obj = this; }; TCAD.TWO.utils.extend(TCAD.TWO.Arc, TCAD.TWO.SketchObject);