another newbie question...
here's the code:
VECTOR temp;
VECTOR temp2;
VECTOR temp3;
var length;
var length2;
action bla-bla()
{
vec_set(temp, vector(0,0,0));
vec_set(temp, vector(10,0,0));
vec_set(temp, vector(0,-10,0));
lendth = vec_dist(temp, temp2);
length2 = vec_dist(temp, temp3);
}
//angle between lenth and lenth2??
How can I calculate the angle between these two distances (length and length2)and give the name to this angle, so that I can use this andgle for changing other parameters??? And is it possible at all?
Thank you for your patience
