15
votes
7answers
1k 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 …
8
votes
8answers
531 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 li …
4
votes
4answers
364 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 …
4
votes
3answers
203 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:
…
4
votes
2answers
228 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 …
3
votes
3answers
111 views
Making a smooth path from an irregular number of x,y points to simulate handwriting
Hi all
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 …
3
votes
1answer
62 views
How can I create a simple 2D NURBS using XAML?
I need to create a spline with two endpoints and 'n' control points.
As far as I am aware, a Bezier curve allows for only one control point, and a Bezier spline allows for two cont …
3
votes
2answers
225 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 us …
3
votes
3answers
171 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 …
3
votes
2answers
288 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 …
2
votes
2answers
331 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 pos …
2
votes
2answers
157 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 y …
2
votes
3answers
322 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
2answers
163 views
Calculate the horizon of a curved face?
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:
…
2
votes
3answers
666 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 bezie …
