コード例 #1
0
 private static bool Overlaps(Line3D line, Sphere sphere)
 {
     // TODO: Finish this implementation.
     return(false);
 }
コード例 #2
0
 private static bool Overlaps(Box box, Line3D line)
 {
     // TODO: Finish this implementation.
     return(false);
 }
コード例 #3
0
 private static bool Overlaps(Cylinder cylinder, Line3D line)
 {
     // TODO: Finish this implementation.
     return(false);
 }