Added cVFp member
This commit is contained in:
parent
4be15d81cd
commit
9d764b3a8c
|
@ -23,6 +23,9 @@
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
History
|
History
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.24 2005/10/06 14:26:39 pietroni
|
||||||
|
added getBBox method
|
||||||
|
|
||||||
Revision 1.23 2005/03/18 16:38:36 fiorin
|
Revision 1.23 2005/03/18 16:38:36 fiorin
|
||||||
Minor changes
|
Minor changes
|
||||||
|
|
||||||
|
@ -64,6 +67,9 @@ Revision 1.12 2004/05/10 13:31:13 ganovelli
|
||||||
function for edge adjacency added
|
function for edge adjacency added
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.24 2005/10/06 14:26:39 pietroni
|
||||||
|
added getBBox method
|
||||||
|
|
||||||
Revision 1.23 2005/03/18 16:38:36 fiorin
|
Revision 1.23 2005/03/18 16:38:36 fiorin
|
||||||
Minor changes
|
Minor changes
|
||||||
|
|
||||||
|
@ -545,7 +551,17 @@ inline const VFTYPE * & VFp() const
|
||||||
return _vfb;
|
return _vfb;
|
||||||
#else
|
#else
|
||||||
assert(0);// you are probably trying to use VF topology in a vertex without it
|
assert(0);// you are probably trying to use VF topology in a vertex without it
|
||||||
return (VFTYPE *)this;
|
return (VFTYPE *)0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
inline const VFTYPE * cVFp() const
|
||||||
|
{
|
||||||
|
#if ((defined __VCGLIB_VERTEX_AF) || (defined __VCGLIB_VERTEX_AFS))
|
||||||
|
return _vfb;
|
||||||
|
#else
|
||||||
|
assert(0);// you are probably trying to use VF topology in a vertex without it
|
||||||
|
return (VFTYPE *)0;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue