0
votes
0answers
5 views
How to determine endpoints of Arcs in GraphicsPath PathPoints and PathTypes arrays?
I have the following PathPoints and PathTypes arrays (format: X, Y, Type):
-177.477900, 11021.670000, 1
-614.447200, 11091.820000, 3
-1039.798000, 10842.280000, 3
-1191.761000, 10426.620000, 3
…
0
votes
1answer
36 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.
…
3
votes
4answers
119 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
60 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
230 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?
1
vote
0answers
402 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 …
2
votes
2answers
334 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 …
1
vote
1answer
108 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. …
0
votes
3answers
508 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
125 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 …
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 …
4
votes
4answers
370 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 …
2
votes
2answers
159 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 …
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 …
