1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use std::{error::Error, fmt::Display};

#[derive(Debug)]
pub struct InvalidIndex;

impl Display for InvalidIndex {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Invalid index")
    }
}

impl Error for InvalidIndex {}

#[derive(Debug)]
/// Error type when determining plane normal.
pub struct CollinearPoints;

impl Display for CollinearPoints {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "The given points are on one line!")
    }
}

impl Error for CollinearPoints {}

#[derive(Debug)]
/// Error type when coordinate becomes NaN
pub struct InvalidCoord();

impl Display for InvalidCoord {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "NaN value exists in coordinates!")
    }
}

impl Error for InvalidCoord {}