[DiscordArchive] the curves?
[DiscordArchive] the curves?
Archived author: Deamon • Posted: 2018-06-12T08:56:47.189000+00:00
Original source
```
f = (float)it; <- f = it, 1/f = (1/it) = t
rt0 = q0;
rt1 = 3.0f * (q1 - q0) / f; <- (1/f) is t
f *= f; <- f = (it*it) = 1/(t*t)
rt2 = 3.0f * (q0 - 2.0f * q1 + q2) / f; <- (1/f) = t*t
f *= it;
rt3 = (q3 - q0 + 3.0f * (q1 - q2)) / f;
```
Archived author: Deamon • Posted: 2018-06-12T08:56:53.159000+00:00
Original source
and so on
Archived author: Deamon • Posted: 2018-06-12T08:56:58.621000+00:00
Original source
so...
Archived author: Skarn • Posted: 2018-06-12T08:57:34.324000+00:00
Original source
is this wow or blender?
Archived author: Skarn • Posted: 2018-06-12T08:57:45.310000+00:00
Original source
I was sure about blender because the developer told me it is bezier
Archived author: Deamon • Posted: 2018-06-12T08:58:42.772000+00:00
Original source
that's blender
Archived author: Deamon • Posted: 2018-06-12T09:00:30.831000+00:00
Original source
https://developer.blender.org/diffusion/...77d1dea8c7$1362
Archived author: Skarn • Posted: 2018-06-12T09:00:45.900000+00:00
Original source
in blender, if we look at fcurves, the X coordinate represents time, Y value. We have a timestamp for value, the value itself and values for two handles.
Archived author: Skarn • Posted: 2018-06-12T09:00:59.718000+00:00
Original source
But I am having issues distributing them over time there correctly
Archived author: Skarn • Posted: 2018-06-12T09:01:14.053000+00:00
Original source
when I am splitting curves into 3 bezier curves, instead of just one 3d one