looking for Point interpolater
Hello,
I'm wondering if there's a method or class or algorithm of some kind in the Java APIs that will take in two Point objects and interpolate them.
More specifically, I'd like something that will help me produce a line between the points, but I need this line to be made up of Points itself - that is, an array or vector (or something like that) of Points, one per pixel.
If there's something in the Java APIs that can do just that, that would be perfect, but even something that help (like an interpolater) would do the trick. By an 'interpolater' I mean something that takes in two points and a weight and gives back an interpolated Point according to the weight passed into it. The weight would be an int (or double) indicating how close to the one point (and how far away from the other Point) the resulting point is to be. For example, say I passed in .8 for my weight (or 80 if its an int - to be interpreted as 80%), then it would give me the Point that's 80% the way from the first Point to the second Point.
Is there anything like this in the Java APIs or even anything that will help me accomplish what I want to do? Is there any online algorithm outside the Java Platform site that shows how to do this?