Returns the point at which a line intersects a plane.
vec3 lineVsPlane(vec3 lineFrom, vec3 lineTo, vec3 planePoint, vec3 planeNormal)
Type: vec3
Line's starting position.
Type: vec3
Line's end position.
Type: vec3
A point on the plane.
Type: vec3
A vector perpendicular to the plane (the up direction from the plane's surface).
The intersection of a line and a plane.