pub trait WText3DTraitConst: Widget3DTraitConst {
    fn as_raw_WText3D(&self) -> *const c_void;

    fn get_text(&self) -> Result<String> { ... }
}
Expand description

This 3D Widget represents 3D text. The text always faces the camera.

Required Methods

Provided Methods

Returns the current text content of the widget.

Implementors