Using Intel® Visual Fortran to Create and Build Windows*-Based Applications

ID 757211
Date 7/23/2021
Public
Document Table of Contents

Writing a Graphics Program

Like many programs, graphics programs work well when written in small units. Using discrete routines aids debugging by isolating the functional components of the program. The following example program and its associated subroutines show the steps involved in initializing, drawing, and closing a graphics program.

The SINE program draws a sine wave. Its procedures call many of the common graphics routines. The main program calls five subroutines that carry out the actual graphics commands (also located in the SINE.F90 file):

  ! SINE.F90 - Illustrates basic graphics commands.
  !   USE IFQWIN
   CALL graphicsmode( )
   CALL drawlines( )
   CALL sinewave( )
   CALL drawshapes( )
   END
    .
    .
    .

For information on the subroutines used in the SINE program, see:

The SINE program's output appears in the following figure. The project is built as a Fortran Standard Graphics application.

Sine Program Output