AdvancedCubicBezier constructor does not store values for the second control
point - cx1 and cy1. On line 113 there should be
this.cx1 = cx1;
this.cy1 = cy1;
What is the expected output? What do you see instead?
var b:AdvancedCubicBezier = new AdvancedCubicBezier(0,0, 0.1,0, 0.9, 1, 1,1);
trace(b.cx1); // Outputs NaN instead of 0.1
trace(b.cy1); // Outputs NaN instead of 0.9
Original issue reported on code.google.com by simsons....@gmail.com on 24 Feb 2010 at 3:26
Original issue reported on code.google.com by
simsons....@gmail.com
on 24 Feb 2010 at 3:26