I have a Vector3 called originPos that I want to bounce/reflect about another vector called endNormal. Documentation says the axis must be normalized. My code is originPos.Bounce(endNormal.Normalized( ...
I have a Vector3 called originPos that I want to rotate about another vector called endNormal. Documentation says the rotation axis must be normalized. My code is ...