pub trait ITrailTrackMethods: ITrailTrack {
// Provided methods
fn add(
self,
time: impl Into<f32>,
root: impl Into<Vector3>,
tip: impl Into<Vector3>,
) { ... }
fn evaluate(self, time: impl Into<f32>) -> (Vector3, Vector3) { ... }
fn optimize(self, eps: impl Into<f32>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn add(
self,
time: impl Into<f32>,
root: impl Into<Vector3>,
tip: impl Into<Vector3>,
)
fn add( self, time: impl Into<f32>, root: impl Into<Vector3>, tip: impl Into<Vector3>, )
Add(f32, 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§
impl<__T: ITrailTrack> ITrailTrackMethods for __T
Available on crate feature
combat-trailtrack only.