Skip to main content

IInterpolatorVector3Methods

Trait IInterpolatorVector3Methods 

Source
pub trait IInterpolatorVector3Methods: IInterpolatorVector3 {
    // Provided methods
    fn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>) { ... }
    fn get_value(self) -> Vector3 { ... }
    fn is_equal(self, a: impl Into<Vector3>, b: impl Into<Vector3>) -> bool { ... }
}

Provided Methods§

Source

fn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>)

.ctor(crate::app::curve::Curve_Type, i32) overload

Source

fn get_value(self) -> Vector3

get_Value() overload

Source

fn is_equal(self, a: impl Into<Vector3>, b: impl Into<Vector3>) -> bool

IsEqual(crate::unity_engine::vector3::Vector3, crate::unity_engine::vector3::Vector3) overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IInterpolatorVector3> IInterpolatorVector3Methods for __T

Available on crate feature app-interpolatorvector3 only.