Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
8answers
3k views

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 study elevation data or temperature patterns on a 2D map. At its core, it's ...
14
votes
2answers
1k views

Why is UIBezierPath faster than Core Graphics path?

I was playing around with drawing paths, and I noticed that in at least some cases, UIBezierPath outperforms what I thought would be a Core Graphics equivalent. The -drawRect: method below creates two ...
11
votes
4answers
949 views

Checking if two cubic Bézier curves intersect

For a personal project, I'd need to find out if two cubic Bézier curves intersect. I don't need to know where: I just need to know if they do. However, I'd need to do it fast. I've been scavenging ...
9
votes
3answers
569 views

Is it possible to thicken a quadratic Bézier curve using the GPU only?

I draw lots of quadratic Bézier curves in my OpenGL program. Right now, the curves are one-pixel thin and software-generated, because I'm at a rather early stage, and it is enough to see what works. ...
9
votes
5answers
940 views

Detecting self crossing in closed Bezier curves

I've created a "blob" shape by patching cubic Bezier curves together (screenshot below). I'd like to be able to detect the situation where a curve has crossed over either itself or another curve and ...
8
votes
2answers
2k views

WPF Animation - Animating Bezier curve points

I'm working on a project that involves drawing curved paths between two objects. Currently, I've been writing some test code to play around with bezier curves and animation. The first test is simply ...
8
votes
9answers
1k views

Point Sequence Interpolation

Given an arbitrary sequence of points in space, how would you produce a smooth continuous interpolation between them? 2D and 3D solutions are welcome. Solutions that produce a list of points at ...
7
votes
3answers
162 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
2answers
343 views

How can I get a cubic bezier curve closest to given points?

Given n points: p0, p1, p2, ..., pn; How can I get the point c1, c2 so that the cubic bezier curve defined by p0, c1, c2, pn closest to the given points? I tried least square method. I wrote this ...
7
votes
2answers
750 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
6answers
15k views

How to convert a 3D point into 2D perspective projection?

I am currently working with using Bezier curves and surfaces to draw the famous Utah teapot. Using Bezier patches of 16 control points, I have been able to draw the teapot and display it using a ...
7
votes
4answers
2k views

Outline of cubic bezier curve stroke

By stroke of the cubic bezier curve I mean rendering a curve 'A' with a specific line width 'w'. How can I derive other cubic bezier curves that describe the outline of the stroke of bezier 'A' ?
7
votes
5answers
3k views

Bezier clipping

I'm trying to find/make an algorithm to compute the intersection (a new filled object) of two arbitrary filled 2D objects. The objects are defined using either lines or cubic beziers and may have ...
6
votes
3answers
545 views

What algorithm determines the nearness of a point to a Bezier curve?

I wish to determine when a point (mouse position) in on, or near a curve defined by a series of B-Spline control points. The information I will have for the B-Spline is the list of n control points ...
6
votes
1answer
2k views

Draw an Inset NSShadow and Inset Stroke

I have an NSBezierPath and I want to draw in inset shadow (similar to Photoshop) inside the path. Is there anyway to do this? Also, I know you can -stroke paths, but can you stroke inside a path ...
6
votes
2answers
886 views

Multiple circles -> One Polygon?

Using Google Maps API v3, I was able to create multiple google.maps.Circle objects on my map. However, I now need to "connect" them somehow. I have the following map with multiple circles: I now ...
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 ...
5
votes
1answer
176 views

Joining bezier curves

I have a problem. Suppose we have a single cubic bezier curve defined by four control points. Now suppose, the curve is cut from a point and each segment is again represented using cubic bezier ...
5
votes
2answers
246 views

how to compute the control points for a smooth path given a set of points?

I am using UIBezierPath, but this question concerns control points for the paths, not the drawing. Given a set of points, I can render a path. However, I have not been able to figure out how to ...
5
votes
1answer
394 views

Dashed Curves on Html5 Canvas Bezier

For one of my application I would need to draw a dashed curves on the bezier path in Html5 canvas... The dash' length and gaps in between should be variable... It is achivable in JavaFx, see this ...
5
votes
1answer
254 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
4answers
1k views

Smoothing a hand-drawn curve

I've got a program that allows users to draw curves. But these curves don't look nice - they look wobbly and hand-drawn. So I want an algorithm that will automatically smooth them. I know there are ...
5
votes
2answers
685 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
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?
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
952 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
1answer
868 views

how to draw smooth curve through N points using javascript HTML5 canvas?

For a drawing application I'm saving the mouse movement coordinates to an array then drawing them with lineTo. The resulting line is not smooth. How can I produce a single curve between all the ...
4
votes
3answers
2k views

drawing centered arcs in raphael js

I need to draw concentric arcs of various sizes using raphael.js. I tried to understand the code behind http://raphaeljs.com/polar-clock.html, which is very similar to what I want, but, whithout ...
4
votes
1answer
588 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
421 views

Best way to draw a cube with smooth edges? Bezier Curve, load a .3ds or other?

i need to make a cube with smooth corners and smooth edges in C++ with openGL. for all i know i have three options: Bezier curves(maybe, is it possible?), a cube with cylinders for edges and spheres ...
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
4answers
1k views

Making a smooth path from an irregular number of x,y points to simulate handwriting

I am trying to make a 'brush' tool in AS3 (pure, not Flex) which simulates handwriting, making strokes to be smooth instead of cornered. Then, the trace must be reduced to cubic bezier curves which ...
4
votes
3answers
453 views

How many points for a spline

H community, I wanted to ask if there is an algorithm for choosing the optimal amount of support points for creating a bezier spline in order to make it look smooth and reduce the error. If there is ...
4
votes
3answers
428 views

Calculate the horizon of a curved face? - Not extrema

I need to find the 2 points of the visual horizon, of a curved face. I have: XYZ of the 4 corner points XYZ of the 2 curved edge bezier points And I need to calculate either: XY of the 2 ...
4
votes
3answers
3k views

How can I draw a bezier curve using Python's PIL?

I'm using Python's Imaging Library and I would like to draw some bezier curves. I guess I could calculate pixel by pixel but I'm hoping there is something simpler.
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
2answers
398 views

Workflow for using bezier curves with Core Animation

I recently worked on a project that made extensive use of Core Animation. The results were quite good. Ideally, I would have used layers and bezier curves for the motion. Does anyone have a good ...
3
votes
1answer
503 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
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
659 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 ...
3
votes
2answers
1k views

Calculate a bezier spline to get from point to point

I have 2 points in X,Y + Rotation and I need to calculate a bezier spline (a collection of quadratic beziers) that connects these 2 points smoothly. (see pic) The point represents a unit in a game ...
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?
3
votes
2answers
1k views

Approximating nonparametric cubic Bezier

What is the best way to approximate a cubic Bezier curve? Ideally I would want a function y(x) which would give the exact y value for any given x, but this would involve solving a cubic equation for ...
2
votes
2answers
55 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
2answers
44 views

Querying for a specific point along a UIBezierCurve for animation?

I have recently finished writing a script for Maya that exports a file containing data for a Bezier path (a series of xy points and xy control points). This bezier path is meant to represent the 3D ...
2
votes
1answer
55 views

Bezier Curves ( Path ) - More less constant speed when traversing through T

Strict facts: Unfortunately i am not a math-guru I generate a bezier path by drawing it with my finger on the screen I have an object that follows this path I traverse this path when engine calls ...
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 ...

1 2 3 4