home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
gnu
/
djgpp
/
src
/
libgplus.5
/
libgplus
/
etc
/
plotfile
/
tplotfil.cc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-05-03
|
389 b
|
15 lines
#include <PlotFile3D.h>
main()
{
PlotFile3D foo("test.pl");
foo.space(-1000,-1000,-1000,1000,1000,1000).erase();
// Draw and label
foo.linemod("longdashed").box(-1000,-1000,-1500,1000,1000,0);
foo.linemod("solid").sphere(0,0,500,0,0,500,30);
foo.linemod("dotted").circle(0,0,500,0,0,800,50);
char *title = "Test of PlotFile3D package";
foo.home().label(title);
}