pub struct MeshMetadata {
pub normals_computed: bool,
pub tangents_computed: bool,
pub uvs_loaded: bool,
pub validation_messages: Vec<String>,
pub source_format: Option<String>,
pub completeness_score: f32,
}
Expand description
Metadata tracking mesh attribute completeness and validation
Fields§
§normals_computed: bool
Whether normals were computed or loaded
tangents_computed: bool
Whether tangents were computed or loaded
uvs_loaded: bool
Whether UVs were loaded from file
validation_messages: Vec<String>
Validation errors or warnings
source_format: Option<String>
Original format information
completeness_score: f32
Attribute completeness score (0.0 to 1.0)
Implementations§
Source§impl MeshMetadata
impl MeshMetadata
Sourcepub fn from_loaded(
format: &str,
_has_normals: bool,
has_uvs: bool,
_has_tangents: bool,
) -> Self
pub fn from_loaded( format: &str, _has_normals: bool, has_uvs: bool, _has_tangents: bool, ) -> Self
Create metadata for a loaded mesh
Sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
Check if mesh has complete attributes
Sourcepub fn missing_attributes(&self) -> Vec<&'static str>
pub fn missing_attributes(&self) -> Vec<&'static str>
Get a summary of missing attributes
Trait Implementations§
Source§impl Clone for MeshMetadata
impl Clone for MeshMetadata
Source§fn clone(&self) -> MeshMetadata
fn clone(&self) -> MeshMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MeshMetadata
impl Debug for MeshMetadata
Source§impl Default for MeshMetadata
impl Default for MeshMetadata
Source§fn default() -> MeshMetadata
fn default() -> MeshMetadata
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MeshMetadata
impl RefUnwindSafe for MeshMetadata
impl Send for MeshMetadata
impl Sync for MeshMetadata
impl Unpin for MeshMetadata
impl UnwindSafe for MeshMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.