Added intiailization of flags to zero in the constructor,
This commit is contained in:
parent
7bca532292
commit
88753fa7bc
|
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.15 2005/11/18 15:44:51 cignoni
|
||||||
|
Access to constant normal changed from by val to by reference
|
||||||
|
|
||||||
Revision 1.14 2005/11/16 23:02:37 cignoni
|
Revision 1.14 2005/11/16 23:02:37 cignoni
|
||||||
Added some missing members to EmptyMark
|
Added some missing members to EmptyMark
|
||||||
Standardized name of flags. It is plural becouse each simplex has many flag.
|
Standardized name of flags. It is plural becouse each simplex has many flag.
|
||||||
|
|
@ -199,6 +202,7 @@ public:
|
||||||
|
|
||||||
template <class T> class BitFlags: public T {
|
template <class T> class BitFlags: public T {
|
||||||
public:
|
public:
|
||||||
|
BitFlags(){_flags=0;}
|
||||||
typedef int FlagType;
|
typedef int FlagType;
|
||||||
int &Flags() {return _flags; }
|
int &Flags() {return _flags; }
|
||||||
const int Flags() const {return _flags; }
|
const int Flags() const {return _flags; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue