pub enum MtlLine {
Show 18 variants
Comment(String),
NewMtl(String),
AmbientMap(String),
DiffuseMap(String),
SpecularMap(String),
BumpMap(String),
AmbientColor(f32, f32, f32),
DiffuseColor(f32, f32, f32),
SpecularColor(f32, f32, f32),
KeColor(f32, f32, f32),
TransmissionFilter(f32, f32, f32),
OpticalDensity(f32),
SpecularExponent(f32),
TransparencyD(f32),
TransparencyTr(f32),
IlluminationModel(u32),
Sharpness(u32),
Blank,
}
Variants§
Comment(String)
NewMtl(String)
AmbientMap(String)
DiffuseMap(String)
SpecularMap(String)
BumpMap(String)
AmbientColor(f32, f32, f32)
DiffuseColor(f32, f32, f32)
SpecularColor(f32, f32, f32)
KeColor(f32, f32, f32)
TransmissionFilter(f32, f32, f32)
OpticalDensity(f32)
SpecularExponent(f32)
TransparencyD(f32)
TransparencyTr(f32)
IlluminationModel(u32)
Sharpness(u32)
Blank
Trait Implementations§
impl StructuralPartialEq for MtlLine
Auto Trait Implementations§
impl Freeze for MtlLine
impl RefUnwindSafe for MtlLine
impl Send for MtlLine
impl Sync for MtlLine
impl Unpin for MtlLine
impl UnwindSafe for MtlLine
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