Enum geo_buffer::skeleton::VertexType
source · pub enum VertexType {
TreeVertex {
axis: Ray,
left_ray: Ray,
right_ray: Ray,
parent: usize,
time_elapsed: f64,
},
SplitVertex {
anchor: usize,
location: Coordinate,
split_left: usize,
split_right: usize,
time_elapsed: f64,
},
RootVertex {
location: Coordinate,
time_elapsed: f64,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for VertexType
impl Send for VertexType
impl Sync for VertexType
impl Unpin for VertexType
impl UnwindSafe for VertexType
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