pub trait BoxController: Class<PxBoxController> + Controller {
    fn get_half_forward_extent(&self) -> f32 { ... }
    fn get_half_height(&self) -> f32 { ... }
    fn get_half_side_extent(&self) -> f32 { ... }
    fn set_half_forward_extent(&mut self, extent: f32) -> bool { ... }
    fn set_half_height(&mut self, height: f32) -> bool { ... }
    fn set_half_side_extent(&mut self, extent: f32) -> bool { ... }
}

Provided Methods

Get the half forward extent.

Get the half height.

Get the half side extent.

Set the half forward extent.

Set the half height.

Set the half side extent.

Implementors