Beispiel #1
0
 public static vec3 ClosestPointOnLine(vec3 p, vec3 e0, vec3 e1)
 {
     return(Line3D.ClosestPoint(p, e0, e1));
 }