pub trait GlassPanelGeometry {
// Required method
fn unit_normal(&self) -> [f32; 3];
}Expand description
Unit-length facing normal for a GlassPanel.
Required Methods§
Sourcefn unit_normal(&self) -> [f32; 3]
fn unit_normal(&self) -> [f32; 3]
Unit-length facing direction.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".