Nurb

Struct Nurb 

Source
#[repr(C, packed(4))]
pub struct Nurb {
Show 22 fields pub next: Pointer<Nurb>, pub prev: Pointer<Nurb>, pub type_: i16, pub mat_nr: i16, pub hide: i16, pub flag: i16, pub pntsu: i32, pub pntsv: i32, pub _pad: [i8; 4], pub resolu: i16, pub resolv: i16, pub orderu: i16, pub orderv: i16, pub flagu: i16, pub flagv: i16, pub knotsu: Pointer<f32>, pub knotsv: Pointer<f32>, pub bp: Pointer<BPoint>, pub bezt: Pointer<BezTriple>, pub tilt_interp: i16, pub radius_interp: i16, pub charidx: i32,
}

Fields§

§next: Pointer<Nurb>§prev: Pointer<Nurb>§type_: i16§mat_nr: i16§hide: i16§flag: i16§pntsu: i32§pntsv: i32§_pad: [i8; 4]§resolu: i16§resolv: i16§orderu: i16§orderv: i16§flagu: i16§flagv: i16§knotsu: Pointer<f32>§knotsv: Pointer<f32>§bp: Pointer<BPoint>§bezt: Pointer<BezTriple>§tilt_interp: i16§radius_interp: i16§charidx: i32

Trait Implementations§

Auto Trait Implementations§

§

impl Freeze for Nurb

§

impl RefUnwindSafe for Nurb

§

impl Send for Nurb

§

impl Sync for Nurb

§

impl Unpin for Nurb

§

impl UnwindSafe for Nurb

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>,

Source§

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>,

Source§

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.