geodesic 0.1.0

A Rust library for constructing and sampling 3D geometric scenes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

/// Specific error type for transformation operations.
#[derive(Debug, Copy, Clone, Error)]
pub enum TransformationError {
    #[error("Matrix is not invertible")]
    NonInvertibleMatrix,

    #[error("Invalid transformation matrix")]
    InvalidMatrix,
}