ortho2(3f) - [M_pixel] define the area of the virtual world coordinates
to map to the viewport
(LICENSE:PD)
definition:
subroutine ortho2(left, right, bottom, top)
real,intent(in) :: left, right, bottom, top
Defines the section of the virtual world coordinates to map to the
viewport. All the projection routines define a new transformation
matrix, and consequently the world units. Parallel projections are
defined by ortho2.
John S. Urban
Public Domain
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real, | intent(in) | :: | left | |||
real, | intent(in) | :: | right | |||
real, | intent(in) | :: | bottom | |||
real, | intent(in) | :: | top |
subroutine ortho2(left, right, bottom, top)
! ident_24="@(#) M_pixel ortho2(3f) define the area of the virtual world coordinates to map to the viewport"
real,intent(in) :: left, right, bottom, top ! Define x (left, right), and y (bottom, top) clipping planes.
P_window_left=left
P_window_right=right
P_window_bottom=bottom
P_window_top=top
call mapping()
end subroutine ortho2