pub fn vec3_reject_from(v: &Vec3, onto_unit: &Vec3) -> Vec3
Reject v from the unit direction onto_unit (perpendicular component).
v
onto_unit
Returns v - project_onto(v, onto_unit). onto_unit must be a unit vector.
v - project_onto(v, onto_unit)