removed excess typenames
This commit is contained in:
parent
6a70c599b2
commit
15e94d470a
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.8 2005/10/03 16:21:10 spinelli
|
||||||
|
erase wrong assert on boxToIbox function
|
||||||
|
|
||||||
Revision 1.7 2005/10/02 23:16:26 cignoni
|
Revision 1.7 2005/10/02 23:16:26 cignoni
|
||||||
English comment and moved typedef to public scope
|
English comment and moved typedef to public scope
|
||||||
|
|
||||||
|
@ -70,12 +73,12 @@ namespace vcg {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
typedef typename Box3<ScalarType> Box3x;
|
typedef SCALARTYPE ScalarType;
|
||||||
typedef typename SCALARTYPE ScalarType;
|
typedef Box3<ScalarType> Box3x;
|
||||||
typedef typename Point3<SCALARTYPE> CoordType;
|
typedef Point3<ScalarType> CoordType;
|
||||||
typedef typename OBJTYPE ObjType;
|
typedef OBJTYPE ObjType;
|
||||||
typedef typename OBJTYPE* ObjPtr;
|
typedef OBJTYPE* ObjPtr;
|
||||||
typedef typename BasicGrid<OBJTYPE,SCALARTYPE> GridType;
|
typedef BasicGrid<OBJTYPE,SCALARTYPE> GridType;
|
||||||
|
|
||||||
Box3x bbox;
|
Box3x bbox;
|
||||||
/// Dimensione spaziale (lunghezza lati) del bbox
|
/// Dimensione spaziale (lunghezza lati) del bbox
|
||||||
|
|
Loading…
Reference in New Issue