예제 #1
0
 public static float Distance(this IVector3 vector, IVector3 pos)
 {
     return((float)Math.Sqrt(vector.DistanceSquared(pos)));
 }