Tagged Questions

5
votes
5answers
1k views

Closest point on a cubic Bezier curve?

How can I find the point B(t) along a cubic Bezier curve that is closest to an arbitrary point P in the plane?
4
votes
5answers
772 views

Drag a bezier curve to edit it

You will understand what I mean if you use graphic editing programs like Gimp or Photoshop. To edit a curve on those programs (which probably is Bezier Curve), we can click on the curve, drag the ...
4
votes
2answers
948 views

Equidistant points across Bezier curves

Currently, I'm attempting to make multiple beziers have equidistant points. I'm currently using cubic interpolation to find the points, but because the way beziers work some areas are more dense than ...
3
votes
2answers
173 views

Antialiased bezier curve with GDI / Winforms - c# .net

I'm trying to paint a bezier curve in a sample Winforms application. I'm calculating the bezier points, and then painting using DrawImage to draw a custom image brush on each point. However I'm not ...
3
votes
1answer
275 views

Draw a quadratic bezier curve through three given points

I have three points in 2D and I want to draw a quadratic bezier curve passing through them. How do I calculate the middle control point (x1 and y1 as in quadTo)? I know linear algebra from college but ...
3
votes
3answers
811 views

Convert a quadratic curve points to polynomial representation?

I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve. Using this data, how can I derive the polynomial representation of the curve?
2
votes
1answer
55 views

How to remove a node of a Bezier curve so that the shape of the curve does not change?

I need a help in writing the algorithm remove nodes Bezier curve. Using cubic Bezier curves, there are two curves (P0, P1, P2, P3 and Q0, Q1, Q2, Q3), which have a common point (P3=Q0). Need to get a ...
2
votes
2answers
636 views

Fast Method to Intersect two Integer Quadratic Beziers?

Given two Quadratic Beziers in 2D with integer coordinates, what is the best way to find their intersection point(s)? Also interesting is an early rejection if they do not intersect. If it makes it ...
1
vote
0answers
83 views

Smooth Bezier Curve

I want to smooth some hand draw lines in iphone. I have used the following code in http://webdocs.cs.ualberta.ca/~graphics/books/GraphicsGems/gems/FitCurves.c However, I found that some bezier ...
1
vote
2answers
195 views

curve movement animation in wp7

I use Blend 4 (storyboard) to create animation movement for a wisp. But now I was required to have the wisp move in curve path. I have found some solution in code (from programming windows phone 7 ...
1
vote
3answers
226 views

How can I draw a diminishing wavy ray or complex figures in HTML5 / Canvas

I am trying to generate some sun 'rays' which I can best describe as looking like the blade of a krisknife, such as the blade portion of this picture. This is just an example. I only need a ...
1
vote
2answers
506 views

iOS - Dragging objects along curved paths

I am tearing my hair out trying to figure out what seems to be a very easy problem. I know a lot of this stuff has been talked about tangentially, so apologies if this treads on well-covered ground, ...
1
vote
1answer
156 views

How do I get sub-segments of vector curves with consistent length?

I am using the Raphael Javascript library to construct cubic bezier curves. I need to get a straight segment at the very end of my curve that is a consistent length regardless the length or structure ...
0
votes
0answers
95 views

Find bezier control-points for curve passing through N points

Considering this nice solution for finding cubic bezier ctrl-points for a curve passing through 4 points: How to find control points for a BezierSegment given Start, End, and 2 Intersection Pts in C# ...
0
votes
1answer
106 views

Draw a bezier curved line based off three points?

How would I go about drawing a UIBezierpath to connect three points. I know that there must be a formula/algorithm, but I've been searching and can not find it. Would somebody be able to help me with ...
0
votes
0answers
63 views

How to calculate the min/max coordination for bezier curve in SVG

as we know there are 6 parameters with control command to draw a bezier curve c c1.x c1.y c2.x c2.y end.x end.y or 4 parameters with short curve command s c.x c.y end.x end.y How to calculate the ...
0
votes
1answer
605 views

Thick Bezier Curves in OpenGL

I am writing a program in java using the jogl opengl bindings. I need to create a bezier curve that varies in thickness along the curve. So far I've only managed a thin bezier curve of single points. ...
0
votes
1answer
817 views

OpenGL: How to draw Bezier curve of degree higher then 8?

I am trying to draw high order Bezier Curve using OpenGL evaluators: glMap1f(GL_MAP1_VERTEX_3, 0.0, 1.0, 3, 30, &points[0][0]); glMapGrid1f(30, 0, 1); glEvalMesh1(GL_LINE, 0, 30); or ...
0
votes
2answers
615 views

An extended Bezier Library or Algorithms of bezier operations

Is there a library of data structures and operations for quadratic bezier curves? I need to implement: bezier to bitmap converting with arbitrary quality optimizing bezier curves common operations ...
0
votes
2answers
258 views

Bézier curve compute point from one axis

I have a Cubic Bézier curve. But I have a problem when I need only one point. I have only value from the X-axis and want to find a value that coresponds to Y-axis to that point. Or find the t step, ...