roctree/src/errors.rs
Alex Selimov ba74db96f0 Improved BVH using surface area heuristic*
- Add custom error type
- Update more mesh based calculations to f32
2025-03-08 23:09:15 -05:00

20 lines
450 B
Rust

use std::{error::Error, fmt::Display};
#[derive(Debug)]
pub enum RoctreeError {
SplitPlaneError,
}
impl Error for RoctreeError {}
impl Display for RoctreeError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
RoctreeError::SplitPlaneError => write!(
f,
"Failed to get split plane, centroids overlap along longest axis"
),
}
}
}