PrismGeom.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef PRISMGEOM_HH
00028 #define PRISMGEOM_HH
00029
00030 #include "Geom.hh"
00031
00032 class PrismGeom : public Geom
00033 {
00034
00035 public: PrismGeom( Body* body, dSpaceID spaceId, int concave, double extractVector[3],
00036 int nbVertices, double *baseVertices );
00037
00038
00039 public: virtual ~PrismGeom();
00040
00041
00042 public: virtual void Render(RenderOptions *opt);
00043
00044
00045 private: int concave;
00046 private: double extractVector[3];
00047 private: int nbVertices;
00048 private: double **vertices0;
00049 private: double **vertices1;
00050 private: double norm0[3];
00051 private: double norm1[3];
00052 private: double **norm;
00053 public: double origin[3];
00054
00055 };
00056
00057 #endif
Last updated 12 September 2005 21:38:45
|