pub struct Arrays { /* private fields */ }
Expand description
Wrapper for OpenGL Client-Side Vertex arrays.
ogl::Arrays stores vertex data in ogl::Buffer objects.
Implementations§
Trait Implementations§
source§impl ArraysTrait for Arrays
impl ArraysTrait for Arrays
fn as_raw_mut_Arrays(&mut self) -> *mut c_void
source§fn set_vertex_array(&mut self, vertex: &impl ToInputArray) -> Result<()>
fn set_vertex_array(&mut self, vertex: &impl ToInputArray) -> Result<()>
Sets an array of vertex coordinates. Read more
source§fn reset_vertex_array(&mut self) -> Result<()>
fn reset_vertex_array(&mut self) -> Result<()>
Resets vertex coordinates.
source§fn set_color_array(&mut self, color: &impl ToInputArray) -> Result<()>
fn set_color_array(&mut self, color: &impl ToInputArray) -> Result<()>
Sets an array of vertex colors. Read more
source§fn reset_color_array(&mut self) -> Result<()>
fn reset_color_array(&mut self) -> Result<()>
Resets vertex colors.
source§fn set_normal_array(&mut self, normal: &impl ToInputArray) -> Result<()>
fn set_normal_array(&mut self, normal: &impl ToInputArray) -> Result<()>
Sets an array of vertex normals. Read more
source§fn reset_normal_array(&mut self) -> Result<()>
fn reset_normal_array(&mut self) -> Result<()>
Resets vertex normals.
source§fn set_tex_coord_array(&mut self, tex_coord: &impl ToInputArray) -> Result<()>
fn set_tex_coord_array(&mut self, tex_coord: &impl ToInputArray) -> Result<()>
Sets an array of vertex texture coordinates. Read more
source§fn reset_tex_coord_array(&mut self) -> Result<()>
fn reset_tex_coord_array(&mut self) -> Result<()>
Resets vertex texture coordinates.
source§impl ArraysTraitConst for Arrays
impl ArraysTraitConst for Arrays
source§impl Boxed for Arrays
impl Boxed for Arrays
source§unsafe fn from_raw(ptr: <Arrays as OpenCVType<'_>>::ExternReceive) -> Self
unsafe fn from_raw(ptr: <Arrays as OpenCVType<'_>>::ExternReceive) -> Self
Wrap the specified raw pointer Read more
source§fn into_raw(self) -> <Arrays as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw(self) -> <Arrays as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
source§fn as_raw(&self) -> <Arrays as OpenCVTypeExternContainer>::ExternSend
fn as_raw(&self) -> <Arrays as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
source§fn as_raw_mut(&mut self) -> <Arrays as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut(&mut self) -> <Arrays as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
impl Send for Arrays
Auto Trait Implementations§
impl Freeze for Arrays
impl RefUnwindSafe for Arrays
impl !Sync for Arrays
impl Unpin for Arrays
impl UnwindSafe for Arrays
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