Torsten Marek
Torsten Marek

Reputation: 86492

Evaluation of curve in Java2D

Are there methods for evaluating cubic or quadratic Java2D curves at a given time t? I know the algorithm is simple, but I would suspect that there is a method for that already in Java.

Upvotes: 1

Views: 211

Answers (1)

Jonathan Feinberg
Jonathan Feinberg

Reputation: 45324

For whatever reason, they made all of that stuff private. But (and you may already know this) the QuadCurve2D (and CubicCurve2D) source is all there for you to read in the SDK, and it has all of the t-wise code within.

Upvotes: 1

Related Questions