Beispiel #1
0
 public float Distance(Segment3D other)
 {
     return(GTools.distanceS2S(A, B, other.A, other.B, out float3 _, out float3 _));
 }
Beispiel #2
0
 public float Distance(Segment3D other, out float3 closest1, out float3 closest2)
 {
     return(GTools.distanceS2S(A, B, other.A, other.B, out closest1, out closest2));
 }