Tagged Questions
A Bézier curve is a parametric curve frequently used in computer graphics and related fields. Generalizations of Bézier curves to higher dimensions are called Bézier surfaces, of which the Bézier triangle is a special case.
11
votes
7answers
552 views
Drawing Smooth Curves - Methods Needed
Like everyone before has asked, how do you smooth a set of points in an iOS drawing app WHILE MOVING? I have tried UIBezierpaths but all I get are jagged ends where they intersect, when I just shift ...
10
votes
4answers
571 views
Algorithm to add Color in Bezier curves
I'm playing with GD library for a while and more particuraly with Bezier curves atm.
I used some existant class which I modified a little (seriously eval()...). I found out it was a generic algorithm ...
7
votes
7answers
172 views
How to calculate the nearest point of a line and curve? .. or curve and curve?
Given the points of a line and a quadratic bezier curve, how do you calculate their nearest point?
7
votes
3answers
160 views
Bezier Curve always the same length
I'm working on a game in HTML5 canvas.
I want is draw an S-shaped cubic bezier curve between two points, but I'm looking for a way to calculate the coordinates of the control points so that the curve ...
7
votes
1answer
606 views
Cocos2D Bezier curve around object as if by gravity
I'm trying to manipulate an object. When it gets near another object, let's say a globe, I want the globe to have a gravitational pull on the original object. I know I'm supposed to use CCBezierTo, so ...
7
votes
2answers
360 views
Iphone application performace is slowing down with out any memory leak?
I have a IPhone drawing application which is slowing down when I use the spray can tool. But when I check for leaks by running the application with leaks no leaks are shown. All other tools are ...
7
votes
2answers
748 views
An algorithm to find bounding box of closed bezier curves?
I'm looking for an algorithm to find bounding box (max/min points) of a closed quadratic bezier curve in Cartesian axis:
input: C (a closed bezier curve)
output: A B C D points
Note: above image ...
7
votes
3answers
3k views
How to draw a Bezier curve programmatically in WPF?
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 code sample to do this task is ...
6
votes
3answers
725 views
How can I fit a Bézier curve to a set of data?
I have a set of data points (which I can thin out) that I need to fit with a Bézier curve. I need speed over accuracy, but the fit should be decent enough to be recognizable. I'm also looking for an ...
6
votes
1answer
799 views
Bezier Algoritms - an algorithm for inserting points
I'm looking for an algorithm to insert a new control point on a bezier curve, without deforming:
did anybody knows a library or reference for bezier algorithms (insertion, optimize, de Casteljau ...
6
votes
3answers
3k views
Drawing hermite curves in OpenGL
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 any built in functions? I ...
5
votes
1answer
210 views
How to convert from an 'hermite' curve into bezier curve?
As the topic states: How to convert from an Hermite curve into Bezier curve? Specifically I'm looking for a way to convert the Curve class, that uses Hermite interpolation, of the Microsoft XNA ...
5
votes
1answer
251 views
Help to analyze how a software/program constructs Bezier curve
I am trying to understand how ChemDraw, a Industry-Leading Chemistry Tool developed by cambridgesoft, constructs Bezier curves, so that I can manually translate the Bezier curve points from other ...
5
votes
3answers
774 views
How to draw a continuous curved line from 3 given points at a time
I am trying to draw a continuous curved line in flash. There are many methods but none of the ones I have found so far quite fit my requirements. First of all, I want to use the flash graphic api's ...
5
votes
2answers
681 views
How to offset a cubic bezier curve?
I'm trying to create a "parrallel" bezier curve. In my attempts I've gotten close but no cigar. I'm trying to keep a solid 1px offset between the 2 curves (red,blue).
My main goal is use a edge ...
5
votes
2answers
1k 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?
5
votes
5answers
1k 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 ...
5
votes
2answers
949 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 Bézier curve is.
...
4
votes
4answers
317 views
jQuery animating along a sine wave
I've spent a couple days at this and I give up.
I'm trying to get an object to animate along a sine wave infinitely. It should not end after the first period.
Main Problem: The cycle ends at approx ...
4
votes
1answer
232 views
Drawing a curve through a set of N points, where N>2
I need to draw a curve smoothly through N points with N>2 with Javascript. I am currently using the bezierCurveTo() within an html5 canvas object. I've invested a good deal of time into trying to find ...
4
votes
1answer
584 views
How to calculate the normal of points on a 3D cubic Bézier curve given normals for its start and end points?
I'm trying to render a "3D ribbon" using a single 3D cubic Bézier curve to describe it (the width of the ribbon is some constant). The first and last control points have a normal vector associated ...
4
votes
2answers
2k 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?
3
votes
1answer
67 views
Drawing Arrow Head Curves in HTML5 Canvas
I am attempting to draw the 3 arrows below. I can draw the top one correctly but I cannot draw the other 2 arrow heads correctly. I am using HTML5 Canvas to draw these arrows.
The problem occurs ...
3
votes
1answer
500 views
Calculating control points for a shorthand/smooth SVG path Bezier curve
Link: Official SVG Reference
Hello men and women, I am having some trouble with shorthand (defined by S or s in pathdata) bezier curves defined as SVG paths. Specifically, how to calculate the first ...
3
votes
3answers
1k views
Drawing half of a Bezier path in Raphael
Let's say I have a cubic Bezier path as follows (formatted for use with the Raphael path function):
M55 246S55 247 55 248
Just an example. This was taken from my drawing application, where I use the ...
3
votes
2answers
1k views
Find a point, a given distance, along a simple cubic bezier curve. (On an iPhone!)
Imagine you have a completely normal four-point bezier curve (two points and two control points) created using curveToPoint:controlPoint1:controlPoint2: in your cocoa application:
How do you find ...
3
votes
2answers
666 views
Finding points on a bezier curve based on distance from another point
So I have a 3D cubic bezier curve and a start point found anywhere along the curve and need to find a second point further down the curve that is a specific worldspace distance (not arclength ...
3
votes
2answers
657 views
Reverse engineering a bezier curve
Given a few sample points on a bézier curve, is it possible to work out the set of possible curves these points may lie on?
In my specific application there is a limited set of endpoints the curve ...
2
votes
2answers
54 views
Gradient Of Bezier Curve At Given Point
I cant seem to figure out how to calculate the incline of a curve for the following situation...
Essentially what I am trying to do is increase the speed of an object based on the incline of the ...
2
votes
1answer
40 views
How do you calculate if 2 lines are facing toward or away?
Given the 4 points describing 2 lines, how do you quickly calculate if line A is facing towards or away from line B?
Similarly, how to check if line A is towards or away from quadratic bezier ...
2
votes
1answer
74 views
How to draw a curved line using ccBezier?
I drew a line with -(void)draw method:
-(void)draw // code for line draw
{
glEnable(GL_LINE_SMOOTH);
CGPoint start;
start.x = 50;
start.y = 50;
CGPoint end;
end.x = 50;
end.y = 200;
if ...
2
votes
3answers
143 views
Move object by Bezier Curve, combine with Rotation
My engine (AndEngine) provides the modifier to move an object by Bezier Curve path, just by providing 3 or 4 points co-ordinate.
In my game, I move some birds with determined 3 points. However, it ...
2
votes
1answer
263 views
How to draw 2D irregular curved shapes in OpenGL
I've tried for the past 3 hours to figure out how to use Bezier curve formula, glMap1f and glEvalCoord1f to create a curved shape.
(i basically want to create the right of kirby).
However, I've ...
2
votes
3answers
232 views
Nearest point on a quadratic bezier curve
I am having some issues calculating the nearest point on a quadratic curve to the mouse position. I have tried a handful of APIs, but have not had any luck finding a function for this that works. I ...
2
votes
5answers
182 views
Drawing curve from several points
I would like to know how to join point together to form a curve. I have 20 points in a diagram and would like to know how to join to them. I tried with GeneralPath object, but would like to know if ...
2
votes
2answers
263 views
Bezier curves algorithm - maybe Canonical Splines?
I've got a path that is made up of multiple points - i.e. 0,0 0,50 50,50 70,20
If I just draw this line on the screen it looks quite harsh as it puts a sharp angle at the joining of each point.
...
2
votes
1answer
470 views
How to create a cubic bezier curve when given N points in 3D?
So I need to find out where the control points would be for a cubic bezier curve when only knowing points on the curve, the points can lie in 3D. It would be ideal if I could do this for any number ...
2
votes
1answer
376 views
Specifying the Tension in a Cubic Bezier Curve
I am attempting to create a PathGeometry that approximates a series of orthogonal line segments using cubic bezier curves in Wpf.
I came across an article on msdn that describes Cardinal Splines in ...
2
votes
3answers
713 views
Draw cubic bezier curves in Actionscript?
What's the best way to draw cubic bezier curves programmatically in AS3? The Graphics class only seems to support quadratic curves. :( I want to be able to do something like:
var startPoint:Point = ...
2
votes
2answers
435 views
How to convert closed bezier curves to Bitmaps?
I need an algorithm to convert a closed bezier curve (perhaps self-crossing) to a binary bitmap: 0 for inside pixels and 1 for outside. I'm writing a code that needs to implement some operations on ...
2
votes
2answers
1k 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 ...
2
votes
2answers
2k views
Quadratic Bezier Interpolation
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 ball at constant speed ...
2
votes
2answers
523 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 ...
1
vote
0answers
44 views
How to remove a node of a Bezier curve to the shape of the curve has not changed
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 ...
1
vote
1answer
88 views
What is the benefit of using CGPath?
I am new to CGPath concept and have a decent idea about Bezier curves.
I am creating a small free hand drawing program using a View.
In drawRect I keep drawing recorded set of lines from an Array.
and ...
1
vote
1answer
118 views
Ways to define a curve
I'm trying to give shapes in my physics engine roundness/ curvature.
I am aware of various methods for mathematically defining curves; such as bezier-cruves, ellipses, etc. However I am not sure ...
1
vote
1answer
129 views
Cubic bezier curves - get Y for given X
I have a cubic bezier curve where the first and last points are given (namely P0(0,0) and P3(1,1)).
The other two points are defined like this: cubic-bezier(0.25, 0.1, 0.25, 1.0) (X1, Y1, X2, Y2, also ...
1
vote
1answer
96 views
How to implement a Photoshop Curves editor in UIKit
I'm familiar with UIBezierPath and the corresponding CG routines, but none of them appear to draw the same type of path as what I see in Photoshop, etc.
How would one go about this? I'm just talking ...
1
vote
2answers
73 views
curves representable in OpenGL
I am a beginner in CAD development & want to know some things about OpenGL.
My main objective is to represent conics, cycloid, epicycloid, hypocycloid, involutes, etc
Can i directly represent them ...
1
vote
1answer
54 views
Why does the function start the sin wave so high along the y-axis?
Take a look at this sine-wave animation. Notice it's start position and end position.
These 2 need to be equal, yet they are not.
I think a solution would be to retain the last used p value from the ...