Update of /cvsroot/plib/plib/doc/sg
In directory sc8-pr-cvs1:/tmp/cvs-serv7226/doc/sg
Modified Files:
index.html
Log Message:
sgSphere and sgBox have public members.
Index: index.html
===================================================================
RCS file: /cvsroot/plib/plib/doc/sg/index.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- index.html 24 Aug 2002 23:37:51 -0000 1.19
+++ index.html 13 Nov 2003 15:35:41 -0000 1.20
@@ -274,6 +274,10 @@
class sgSphere
{
+public:
+ sgVec3 center ;
+ SGfloat radius ;
+
SGfloat *getCenter (void) ;
SGfloat getRadius (void) ;
@@ -337,6 +341,9 @@
class sgBox
{
public:
+ sgVec3 min ;
+ sgVec3 max ;
+
SGfloat *getMin (void) ;
SGfloat *getMax (void) ;
|