2018-09-21 01:54:12 +08:00
|
|
|
use traits::Number;
|
2018-09-23 20:41:56 +08:00
|
|
|
use aliases::TVec3;
|
2018-09-21 01:54:12 +08:00
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if `{a, b, c}` forms a left-handed trihedron.
|
2018-09-23 20:41:56 +08:00
|
|
|
pub fn left_handed<N: Number>(a: &TVec3<N>, b: &TVec3<N>, c: &TVec3<N>) -> bool {
|
2018-09-21 01:54:12 +08:00
|
|
|
a.cross(b).dot(c) < N::zero()
|
|
|
|
}
|
|
|
|
|
2018-09-22 19:18:59 +08:00
|
|
|
/// Returns `true` if `{a, b, c}` forms a right-handed trihedron.
|
2018-09-23 20:41:56 +08:00
|
|
|
pub fn right_handed<N: Number>(a: &TVec3<N>, b: &TVec3<N>, c: &TVec3<N>) -> bool {
|
2018-09-21 01:54:12 +08:00
|
|
|
a.cross(b).dot(c) > N::zero()
|
|
|
|
}
|