mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-13 11:54:01 +01:00
fix bug when arc is aux
This commit is contained in:
parent
04ccdb32cc
commit
ff8f448bd7
1 changed files with 2 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue