project_3d_to_2d Subroutine

public subroutine project_3d_to_2d(x3d, y3d, z3d, azim, elev, dist, x2d, y2d)

Project 3D coordinates to 2D using orthographic projection

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in) :: x3d(:)
real(kind=wp), intent(in) :: y3d(:)
real(kind=wp), intent(in) :: z3d(:)
real(kind=wp), intent(in) :: azim
real(kind=wp), intent(in) :: elev
real(kind=wp), intent(in) :: dist
real(kind=wp), intent(out) :: x2d(size(x3d))
real(kind=wp), intent(out) :: y2d(size(x3d))