| 
  | 
Guys,
thank you so much for your highly appreciated contributions.
Question: Do I have my maths right
when I have a spline with -1,0,0.5,1,2
> #macro MSpline(P1,P2,M1,M2,M3)
>   spline {
>     cubic_spline
>     -1,M1
>      0,P1
>      0.5,M2
>      1,P2
>      2,M3
>   }
> #end  // end of macro
going from -1 to 2
and my while is from 0 to 1?
#local ctr = 0;
#while (ctr <= 1)
 [......]
 #local ctr = ctr + 0.01;
#end   // end of while
I tried other figures (instead of -1,0,0.5,1,2), but I can not figure it
out.
Thanks!
Greetings!
Chris
 Post a reply to this message 
 | 
  |