3
votes
3answers
92 views
Making a smooth path from an irregular number of x,y points to simulate handwriting
Hi all
I am trying to make a 'brush' tool in AS3 (pure, not Flex) which simulates handwriting, making strokes to be smooth instead of cornered. Then, the trace must be reduced to …
0
votes
1answer
33 views
Bezier timed animation path
Hi,
I'm trying to define a path of points. Each point has an x, y, and time. I then want to query this path and get the current position at that point in time. Let me share som …
0
votes
1answer
50 views
Cartesian (non parametric) form of Bezier curves
Hi Guys,
I needed to find and use the coordinates of the intersection of a cubic Bezier and a straight line. The trouble is that I cannot find a non-parametric representation of a …
3
votes
1answer
57 views
How can I create a simple 2D NURBS using XAML?
I need to create a spline with two endpoints and 'n' control points.
As far as I am aware, a Bezier curve allows for only one control point, and a Bezier spline allows for two cont …
3
votes
2answers
215 views
Algorithm to “trace” sequential points into bezier curves
I have a sequential collection of points in X,Y and I'd like to "trace" these into a set of bezier curves. Could any open source bitmap to vector tracing algorithm or library be us …
2
votes
2answers
311 views
How can I find the angle between two points on a bezier curve?
In my current OpenGL project I am trying to make the links of a chain hug the contours of a Bezier curve. How can I find the angle between two points on the curve so that I can pos …
0
votes
3answers
465 views
Converting Pixels to Bezier Curves in Actionscript 3
Ok, so I'll try to be as descriptive as possible.
I'm working on a project for a client that requires a jibjab-style masking feature of an uploaded image.
I would like to be able …
1
vote
2answers
120 views
Finding min/max of quadratic bezier with CoreGraphics
I am using CoreGraphics to draw a quadratic bezier but want to computer the min/max value of the curve. I am not from a mathematical background so this has become a bit troublesom …
1
vote
0answers
385 views
WPF Animation - Animating Bezier curve points
I'm working on a project that involves drawing curved paths between two objects. Currently, I've been writing some test code to play around with bezier curves and animation. The …
4
votes
4answers
356 views
Position of a point relative to a Bezier curve
I have a Bezier curve specified by 4 points. I need to know if a point is on the left side or right side of the Bezier curve. Can you suggest me an algorithm?
Edit: I'm sure that …
1
vote
1answer
105 views
position spheres along a bezier curve
I am trying a couple of tutorials from http://nehe.gamedev.net, in order to learn openGL programming, I would like to position spheres along a Bezier curve such that they appear as …
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 …
0
votes
4answers
2k views
How to convert a 3D point into 2D perspective projection?
I am currently working with using Bezier curves and surfaces to draw the famous Utah teapot. Using Bezier patches of 16 control points, I have been able to draw the teapot and disp …
15
votes
7answers
1k views
Drawing a Topographical Map
I've been working on a visualization project for 2-dimensional continuous data. It's the kind of thing you could use to study elevation data or temperature patterns on a 2D map. At …
2
votes
2answers
154 views
Approximating Bezier Curves of Degree N
I know there are methods to approximate cubic Bezier curves (this page was also a good reference), but is there a quicker method to approximate a bezier curve of degree N? Or can y …
