pub struct SubdivideOpts {
pub temp_allocator: AllocatorOpts,
pub result_allocator: AllocatorOpts,
pub boundary: SubdivisionBoundary,
pub uv_boundary: SubdivisionBoundary,
pub ignore_normals: bool,
pub interpolate_normals: bool,
pub interpolate_tangents: bool,
pub evaluate_source_vertices: bool,
pub max_source_vertices: usize,
pub evaluate_skin_weights: bool,
pub max_skin_weights: usize,
pub skin_deformer_index: usize,
}Fields§
§temp_allocator: AllocatorOpts§result_allocator: AllocatorOpts§boundary: SubdivisionBoundary§uv_boundary: SubdivisionBoundary§ignore_normals: bool§interpolate_normals: bool§interpolate_tangents: bool§evaluate_source_vertices: bool§max_source_vertices: usize§evaluate_skin_weights: bool§max_skin_weights: usize§skin_deformer_index: usizeTrait Implementations§
Source§impl Default for SubdivideOpts
impl Default for SubdivideOpts
Source§fn default() -> SubdivideOpts
fn default() -> SubdivideOpts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for SubdivideOpts
impl !Send for SubdivideOpts
impl !Sync for SubdivideOpts
impl !UnwindSafe for SubdivideOpts
impl Freeze for SubdivideOpts
impl Unpin for SubdivideOpts
impl UnsafeUnpin for SubdivideOpts
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