cvmath 0.0.7

Computer Graphics Vector Math Library
Documentation
1
2
3
4
5
6
7
8
9
10

/// Ray hit side.
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq)]
pub enum HitSide {
	/// The ray is entering the surface.
	#[default]
	Entry,
	/// The ray is exiting the surface.
	Exit,
}