catmull-rom-curve Questions
3
Solved
I am experimenting with creating high-performance, good-looking pencil tools using SVG paths.
I am logging the mouse coordinates to draw a path. To get a high-fidelity path (accurate to the user's...
Fanny asked 10/6, 2015 at 6:5
5
Solved
I have the following code to calculate points between four control points to generate a catmull-rom curve:
CGPoint interpolatedPosition(CGPoint p0, CGPoint p1, CGPoint p2, CGPoint p3, float t)
{
...
Downes asked 28/2, 2012 at 21:9
4
Solved
I am trying to emulate acceleration and deceleration in Unity.
I have written to code to generate a track in Unity and place an object at a specific location on the track based on time. The result...
Ammamaria asked 6/6, 2018 at 20:29
1
Solved
I am trying to generate a Catmull-Rom curve from a list of points in Unity. As I do not want to store points in between points of the curve I opted to use a solution that could calculate a position...
Devonian asked 2/6, 2018 at 9:24
1
I'm a little confused as to how they relate. From my class, my professor asked how to fit C1 continuous piecewise Hermite curves to x amount of points with automatically computed tangents. Can some...
Namesake asked 1/10, 2015 at 22:42
3
Solved
I'm trying to calculate a Bezier-like spline curve that passes through a sequence of x-y coordinates. An example would be like the following output from the cscvn function in Matlab (example link):...
Unruly asked 22/1, 2015 at 16:33
2
Solved
I have a random set of points and want to create a smooth svg shape with raphaeljs.
To connect the points I am using a catmull-rom-spline. The problem is that the point where the path is closed is ...
Jurat asked 2/2, 2012 at 22:44
0
I'm trying to find a way to implement catmull-rom splines on the android platform for the purpose of smoothly drawing a line through n points. Ideally I would be able to adapt cubic beziers via the...
Swansea asked 9/4, 2011 at 2:48
1
© 2022 - 2024 — McMap. All rights reserved.