pub struct WGrid { /* private fields */ }
Expand description
This 3D Widget defines a grid. :
Implementations§
source§impl WGrid
impl WGrid
sourcepub fn new(
cells: Vec2i,
cells_spacing: Vec2d,
color: &impl ColorTraitConst
) -> Result<WGrid>
pub fn new( cells: Vec2i, cells_spacing: Vec2d, color: &impl ColorTraitConst ) -> Result<WGrid>
sourcepub fn new_def() -> Result<WGrid>
pub fn new_def() -> Result<WGrid>
Constructs a WGrid.
§Parameters
- cells: Number of cell columns and rows, respectively.
- cells_spacing: Size of each cell, respectively.
- color: Color of the grid.
§Note
This alternative version of [new] function uses the following default values for its arguments:
- cells: Vec2i::all(10)
- cells_spacing: Vec2d::all(1.0)
- color: Color::white()
Trait Implementations§
source§impl Boxed for WGrid
impl Boxed for WGrid
source§unsafe fn from_raw(ptr: <WGrid as OpenCVFromExtern>::ExternReceive) -> Self
unsafe fn from_raw(ptr: <WGrid as OpenCVFromExtern>::ExternReceive) -> Self
Wrap the specified raw pointer Read more
source§fn into_raw(self) -> <WGrid as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw(self) -> <WGrid as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
source§fn as_raw(&self) -> <WGrid as OpenCVTypeExternContainer>::ExternSend
fn as_raw(&self) -> <WGrid as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
source§fn as_raw_mut(&mut self) -> <WGrid as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut(&mut self) -> <WGrid as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
source§impl WGridTrait for WGrid
impl WGridTrait for WGrid
fn as_raw_mut_WGrid(&mut self) -> *mut c_void
source§impl WGridTraitConst for WGrid
impl WGridTraitConst for WGrid
fn as_raw_WGrid(&self) -> *const c_void
source§impl Widget3DTrait for WGrid
impl Widget3DTrait for WGrid
fn as_raw_mut_Widget3D(&mut self) -> *mut c_void
source§fn update_pose(&mut self, pose: Affine3d) -> Result<()>
fn update_pose(&mut self, pose: Affine3d) -> Result<()>
Updates pose of the widget by pre-multiplying its current pose. Read more
source§impl Widget3DTraitConst for WGrid
impl Widget3DTraitConst for WGrid
source§impl WidgetTrait for WGrid
impl WidgetTrait for WGrid
source§impl WidgetTraitConst for WGrid
impl WidgetTraitConst for WGrid
impl Send for WGrid
Auto Trait Implementations§
impl Freeze for WGrid
impl RefUnwindSafe for WGrid
impl !Sync for WGrid
impl Unpin for WGrid
impl UnwindSafe for WGrid
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Mat> ModifyInplace for Matwhere
Mat: Boxed,
impl<Mat> ModifyInplace for Matwhere
Mat: Boxed,
source§unsafe fn modify_inplace<Res>(
&mut self,
f: impl FnOnce(&Mat, &mut Mat) -> Res
) -> Res
unsafe fn modify_inplace<Res>( &mut self, f: impl FnOnce(&Mat, &mut Mat) -> Res ) -> Res
Helper function to call OpenCV functions that allow in-place modification of a
Mat
or another similar object. By passing
a mutable reference to the Mat
to this function your closure will get called with the read reference and a write references
to the same Mat
. This is of course unsafe as it breaks the Rust aliasing rules, but it might be useful for some performance
sensitive operations. One example of an OpenCV function that allows such in-place modification is imgproc::threshold
. Read more