use crate::{Point, Vector}; pub struct Plane { point: Point, vectors: [Vector; 2], }