Whats the difference between doing
Position.Magnitude - Position.Magnitude, (Position - Position).Magnitude
Whats the difference between doing
Position.Magnitude - Position.Magnitude, (Position - Position).Magnitude
Please correct me if I am wrong:
Position.Magnitude - Position.Magnitude
returns the difference between the vector lengths, (Position - Position).Magnitude
returns the distance between two vectors.
Nah you’re right
I just though there was no differences
Pretty sure the only difference is the first equation is how long it is and the second is how far apart they are.