npruehs / game-math

Free open-source math library for games.
http://npruehs.de/game-math/api/1.0
MIT License
42 stars 8 forks source link

3D Intersection - Plane-Sphere #24

Open npruehs opened 9 years ago

npruehs commented 9 years ago

Implement a plane-sphere intersection test with the following signature:

public static bool Intersects(this PlaneF plane, SphereF sphere)

Call that method from

public static bool Intersects(this SphereF sphere, PlaneF plane)

If you can, provide an overload with an out parameter containing the intersection point(s).

Write at least one unit test illustrating your solution, and/or add any reference links as comments.