[UP]


Manual Reference Pages  - point2 (3)

NAME

point2(3f) - [M_pixel:DRAW] Draw a point at x, y (LICENSE:PD)

CONTENTS

Synopsis
Description
Example
Author
License

SYNOPSIS

definition:

   subroutine point2(x, y)
   real,intent(in) :: x, y

DESCRIPTION

Draw a point at x, y. Points are drawn with the current color as a circle with a diameter equal to the current linewidth.

EXAMPLE

Sample program:

   program demo_point2
   use :: M_pixel
   use :: M_writegif, only : writegif
   implicit none
   integer :: i
   call vinit()
   call color(5)
   do i=1,20
      call linewidth(50*i)
      call point2(real(i*25),real(i*25))
   enddo
   call writegif(’point2.3m_pixel.gif’,P_pixel,P_colormap)
   call vexit()
   end program demo_point2

AUTHOR

John S. Urban

LICENSE

Public Domain


point2 (3) March 11, 2021
Generated by manServer 1.08 from bbc5097d-83f3-458b-838c-fd358733fe08 using man macros.