pub struct TimeCurvePoint {
pub position: f64,
pub value: f64,
pub right_handle: (f64, f64),
}Expand description
時間制御カーブの制御点。
Fields§
§position: f64時間軸の位置(0.0〜1.0)。
value: f64値(0.0〜1.0)。
right_handle: (f64, f64)Trait Implementations§
Source§impl Clone for TimeCurvePoint
impl Clone for TimeCurvePoint
Source§fn clone(&self) -> TimeCurvePoint
fn clone(&self) -> TimeCurvePoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimeCurvePoint
impl Debug for TimeCurvePoint
Source§impl PartialEq for TimeCurvePoint
impl PartialEq for TimeCurvePoint
impl StructuralPartialEq for TimeCurvePoint
Auto Trait Implementations§
impl Freeze for TimeCurvePoint
impl RefUnwindSafe for TimeCurvePoint
impl Send for TimeCurvePoint
impl Sync for TimeCurvePoint
impl Unpin for TimeCurvePoint
impl UnwindSafe for TimeCurvePoint
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