//--------------------------------------------------------- //--------------------------------------------------------- /* vlength( V ) Returns the length of V as a float value. Formula is vlength=sqrt(vdot(A,A)). */ //--------------------------------------------------------- #declare Distance_AB = vlength( B-A ); //--------------------------------------------------------- //---------------------------------------------------------