|
|
/*************************************************************************** vim:tabstop=4 planesurf.h - description ------------------- begin : Thu Jul 5 2001 copyright : (C) 2001 by Francois Biot email : fbiot@mail.dotcom.fr *************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef PLANESURF_H #define PLANESURF_H #include#include #include /**Base class for all surfaces that are plane. *@author Francois Biot */ class planesurf : public glsurface { public: planesurf(); planesurf(const CString &sName) : glsurface(sName) {}; virtual ~planesurf(); virtual const vect& Normal () const=0; virtual vect AVect(const point &p) const=0; }; #endif
Generated by: saturn on FrancoisLinux on Sun Feb 3 20:01:44 2002, using kdoc 2.0a53. |