fix bug when arc is aux

This commit is contained in:
Val Erastov 2016-05-23 22:33:50 -07:00
parent 04ccdb32cc
commit ff8f448bd7

View file

@ -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);