You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library looks really promising but I'm having issues getting started. I'm using the Bevy game engine and I'm trying to create bezier curves so I implemented the Coordinate trait for Bevys Vec3 using the newtype pattern. However I'm not able to progress any further from there, even after looking at the source code.
Could you give me some directions or examples given that I have a list of 3D coordinates and with each of these coordinates two 3D Coordinates that represent the handles, how to create a bezier curve from that?
Thank you very much!
The text was updated successfully, but these errors were encountered:
This will work with any type that implements the Coordinate trait, not just the built-in Coord2 type. Note there's a lot of extra functionality for things that also implement Coordinate2D
Hi!
The library looks really promising but I'm having issues getting started. I'm using the Bevy game engine and I'm trying to create bezier curves so I implemented the Coordinate trait for Bevys
Vec3
using the newtype pattern. However I'm not able to progress any further from there, even after looking at the source code.Could you give me some directions or examples given that I have a list of 3D coordinates and with each of these coordinates two 3D Coordinates that represent the handles, how to create a bezier curve from that?
Thank you very much!
The text was updated successfully, but these errors were encountered: