point_plane_projection Function

public pure function point_plane_projection(pt, pln) result(rst)

Projects a point onto a plane.

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in) :: pt(3)

The point.

class(plane), intent(in) :: pln

The plane onto which to project the point.

Return Value real(kind=real64), (3)

The projected point.


Contents