#[repr(u32)]pub enum RTCGeometryType {
Show 24 variants
TRIANGLE = 0,
QUAD = 1,
GRID = 2,
SUBDIVISION = 8,
CONE_LINEAR_CURVE = 15,
ROUND_LINEAR_CURVE = 16,
FLAT_LINEAR_CURVE = 17,
ROUND_BEZIER_CURVE = 24,
FLAT_BEZIER_CURVE = 25,
NORMAL_ORIENTED_BEZIER_CURVE = 26,
ROUND_BSPLINE_CURVE = 32,
FLAT_BSPLINE_CURVE = 33,
NORMAL_ORIENTED_BSPLINE_CURVE = 34,
ROUND_HERMITE_CURVE = 40,
FLAT_HERMITE_CURVE = 41,
NORMAL_ORIENTED_HERMITE_CURVE = 42,
SPHERE_POINT = 50,
DISC_POINT = 51,
ORIENTED_DISC_POINT = 52,
ROUND_CATMULL_ROM_CURVE = 58,
FLAT_CATMULL_ROM_CURVE = 59,
NORMAL_ORIENTED_CATMULL_ROM_CURVE = 60,
USER = 120,
INSTANCE = 121,
}
Variants§
TRIANGLE = 0
QUAD = 1
GRID = 2
SUBDIVISION = 8
CONE_LINEAR_CURVE = 15
ROUND_LINEAR_CURVE = 16
FLAT_LINEAR_CURVE = 17
ROUND_BEZIER_CURVE = 24
FLAT_BEZIER_CURVE = 25
NORMAL_ORIENTED_BEZIER_CURVE = 26
ROUND_BSPLINE_CURVE = 32
FLAT_BSPLINE_CURVE = 33
NORMAL_ORIENTED_BSPLINE_CURVE = 34
ROUND_HERMITE_CURVE = 40
FLAT_HERMITE_CURVE = 41
NORMAL_ORIENTED_HERMITE_CURVE = 42
SPHERE_POINT = 50
DISC_POINT = 51
ORIENTED_DISC_POINT = 52
ROUND_CATMULL_ROM_CURVE = 58
FLAT_CATMULL_ROM_CURVE = 59
NORMAL_ORIENTED_CATMULL_ROM_CURVE = 60
USER = 120
INSTANCE = 121
Trait Implementations§
Source§impl Clone for RTCGeometryType
impl Clone for RTCGeometryType
Source§fn clone(&self) -> RTCGeometryType
fn clone(&self) -> RTCGeometryType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RTCGeometryType
impl Debug for RTCGeometryType
Source§impl Hash for RTCGeometryType
impl Hash for RTCGeometryType
Source§impl PartialEq for RTCGeometryType
impl PartialEq for RTCGeometryType
impl Copy for RTCGeometryType
impl Eq for RTCGeometryType
impl StructuralPartialEq for RTCGeometryType
Auto Trait Implementations§
impl Freeze for RTCGeometryType
impl RefUnwindSafe for RTCGeometryType
impl Send for RTCGeometryType
impl Sync for RTCGeometryType
impl Unpin for RTCGeometryType
impl UnwindSafe for RTCGeometryType
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