pub fn three_plane_intersection(a: &Plane, b: &Plane, c: &Plane) -> Option<Vec3>
Compute the intersection point of three planes.
Returns None if any two planes are parallel or all three meet in a line.
None