pub trait Widget3DTraitConst: WidgetTraitConst {
    // Required method
    fn as_raw_Widget3D(&self) -> *const c_void;

    // Provided method
    fn get_pose(&self) -> Result<Affine3d> { ... }
}
Expand description

Constant methods for crate::viz::Widget3D

Required Methods§

Provided Methods§

source

fn get_pose(&self) -> Result<Affine3d>

Returns the current pose of the widget.

Implementors§