pub fn classify_triangle(
v0: [f64; 3],
v1: [f64; 3],
v2: [f64; 3],
normal: [f64; 3],
d: f64,
tolerance: f64,
) -> (usize, usize, usize)Expand description
Classify an entire polygon (triangle) with respect to a plane.
Returns (front_count, back_count, on_count).