3
votes
4answers
122 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 cubic bezier curves …
0
votes
1answer
38 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 some pseudo code.
…
0
votes
1answer
62 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 Bezier curve which …
3
votes
1answer
65 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 control points. However, …
3
votes
2answers
231 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 used for this?
2
votes
2answers
339 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 position the links of …
0
votes
3answers
515 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 to generate a …
1
vote
2answers
126 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 troublesome. Does anyone have …
1
vote
0answers
408 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 first test is simply …
4
votes
4answers
372 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 the way I generate …
1
vote
1answer
109 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 a string of pearls. …
3
votes
3answers
172 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 error. If there is …
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 display it using a …
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 its core, it's …
2
votes
2answers
160 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 you only use the …
