Skip to main content

gdnative_geom/
plane.rs

1use Vector3;
2
3/// Plane in hessian form.
4#[repr(C)]
5#[derive(Copy, Clone, Debug, PartialEq)]
6pub struct Plane {
7    pub normal: Vector3,
8    pub d: f32,
9}