Tagged Questions

7
votes
7answers
173 views

How to calculate the nearest point of a line and curve? .. or curve and curve?

Given the points of a line and a quadratic bezier curve, how do you calculate their nearest point?
5
votes
3answers
167 views

How to calculate points on a curve that matches CSS3 created border radius? Geometry geniuses?

I have a curved div created with css3 border radius (the image part). I have text lines next to it that I would like to align 20px or so off the curve, like so (cant post images, cant remember old ...
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?
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 ...
2
votes
3answers
129 views

Compare two user defined curves and score their similarity

I have a set of 2 curves (each with a few hundreds to a couple thousands datapoints) that I want to compare and get some similarity "score". Actually, I have >100 of those sets to compare... I am ...
2
votes
2answers
202 views

How to optimally plot parametric continuous curve?

Let's say we have a parametric curve, for example a circle: x = r * cos(t) y = r * sin(t) We want to plot the curve on the screen in a way that: every pixel is painted just once (the optimal ...
2
votes
2answers
636 views

Fast Method to Intersect two Integer Quadratic Beziers?

Given two Quadratic Beziers in 2D with integer coordinates, what is the best way to find their intersection point(s)? Also interesting is an early rejection if they do not intersect. If it makes it ...
1
vote
0answers
24 views

Two Dimensional Curve Approximation

here is what I want to do (preferably with Matlab): Basically I have several traces of cars driving on an intersection. Each one is noisy, so I want to take the mean over all measurements to get a ...
1
vote
1answer
69 views

Mid-point of QuadCurve2D

I'm using Java's QuadCurve2D and I'd like to show an anchor point exactly half way across this curve. I have code like this: Point anchor = anchor(); if (showArcHandle) { Ellipse2D.Float e = ...
0
votes
2answers
258 views

Bézier curve compute point from one axis

I have a Cubic Bézier curve. But I have a problem when I need only one point. I have only value from the X-axis and want to find a value that coresponds to Y-axis to that point. Or find the t step, ...