Sine Curve

Sine Curve from equations

Diminishing amplitude Sine Curve
n = 500;
w = 10;
h = 4;
x = 0..Math.PI*2*10..#n;
y = Math.Sin(0..360*w..#n) * (h..0.1..#n);
p = Point.ByCoordinates(x,y);
c = NurbsCurve.ByPoints(p);
Diminishing amplitude Sine Curve along Base Curve
Diminishing amplitude Sine Curve along Base Curve with Attractor

Last updated