[][src]Struct opencv::viz::WText3D

pub struct WText3D { /* fields omitted */ }

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

Methods

impl WText3D[src]

pub fn as_raw_WText3D(&self) -> *mut c_void[src]

pub unsafe fn from_raw_ptr(ptr: *mut c_void) -> Self[src]

impl WText3D[src]

pub fn new(
    text: &str,
    position: Point3d,
    text_scale: f64,
    face_camera: bool,
    color: &Color
) -> Result<WText3D>
[src]

Constructs a WText3D.

Parameters

  • text: Text content of the widget.
  • position: Position of the text.
  • text_scale: Size of the text.
  • face_camera: If true, text always faces the camera.
  • color: Color of the text.

C++ default parameters

  • text_scale: 1.
  • face_camera: true
  • color: Color::white()

pub fn set_text(&mut self, text: &str) -> Result<()>[src]

Sets the text content of the widget.

Parameters

  • text: Text content of the widget.

pub fn get_text(&self) -> Result<String>[src]

Returns the current text content of the widget.

Trait Implementations

impl WidgetTrait for WText3D[src]

impl Widget3DTrait for WText3D[src]

impl Send for WText3D[src]

impl Drop for WText3D[src]

Auto Trait Implementations

impl !Sync for WText3D

impl Unpin for WText3D

impl UnwindSafe for WText3D

impl RefUnwindSafe for WText3D

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]