[DiscordArchive] Does anybody know how to project 3D Bezier curves?
[DiscordArchive] Does anybody know how to project 3D Bezier curves?
Archived author: Deamon • Posted: 2018-06-11T20:07:15.913000+00:00
Original source
let me think
Archived author: Skarn • Posted: 2018-06-11T20:07:29.089000+00:00
Original source
This how I set it right now
Archived author: Skarn • Posted: 2018-06-11T20:08:05.597000+00:00
Original source
```py
keyframe.co = frame, track[i].value[j]
keyframe.handle_left = frame, track[i].in_tan[j]
keyframe.handle_right = frame, track[i].out_tan[j]
keyframe.interpolation = 'BEZIER' # TODO: hermite
```
Archived author: Deamon • Posted: 2018-06-11T20:15:16.990000+00:00
Original source
https://blender.stackexchange.com/questi...ier-curves
[Embed: Mathematical formula for Bezier curves]
What mathematical formula does Blender use to calculate Bezier paths?
https://blender.stackexchange.com/questi...ier-curves
Archived author: Deamon • Posted: 2018-06-11T20:15:19.704000+00:00
Original source
hmmm
Archived author: Skarn • Posted: 2018-06-11T20:16:50.535000+00:00
Original source
You are looking at wrong curves
Archived author: Deamon • Posted: 2018-06-11T20:16:54.836000+00:00
Original source
ok
Archived author: Skarn • Posted: 2018-06-11T20:17:07.070000+00:00
Original source
I can't guarantee these are using the same algorithm as FCurves
Archived author: Skarn • Posted: 2018-06-11T20:17:19.492000+00:00
Original source
According to devs, FCurves are regular cubic Bezier curves
Archived author: Skarn • Posted: 2018-06-11T20:17:30.189000+00:00
Original source
https://blender.stackexchange.com/questi...or-fcurves
[Embed: Cubic bezier and cubic hermite interpolation for FCurves]
I am writing a custom import/export addon for a model file format that supports animations for cameras with cubic hermite and cubic bezier interpolation. Is it somehow possible to emulate the same
https://blender.stackexchange.com/questi...or-fcurves