Tagged Questions
3
votes
1answer
272 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
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?
2
votes
2answers
635 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
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
1answer
529 views
Quadratic Bezier Curve: Calculate Point
Hey,
I'd like to calculate a point on a quadratic curve. To use it with the canvas element of html5.
When I use the quadraticCurveTo() Function in JavaScript, I have a source point, a target point ...