pub struct QuantizedMeshHeader {
pub center_x: f64,
pub center_y: f64,
pub center_z: f64,
pub minimum_height: f32,
pub maximum_height: f32,
pub bounding_sphere_center_x: f64,
pub bounding_sphere_center_y: f64,
pub bounding_sphere_center_z: f64,
pub bounding_sphere_radius: f64,
pub horizon_occlusion_point_x: f64,
pub horizon_occlusion_point_y: f64,
pub horizon_occlusion_point_z: f64,
}
Fields§
§center_x: f64
§center_y: f64
§center_z: f64
§minimum_height: f32
§maximum_height: f32
§bounding_sphere_center_x: f64
§bounding_sphere_center_y: f64
§bounding_sphere_center_z: f64
§bounding_sphere_radius: f64
§horizon_occlusion_point_x: f64
§horizon_occlusion_point_y: f64
§horizon_occlusion_point_z: f64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantizedMeshHeader
impl RefUnwindSafe for QuantizedMeshHeader
impl Send for QuantizedMeshHeader
impl Sync for QuantizedMeshHeader
impl Unpin for QuantizedMeshHeader
impl UnwindSafe for QuantizedMeshHeader
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more