viz_init Subroutine

public subroutine viz_init(x, y)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: x
integer, intent(in) :: y

Contents

Source Code


Source Code

subroutine viz_init(x,y)
! initialize package and set size of plot area
integer, intent(in):: x,y
    cols = x
    rows = y
    call viz_put(cli//'?25l') ! hide the cursor to reduce flicker
   !call viz_put(cli//'2J')     ! clear the screen
end subroutine viz_init