Tagged Questions

8
votes
2answers
132 views

How to reduce the number of points in a curve while preserving its overall shape?

I have a list of points that make a curve, and I would like to reduce the number of points, but still keep the overall shape of the curve. Basically, I want to go from this: To this: So the ...
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?
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 ...
2
votes
2answers
272 views

Plotting a smoothed area on a map from a set of points in R

how do I plot an area around a set of points on a map in R? e.g. map('world') map.axes() p <- matrix(c(50, 50, 80, 100, 70, 40, 25, 60), ncol=2) # make some points points(p, pch=19, col="red") ...
1
vote
1answer
201 views

Is it possible to paint using Canvas in Andgengine (android framework for game)

Basically want to draw curve paths when user touches (somewhat like flight control app). Using the paint API it is possible to draw on a Canvas (finger paint example). But I am unable to draw on a ...
0
votes
1answer
35 views

Drawing curve with fixed length

actually I don't know how this calls, but: I would like to implement such functionality: I'm drawing curve with cursor. And this line has to be e.g. 100 pixels length, no more.... When the length of ...
0
votes
2answers
51 views

Intersection between two curves

I need to obtain the intersection of two curves. The problem I'm facing can be stated in the following way: Given two curves C1 and C2, defined by N1 and N2 points connected by straight lines, obtain ...
0
votes
1answer
288 views

Fill space between two curves in cartesian graph

I am having some difficulties for feeling the space between two curves in a carthesian graph in my WinForms program. Basicly I have two curves that I draw them on a bitmap using this method: ...
0
votes
1answer
815 views

OpenGL: How to draw Bezier curve of degree higher then 8?

I am trying to draw high order Bezier Curve using OpenGL evaluators: glMap1f(GL_MAP1_VERTEX_3, 0.0, 1.0, 3, 30, &points[0][0]); glMapGrid1f(30, 0, 1); glEvalMesh1(GL_LINE, 0, 30); or ...