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.

learn more… | top users | synonyms

1
vote
1answer
38 views

Fit a curve in angle line?

I have two lines that start and end at random locations on a screen and create an angle. I then have an object follow these two lines. However at the intersection between the first and second line, ...
-1
votes
2answers
157 views

Bezier curve using opengl C++

I need to plot a point in Bezier Curve under this Curve. So the output will look like this ب I already did the curve but I need to know how to plot another point under this curve shown in the picture ...
0
votes
0answers
51 views

C# SVG=> How to get start point of Bezier curve with absolute coordinates

I'm have been working on a prototype where I need to read SVG files and convert Cubic and Quadratic Bezier curves into a LineTo command in D attribute of Path element by calculating the points on ...
0
votes
1answer
52 views

How to fill the area below a path in Quartz 2D?

I am using Quartz 2D in a UIView object to draw several curves, like this example: This is the code I have right now (I have omitted the calculation of control points and other stuff): for (int i ...
0
votes
1answer
49 views

What would be the best way to select drawn Bezier curve?

I'm working on a graphical program. I'm wondering what would be the best way to get focus on a drawn bezier curve. Untill now, I've got ellipses and rectangles implemented and it's easy to ...
17
votes
4answers
509 views

Find new control point when endpoint change in cubic bezier curve

I'm implementing cubic bezier curve logic in my one of Android Application. I've implemented cubic bezier curve code on canvas in onDraw of custom view. // Path to draw cubic bezier curve Path ...
1
vote
3answers
123 views

How to find intersection points between two cubic bezier curve

I have two cubic bezier curve, curve 1:- 1st anchor-point(a1x,a1y), 1st control-point(c1x,c1y), 2nd control-point(c2x,c2y), 2nd anchor-point(a2x,a2y) curve 2:- 1st anchor-point(a3x,a3y), 1st ...
2
votes
1answer
84 views

Divide curve by chord height

I'd like to subdivide a curve into segments with equal chord heights. I know I can divide into equal chord lengths with the Divide Distance tool, but I can't find a height option. I've written some ...
1
vote
1answer
44 views

CCbezierTo not working in cocos2d ,android

I want my sprite to move from one point to another point in a curve path, so i am using Bezierto in my code, but it doesnt seems to work out as it shows an error on bezier keyword (The local variable ...
0
votes
1answer
104 views

create beziers curve with only start and endpoint

I'm trying to create a html canvas where the user can define a start- and endpoint, between the start and endpoint I want to draw a waved line, I'm doing this by drawing bezierCurveTo. a sample: ...
1
vote
1answer
112 views

Least resource way to animate curve line at D3 library

Does D3 has built-in method to animate drawing of curve line? I need a lot of animation curves in my project. I have tried Jason Davies solution link to example, link to js file, and it's working ...
0
votes
1answer
74 views

Bezier curve with custom width - ribbon

How could I draw 2D bezier curve with custom width - something like a ribbon? For a specific reason just setting the lineWidth is not enough. Is there a library I could use? I've googled a lot but ...
0
votes
1answer
205 views

Android draw circle with Path

I'm trying to animate drawing out a circle. In my custom view, I have private final Paint mPaint = new Paint() { { setDither(true); setStyle(Paint.Style.STROKE); ...
2
votes
1answer
174 views

Calculate the arclength, curve length of a cubic bezier curve. Why is not working?

I'm calculating the arclength (length of a cubic bezier curve) with this algorithm function getArcLength(path) { var STEPS = 1000; // > precision var t = 1 / STEPS; ...
0
votes
1answer
260 views

AS3:Move Objects in a curve path using as3 programming?

I need to move many objects in a curve path across screen randomly. The objects start path and towards path also should take randomly. I had searched on google and finally i found one usefull tutorial ...
8
votes
1answer
280 views

Adjusting the line to fit our head in imageview

I am developing one application same as HairTryOn all things are done. but problem is display in following image. i want to set hair style as per customer face using blue line as per display in image. ...
0
votes
2answers
233 views

Find all the points of a cubic bezier curve in javascript

I have a cubic bezier with 2 control points. Starting point and control points are known. Need to get all the points of the curve, given the control, starting and ending points. What I wanna to ...
2
votes
1answer
169 views

Finding intersection points of line paths

I have two Bezier curves which share an end point. Each of these curves has an "extension" on both the left and right sides, similar to the edges of a road. The extensions are made of line segments ...
0
votes
1answer
129 views

Can I use cubic-bezier() timing to make a 3D transform bounce

I'm trying to create a submenu animation to have it drop in from behind it's parent menu like it's on a hinge. I want it to go a little past its final resting position, then come back. From my ...
1
vote
1answer
49 views

Is there a tool to construct a higher order bezier curve?

Is there a tool to construct a higher order bezier curve? I want to obtain a bouncing effect of a ball and all i can find right a now is tool for cubic-bezier (cubic-bezier.com).
0
votes
1answer
139 views

How to visualize CSS3 cubic Bézier curves?

In the specification for CSS3 transitions is written that the standard Bézier curves for the acceleration are defined as follows: The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, ...
2
votes
2answers
103 views

using bezier curves

I'm creating one custom method for my project which will create polygons. I have this: var c2 = document.getElementById('c').getContext('2d'); c2.fillStyle = '#f00'; c2.beginPath(); c2.moveTo(10, ...
1
vote
1answer
138 views

How to convert SVG 'c' curve to a list of cubic bezier curve?

I have a path as follow: d="m 0,0 38.913,455.481 c 7.122,83.37 6.816,164.779 13.005,236.077 18.924,218.078 232.099,308.663 268.399,493.918 16.874,86.119 -37.253,229.874 -42.144,323.022 -7.527,143.381 ...
0
votes
1answer
229 views

Cocos2d 2.x: understanding ccBezierConfig beheaviour

I am on this since a while and time ago I asked a question and a user kindly replied to me explaning that there is this plugin tool that I can use to create quick bezier curves prototypes. I tried ...
1
vote
1answer
269 views

IOS : Animate transformation from a line to a bezier curve

I would like to animate a straight line curving into a bezier curve (from "_" to "n"), is there a library somewhere that can help me to do it ? I know how to draw a Bezier curve with UIBezierPath, I ...
3
votes
2answers
358 views

How do Bezier Patches work in the Utah Teapot?

I embarrassed myself yesterday on code golf by posting a challenge to draw the Utah Teapot using this dataset (just the teapot). But when looked deeper at the data in order to whip up a little ...
0
votes
1answer
241 views

Bezier curve approximation for large amount of points

I have about hundred points, that I want to approximate with Bezier curve, but if there are more than 25 points (or something like that), factorial counting in number of combination causes number ...
1
vote
1answer
221 views

How to draw curve by InDesign/Illustrator path points?

The following numbers are the path points of a very simple curve from Adobe InDesign: pathPoint0 = app.selection[0].paths[0].pathPoints[0] // PointType: SMOOTH pathPoint1 = ...
1
vote
1answer
188 views

Drawing bezier curve on html canvas

I need to draw a bezier curve defined by N control points which are stored in an array. I have a canvas which is 500px x 500px. Here's the JSFiddle link : jsfiddle.net/HswXy Entire JS code: ...
0
votes
1answer
126 views

Add points to svg path using javascript

I have an SVG path in the form: M352.793,422 C323.175,422 299.164,397.99 299.164,368.371 C299.164,338.753 323.175,314.742 352.793,314.742 C382.411,314.742 406.422,338.753 406.422,368.371 ...
1
vote
2answers
262 views

the relation of the bezier Curve and ellipse?

I want to draw a oval in html5 canvas,and i found a good method for it in stackoverflow.but I have another quesition. function drawEllipse(ctx, x, y, w, h) { var kappa = 0.5522848; ox = (w / ...
4
votes
1answer
93 views

Preview OSX bug (?) converting bezier curve in .eps file to .pdf

I have a small .eps file which uses bezier curves with a thick linewidth to achieve a certain effect. This file displays as I expect it to in gv, but when I convert it to a .pdf (eg with ps2pdf or by ...
4
votes
2answers
2k views

How to draw bezier curve by several points?

I have several points, and I try to draw Bezier curve using code below PathFigure pf = new PathFigure(points.From, ps, false); //ps - list of Bezier segments PathFigureCollection pfc = new ...
0
votes
2answers
111 views

html5 canvas bezier curve - how to construct a reflection?

If I build a bezier curve using control.bezierCurveTo, I would like to programmatically draw the mirror reflection of this curve. I have the start/end and control points for first curve. Any ideas ...
0
votes
1answer
183 views

How to rotate the physics or dynamic body along an arc path in cocos2d(box2D)

As I am newbie to cocoa2d I am struggling alot to rotate the physics or dynamic body along an arc path. The way I tried is as follows: #define COS_ANIMATOR(position, timeCount, speed, ...
2
votes
2answers
439 views

How to animate an image along a path with Bezier curves

My goal: Move/animate an image along a path like the drawing below (Could be connecting bezier curves). Must work in IE7+, don't what to build multiple solutions. I can pause/resume the moving ...
1
vote
0answers
228 views

Determining coordinates of quadratic Bezier curve control point given start and end coordinates

I'm working with JavaScript/HTML5 Canvas to recreate an old DOS game, and I'm having trouble with trajectories. I know I'll be using quadraticCurveTo() to draw a quadratic Bezier curve to the canvas, ...
5
votes
2answers
1k views

OpenGL NURBS surface

I'm learning OpenGL and I want to get a surface with a slight hump in the middle. I'm currently using this code and im not sure how to adjust the ctrl points to make it the way i want. Its currently ...
2
votes
0answers
189 views

bezier curve to draw area under the code with wpf dynamic data display

I have a program that creates a chart with dynamicdatadisplay. I need to fill the specified area under the curve (not the whole curve, just a part, for example if i have a sinus from 0 to 1 in x axis, ...
1
vote
1answer
270 views

How to coloring inside a shape drawn with GL_LINE_STRIP opengl

I drawn 2 shapes with Bezier curve algorithm with using GL_LINE_STRIP. My shape likes moon and i want to coloring the space of between two curves. I used GL_POLYGON but it didn't produce the result ...
1
vote
1answer
220 views

Using a Cubic Bezier Curve as a straight Line: where do the control points have to be located to get equidistant spacing for t

When the two control points of a cubic bezier curve are both located on the line between the two end points of the curve the resulting curve will be line. The issue in my case is that the actual ...
0
votes
0answers
46 views

SetWorldTransformation() GDI

I need to rotate an object drawn with Bezier curve in GDI using WorldTransformation, that's an rbject: CPoint Pt2[10]= { CPoint(400, 260), CPoint(480, 260), CPoint(500, 260), ...
1
vote
0answers
155 views

Bezier Curve Movement

I am new in cocos2d,and get stuck in one issues, I want to move a cubic bezier curve from source point to destination point like line draw using touches but in my case not by touches, or u can say ...
0
votes
2answers
235 views

How does inkscape calculate the coordinates for control points for “smooth edges”?

I am wondering what algorithm (or formula) Inkscape uses to calculate the control points if the nodes on a path are made "smooth". That is, if I have a path with five nodes whose d attribute is M ...
0
votes
1answer
94 views

Math Error in Bezier curve

I'm trying to get plots to generate a cubic Bezier Curve, and I've managed to be able to generate linear and quad easily, but I keep getting an error with my cubic formula, Linear formula:x = ...
3
votes
2answers
385 views

NV_path_rendering alternative

I just watched a very impressive presentation from Siggraph 2012: http://nvidia.fullviewmedia.com/siggraph2012/ondemand/SS106.html My question is, this being a proprietary Nvidia extension, what are ...
0
votes
1answer
298 views

Animation easing / iOS animation vs. CSS3 cubic bezier

Trying to ease my animation in some iOS app I'm working on. Experienced a lot with CSS3 animation and transitions, I'd like to define my animations in iOS as accurately as what would be feasable in ...
1
vote
1answer
473 views

Moving object along a bezier curve with variable speed in Corona SDK

I am developing a game like paper toss using Corona SDK but in my game there is power factor which determines the velocity of object. Now I want to move my object along the bezier curve created by ...
0
votes
2answers
503 views

Drawing a bezier curve between a set of given points

What is the best way to draw a bezier curve, in iOS application, that passes through a set of given points
1
vote
2answers
264 views

How to draw Quadratic Bezier Curves in Stage 3d? Would I need to break them to segments?

I am currently using the native .curveTo function and wondering if I could write some code that will render Quadratic Bezier Curves in Stage3D? I also may need to perform fills between the curves I ...

1 2 3 4 5