Jump to content

Bézier curves/Intersections: Difference between revisions

m
Small code improvement.
m (Small improvement to code.)
m (Small code improvement.)
Line 2,434:
public QuadSpline(double aC0, double aC1, double aC2) {
c0 = aC0; c1 = aC1; c2 = aC2;
c1 = aC1;
c2 = aC2;
}
Line 2,443 ⟶ 2,441:
}
private double c0, c1, c2;
private double c1;
private double c2;
}
Line 2,452 ⟶ 2,448:
public QuadCurve(QuadSpline aX, QuadSpline aY) {
x = aX; y = aY;
y = aY;
}
Line 2,460 ⟶ 2,455:
}
private QuadSpline x, y;
private QuadSpline y;
}
908

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.