Brad Christiansen wrote:

>
> A_____________C__________________B
>
> where A might be (0,0,0) , B might be (2,6,3) and C is 20% along the
> line between A and B.

If A, B and C are Point3f, use

A.set(0,0,0);
B.set(2,6,3);
C.interpolate(A,B,0.2);

If you have any simple problems with 3d equations I suggest you reading
(in addition to 3d book) docs for javax.vecmath classes. A LOT of this
stuff is already solved there, including some more complicated cases.

Artur

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to