Trait components::BehaviourRotateExt[][src]

pub trait BehaviourRotateExt: 'static {
Show methods pub fn get_axis(&self) -> RotateAxis;
pub fn get_bounds(&self) -> (f64, f64);
pub fn get_center(&self) -> (i32, i32, i32);
pub fn get_direction(&self) -> RotateDirection;
pub fn set_axis(&self, axis: RotateAxis);
pub fn set_bounds(&self, angle_start: f64, angle_end: f64);
pub fn set_center(&self, x: i32, y: i32, z: i32);
pub fn set_direction(&self, direction: RotateDirection);
pub fn get_property_angle_end(&self) -> f64;
pub fn set_property_angle_end(&self, angle_end: f64);
pub fn get_property_angle_start(&self) -> f64;
pub fn set_property_angle_start(&self, angle_start: f64);
pub fn get_property_center_x(&self) -> i32;
pub fn set_property_center_x(&self, center_x: i32);
pub fn get_property_center_y(&self) -> i32;
pub fn set_property_center_y(&self, center_y: i32);
pub fn get_property_center_z(&self) -> i32;
pub fn set_property_center_z(&self, center_z: i32);
pub fn connect_property_angle_end_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_angle_start_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_axis_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_center_x_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_center_y_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_center_z_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_direction_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
}

Required methods

pub fn get_axis(&self) -> RotateAxis[src]

pub fn get_bounds(&self) -> (f64, f64)[src]

pub fn get_center(&self) -> (i32, i32, i32)[src]

pub fn get_direction(&self) -> RotateDirection[src]

pub fn set_axis(&self, axis: RotateAxis)[src]

pub fn set_bounds(&self, angle_start: f64, angle_end: f64)[src]

pub fn set_center(&self, x: i32, y: i32, z: i32)[src]

pub fn set_direction(&self, direction: RotateDirection)[src]

pub fn get_property_angle_end(&self) -> f64[src]

pub fn set_property_angle_end(&self, angle_end: f64)[src]

pub fn get_property_angle_start(&self) -> f64[src]

pub fn set_property_angle_start(&self, angle_start: f64)[src]

pub fn get_property_center_x(&self) -> i32[src]

pub fn set_property_center_x(&self, center_x: i32)[src]

pub fn get_property_center_y(&self) -> i32[src]

pub fn set_property_center_y(&self, center_y: i32)[src]

pub fn get_property_center_z(&self) -> i32[src]

pub fn set_property_center_z(&self, center_z: i32)[src]

pub fn connect_property_angle_end_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_angle_start_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_axis_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_center_x_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_center_y_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_center_z_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_direction_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

Loading content...

Implementors

impl<O> BehaviourRotateExt for O where
    O: IsA<BehaviourRotate>, 
[src]

Loading content...