Tagged Questions
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 = ...