Top "Bezier" questions

A Bézier curve is a parametric curve frequently used in computer graphics and related fields.

How to create a curved SVG path between two points?

I need to draw a symmetrically curved line between the centers of two circles. <svg> <circle class="…

javascript svg bezier curve
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: …

iphone ipad bezier
How to find control points for a BezierSegment given Start, End, and 2 Intersection Pts in C# - AKA Cubic Bezier 4-point Interpolation

I've been struggling looking for an understandable way to do this. I have four points, a StartPt, EndPoint, and Intersection …

c# wpf bezier
Drawing a Topographical Map

I've been working on a visualization project for 2-dimensional continuous data. It's the kind of thing you could use to …

algorithm language-agnostic visualization bezier topographical-lines
Smooth spline representation of an arbitrary contour, f(length) --> x,y

Suppose I have a set of x,y coordinates that mark points along contour. Is there a way that I …

numpy scipy curve-fitting bezier spline
Move an object on on a Bézier curve path

I want to move my image on a Bézier curve path from top to bottom but I can't get …

android graphics android-animation surfaceview bezier
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 …

algorithm bezier
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 …

c opengl bezier nurbs
Splitting a bezier curve

I'm working on a game for iPhone which creates a path after your character as you move (movement is similar …

math ios4 split bezier
How to smooth the blocks of a 3D voxel world?

In my (Minecraft-like) 3D voxel world, I want to smooth the shapes for more natural visuals. Let's look at this …

algorithm graphics 3d bezier voxel