C Library Functions  - illusion (3)

NAME

illusion(3f) - [M_xyplot:banner] draw a banner page with short labels at the compass points (LICENSE:MIT)

CONTENTS

Synopsis
Description
Options
Example

SYNOPSIS

subroutine illusion(top,bottom,left,right)

   character(len=*),intent(in) :: top
   character(len=*),intent(in) :: bottom
   character(len=*),intent(in) :: left
   character(len=*),intent(in) :: right

DESCRIPTION

Draw a simple geometric illusion with short labels at the four compass points as a banner page

OPTIONS

TOP short top banner label
BOTTOM short bottom banner label
LEFT short left banner label
RIGHT short right banner label

EXAMPLE

Sample program

   program demo_illusion
   implicit none
   integer :: idum
   use M_draw,      only : vinit, color, clear, backbuffer, getkey, vexit, page
   use M_xyplot,    only : illusion
   call vinit(’ ’)
   call page(0.0,4800.0,0.0,4800.0)
   call color(6)
   call clear()
   call color(5)
   idum=backbuffer()
   call illusion(’TOP’,’BOTTOM’,’LEFT’,’RIGHT’)
   idum=getkey()
   call vexit()
   end program demo_illusion


Nemo Release 3.1 illusion (3) July 22, 2023
Generated by manServer 1.08 from 08e30ff6-c283-4d6e-ab33-88cdbb564267 using man macros.