|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I'd like a way to generate a spline that is smooth, unlike linear_spline (uh,
and quadratic_spline), and defined across its entire range, unlike
cubic_spline. Akima spline in the patched version does this well, but isn't
available to me in linux.
Can anyone show me how to make a smooth spline in SDL? thanks.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
gregjohn wrote:
> I'd like a way to generate a spline that is smooth, unlike linear_spline (uh,
> and quadratic_spline), and defined across its entire range, unlike
> cubic_spline. Akima spline in the patched version does this well, but isn't
> available to me in linux.
>
> Can anyone show me how to make a smooth spline in SDL? thanks.
>
>
>
Isn't natural_spline that? Else maybe something in Chris Colefax's
spline kit would work?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"gregjohn" <pte### [at] yahoocom> wrote:
> I'd like a way to generate a spline that is smooth, unlike linear_spline (uh,
> and quadratic_spline), and defined across its entire range, unlike
> cubic_spline. Akima spline in the patched version does this well, but isn't
> available to me in linux.
>
> Can anyone show me how to make a smooth spline in SDL? thanks.
www.f-lohmueller.de/pov_tut/animate/anim21e.htm
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Jim Charter <jrc### [at] msncom> wrote:
> Isn't natural_spline that? Else maybe something in Chris Colefax's
> spline kit would work?
Thanks, I had overlooked that one, didn't notice it in the docs. It gets me
most of the way there, but it appears to give a straight line for the first and
last segment if one only defines a first and last point, no controls points.
Akima didn't do that.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
gregjohn nous apporta ses lumieres en ce 2008/01/29 07:25:
> Jim Charter <jrc### [at] msncom> wrote:
>> Isn't natural_spline that? Else maybe something in Chris Colefax's
>> spline kit would work?
>
>
> Thanks, I had overlooked that one, didn't notice it in the docs. It gets me
> most of the way there, but it appears to give a straight line for the first and
> last segment if one only defines a first and last point, no controls points.
> Akima didn't do that.
>
>
>
>
Any spline using only 2 points can only be straight. Any attempt to have such a
spline curved would be uncontrolable.
--
Alain
-------------------------------------------------
Experience hath shewn, that even under the best forms of government those
entrusted with power have, in time, and by slow operations, perverted it
into tyranny.
Thomas Jefferson
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |