[Teleus-cvs] teleus/src/gfx sphere.cpp,1.2,1.3 sphere.hpp,1.1,1.2
Status: Inactive
Brought to you by:
spiffgq
|
From: <sp...@us...> - 2004-03-11 03:28:48
|
Update of /cvsroot/teleus/teleus/src/gfx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7774/src/gfx Modified Files: sphere.cpp sphere.hpp Log Message: Syntax error. Oops. :-S Index: sphere.cpp =================================================================== RCS file: /cvsroot/teleus/teleus/src/gfx/sphere.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sphere.cpp 25 Feb 2004 06:34:01 -0000 1.2 --- sphere.cpp 11 Mar 2004 03:10:25 -0000 1.3 *************** *** 96,100 **** */ Sphere::Sphere(const Sphere& copy) ! : ApproxSphere(copy.slices(), copy.stacks()) // <-- I'm not happy with that. mPos(copy.mPos), mColor(copy.mColor) --- 96,100 ---- */ Sphere::Sphere(const Sphere& copy) ! : ApproxSphere(copy.slices(), copy.stacks()), // <-- I'm not happy with that. mPos(copy.mPos), mColor(copy.mColor) Index: sphere.hpp =================================================================== RCS file: /cvsroot/teleus/teleus/src/gfx/sphere.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sphere.hpp 18 Feb 2004 07:49:15 -0000 1.1 --- sphere.hpp 11 Mar 2004 03:10:25 -0000 1.2 *************** *** 65,67 **** } // END NAMESPACE teleus ! #endif \ No newline at end of file --- 65,68 ---- } // END NAMESPACE teleus ! #endif ! |