Update of /cvsroot/plib/plib/demos/simon/doc
In directory usw-pr-cvs1:/tmp/cvs-serv6726/plib/demos/simon/doc
Added Files:
index.html
Log Message:
Added SIMON - a *very* simple 3D programming framework.
--- NEW FILE: index.html ---
<TITLE>WELCOME TO S.I.M.O.N</TITLE>
<H1>WELCOME TO S.I.M.O.N</H1>
<center>by Steve Baker</center>
SIMON stands for:
<pre>
Simple
Interface for
Making
Oliver's programs
Nice.
</pre>
This is a simple set of functions that hide much of the nastiness
of 3D programming to make it possible for someone with only the
very minimum of programming experience to write simple 3D applications.
<p>
[...209 lines suppressed...]
TARGETS = test1
#======================== DON'T CHANGE THIS PART =============================
#
SIMONDIR = /usr/local/simon
SIMON = -I${SIMONDIR} -L${SIMONDIR}
LIBS = -lsimon -lplibssg -lplibsg -lglut -lGLU -lGL -L/usr/X11/lib -lX11 -lm
all: ${TARGETS}
#=============================================================================
#
# Copy this for every program you want to write - changing 'test1'
# to whatever your program is called.
#
test1 : test1.cxx ; g++ ${SIMON} -o test1 test1.cxx ${LIBS}
</pre>
|