pub struct AnimatedVector3Array { /* private fields */ }Implementations§
Source§impl AnimatedVector3Array
impl AnimatedVector3Array
pub fn new(element_count: usize) -> Result<Self>
pub fn info(&self) -> Result<AnimatedValueInfo>
pub fn clear(&self)
pub fn set_interpolation(&self, interpolation: AnimatedValueInterpolation)
pub fn set_float3_array(&self, values: &[[f32; 3]], time: f64)
pub fn float3_array_at_time(&self, time: f64) -> Result<Vec<[f32; 3]>>
Trait Implementations§
Source§impl Clone for AnimatedVector3Array
impl Clone for AnimatedVector3Array
Source§fn clone(&self) -> AnimatedVector3Array
fn clone(&self) -> AnimatedVector3Array
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AnimatedVector3Array
impl RefUnwindSafe for AnimatedVector3Array
impl !Send for AnimatedVector3Array
impl !Sync for AnimatedVector3Array
impl Unpin for AnimatedVector3Array
impl UnsafeUnpin for AnimatedVector3Array
impl UnwindSafe for AnimatedVector3Array
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