pub trait GridBoardTraitConst: BoardTraitConst {
    fn as_raw_GridBoard(&self) -> *const c_void;

    fn get_grid_size(&self) -> Result<Size> { ... }
    fn get_marker_length(&self) -> Result<f32> { ... }
    fn get_marker_separation(&self) -> Result<f32> { ... }
}
Expand description

Planar board with grid arrangement of markers

More common type of board. All markers are placed in the same plane in a grid arrangement. The board image can be drawn using generateImage() method.

Required Methods§

Provided Methods§

Implementors§