Struct nif::collectors::obj::Obj

source ·
pub struct Obj {
    pub materials: HashMap<String, ObjMaterial>,
    pub meshes: Vec<ObjMesh>,
}

Fields§

§materials: HashMap<String, ObjMaterial>§meshes: Vec<ObjMesh>

Implementations§

source§

impl Obj

source

pub fn write_to_files(&self, obj_path: PathBuf, mtl_path: PathBuf) -> Result<()>

source

pub fn visit_nif(&mut self, nif: &Nif, label: Option<String>)

source

pub fn visit_ni_node( &mut self, nif: &Nif, ni_node: &NiNode, parent_transform: Option<Mat4>, label: String )

source

pub fn visit_tri_shape( &mut self, nif: &Nif, tri_shape: &NiTriShape, parent_transform: Mat4, label: String )

source

pub fn visit_tri_shape_data( &mut self, tri_shape_data: &NiTriShapeData, parent_transform: Mat4, label: String ) -> Option<ObjMesh>

source

pub fn visit_texturing_property( &mut self, nif: &Nif, texturing_property: &NiTexturingProperty ) -> Option<String>

source

pub fn visit_source_texture( &mut self, source_texture: &NiSourceTexture ) -> Option<String>

Trait Implementations§

source§

impl Debug for Obj

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Obj

source§

fn default() -> Obj

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Obj

§

impl Send for Obj

§

impl Sync for Obj

§

impl Unpin for Obj

§

impl UnwindSafe for Obj

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.