Topic: Shapes

Any ideas/experience using AppGraphics to draw shapes from real*4 or real*8 coordinates instead of pixels.

Re: Shapes

Convert reals to integers (pixels)?

xpixel = xminpixel + nint((x-xmin) * fx),

where

fx =(xmaxpixel - xminpixel) / (xmax - xmin)