0
votes
2answers
260 views
How do I create a Bezier curve to represent a smoothed polyline?
I have a polyline that approximates a curve, and I want to draw it as a smooth curve in PostScript, which supports Bezier curve drawing. To do that, I need to generate two control …
0
votes
3answers
122 views
Getting the point of a catmull rom spline after a certain distance?
If I have a Catmull-Rom spline of a certain length how can I calculate its position at a certain distance? Typically to calculate the point in a catmull rom spline you input a valu …
11
votes
6answers
402 views
Curve fitting unsorted points on a plane
Question: How do you fit a curve to points on a plane if they aren't single valued?
For the example shown, how would one fit a curve (like the black one) to the noisy blue data? I …
0
votes
1answer
75 views
Drawing a Smooth Line from Tablet Input
As the user drags their stylus across the tablet, you receive a series of coordinates. You want to approximate the pen's path with a smooth line, trailing only a few sample points …
0
votes
2answers
216 views
Catmull-Rom splines in python
Hi all,
Is there a library or function in python to compute Catmull-Rom spline from three points ?
What I need in the end are the x,y coordinates of points along the spline, prov …
1
vote
2answers
214 views
Are there any good libraries for solving cubic splines in C++?
Hello everyone,
I'm looking for a good C++ library to give me functions to solve for large cubic splines (on the order of 1000 points) anyone know one?
Thanks in advance,
-Fak …
1
vote
2answers
309 views
Connecting Catmull-Rom splines together and calculating its length?
I'm trying to create a class which takes in any number of points (position and control) and creates a catmull-rom spline based on the information given.
What I'm doing - and I'm r …
2
votes
2answers
378 views
Catmull-Rom splines - how do they work?
From this site which seems to have the most detailed information about catmull-rom splines: http://www.mvps.org/directx/articles/catmull/ it makes mention of needing four points to …
0
votes
1answer
198 views
Visualize B-Spline in .NET
I might need to visualize a B-Spline ( http://en.wikipedia.org/wiki/B-spline ) in .NET. I do not where to start. Is there any easy way or library to do it? I would prefer to do it …
3
votes
3answers
168 views
How many points for a spline
H community,
I wanted to ask if there is an algorithm for choosing the optimal amount of support points for creating a bezier spline in order to make it look smooth and reduce the …
1
vote
2answers
76 views
spline for non differentiable function?
Hi community,
I have a function that sometimes is non-differentiable at a point. When I now use a spline (Bezierspline in degrafa) for interpolation the interpolation at this poin …
0
votes
1answer
180 views
Degrafa Bezier spline bind data to string
Hi,
I want to insert a bezier spline into my Canvas by this code
<mx:Canvas
id="graphCanvas"
width="100%"
height="100%"
preinitialize="preInit()"
/>
<BezierSpline id …
0
votes
1answer
141 views
Splines in Flex
Hi community,
is there a class for connecting points by a spline in flex resp. actionscript?
With kind regards
Sebastian
0
votes
4answers
573 views
cubic spline extrapolation
I have some nice Cubic spline code, but it is for interpolation only. now I need to extrapolate just a little into the future.
For example the series shown here:
http://en.wikipe …
0
votes
2answers
631 views
How do I implement a Bézier curve in C++?
I'd like to implement a Bézier curve. I've done this in C# before, but I'm totally unfamiliar with the C++ libraries. How should I go about creating a quadratic curve?
void printQ …
