Tagged Questions

0
votes
2answers
42 views

Any differences between the way Bézier curves are interpreted by Cocoa and SVG?

I'm definetely new to any kind of graphics (maybe except taking photos :)) so please forgive if my explanation of problem I faced last night is not very precise and understable. I …
0
votes
2answers
40 views

How to create circle with Bézier curves?

we have some x, y start point and some circle radius. We have some engen that can create path from bezier curve points. How to create circle with Bézier curves?
4
votes
3answers
409 views

Drawing hermite curves in OpenGL

Hi, I am a beginner, started learning openGL from the Red book since last week. i have a question regarding Hermite curves, how can I draw Hermite curves using OpenGL, are there a …
0
votes
0answers
149 views

Writing Name Using Bezier Curves In C#

I have to make a program that uses C# Generated Graphics to make a replica of my name that I wrote in cursive. Twist is, I have to use Bezier Curves. I've already called a function …
3
votes
4answers
187 views

How to draw a Bezier curve programmatically in WPF?

Hi there, I need to write a simple WPF program to draw a Bezier curve, but I have to draw it programmatically since I need to allow user to modify the shape interactively. Any co …
3
votes
2answers
218 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
313 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 …
1
vote
2answers
263 views

Quadratic Bezier Interpolation

Hi, I would like to get some code in AS2 to interpolate a quadratic bezier curve. the nodes are meant to be at constant distance away from each other. Basically it is to animate a …
4
votes
2answers
227 views

Calculation of cubic Bézier with known halfway point

I know: The control points a and d (start and end point of a 2D cubic bezier curve) The slopes a->b, c->d, and b->c (b,c the other control points) Where the halfway point of the …
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 …
0
votes
4answers
453 views

How can I get all points in CGPath curve or quad curve

Hi, I have made a quad curve path using the method CGPathAddQuadCurveToPoint. I got the path perfectly. But, I want to know all the coordinate points which are participated in 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 …
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 …
1
vote
4answers
238 views

Is this a reasonable implementation of the quadratic Bézier function in OCaml?

A friend came across a quadratic Bézier curve function in his codebase that used a gigantic rats nest of a switch table to perform the computation. He challenged me to find a sing …