Yet another cr lf mismatch
This commit is contained in:
parent
0556b33b65
commit
3b155f73e2
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.3 2004/02/24 21:36:39 cignoni
|
||||||
|
grouped documentation, changed typenames and reflection mechanism
|
||||||
|
|
||||||
Revision 1.2 2004/02/13 02:09:39 cignoni
|
Revision 1.2 2004/02/13 02:09:39 cignoni
|
||||||
First working release, with doxygen comment structure
|
First working release, with doxygen comment structure
|
||||||
|
|
||||||
|
@ -512,37 +515,44 @@ Reflection is a mechanism making it possible to investigate yourself. Reflection
|
||||||
|
|
||||||
static bool HasNormal() {
|
static bool HasNormal() {
|
||||||
#ifdef __VCGLIB_VERTEX_N
|
#ifdef __VCGLIB_VERTEX_N
|
||||||
return true
|
return true;
|
||||||
#else
|
#else
|
||||||
return false
|
return false;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
static bool HasColor() {
|
static bool HasColor() {
|
||||||
#ifdef __VCGLIB_VERTEX_C
|
#ifdef __VCGLIB_VERTEX_C
|
||||||
return true
|
return true;
|
||||||
#else
|
#else
|
||||||
return false
|
return false;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
static bool HasMark() {
|
static bool HasMark() {
|
||||||
#ifdef __VCGLIB_VERTEX_M
|
#ifdef __VCGLIB_VERTEX_M
|
||||||
return true
|
return true;
|
||||||
#else
|
#else
|
||||||
return false
|
return false;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
static bool HasQuality() {
|
static bool HasQuality() {
|
||||||
#ifdef __VCGLIB_VERTEX_Q
|
#ifdef __VCGLIB_VERTEX_Q
|
||||||
return true
|
return true;
|
||||||
#else
|
#else
|
||||||
return false
|
return false;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
static bool HasTexture() {
|
static bool HasTexture() {
|
||||||
#ifdef __VCGLIB_VERTEX_T
|
#ifdef __VCGLIB_VERTEX_T
|
||||||
return true
|
return true;
|
||||||
#else
|
#else
|
||||||
return false
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
static bool HasVFAdjacency() {
|
||||||
|
#ifdef __VCGLIB_VERTEX_A
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
//@}
|
//@}
|
||||||
|
|
Loading…
Reference in New Issue