Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
178 views

Compute a point on a spline surface

I am working on a control algorithm to be run on an embedded system. My programming language is C and the system will be pretty tightly constrained in terms of memory and processing power. I have a ...
2
votes
1answer
60 views

smooth svg path connection

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 not ...
1
vote
1answer
628 views

catmull-rom splines for Android

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 ...
0
votes
2answers
159 views

cubic interpolation with not equidistant points

I'm trying to create an interpolation of a list of points. I've some point of coordinates (ti, xi), where ti are timestamp and xi are associated values. I want to create a function that passes ...