2004-04-15 10:54:20 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* VCGLib o o *
|
|
|
|
* Visual and Computer Graphics Library o o *
|
|
|
|
* _ O _ *
|
|
|
|
* Copyright(C) 2004 \/)\/ *
|
|
|
|
* Visual Computing Lab /\/| *
|
|
|
|
* ISTI - Italian National Research Council | *
|
|
|
|
* \ *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
|
|
|
|
* for more details. *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
|
|
History
|
|
|
|
|
|
|
|
$Log: not supported by cvs2svn $
|
2006-07-06 14:46:19 +02:00
|
|
|
Revision 1.14 2005/12/12 11:10:36 ganovelli
|
|
|
|
modifications to compile with gcc
|
|
|
|
|
2005-12-12 12:15:26 +01:00
|
|
|
Revision 1.13 2004/10/04 17:07:58 pietroni
|
|
|
|
changed Q() function
|
|
|
|
|
2004-10-04 19:07:58 +02:00
|
|
|
Revision 1.12 2004/09/01 12:18:39 pietroni
|
|
|
|
minor changes to comply gcc compiler (typename's )
|
|
|
|
|
2004-09-01 14:22:04 +02:00
|
|
|
Revision 1.11 2004/08/26 13:15:23 pietroni
|
|
|
|
added IsS() function
|
|
|
|
|
2004-08-26 15:15:23 +02:00
|
|
|
Revision 1.10 2004/07/09 10:13:00 ganovelli
|
|
|
|
C() ,Q() ,hastetracolor(),hasqualityt()....
|
|
|
|
plus some misuse of tetra3 corrected
|
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
Revision 1.9 2004/07/08 08:43:22 pietroni
|
|
|
|
changed functions used to compute the aspect ratio
|
|
|
|
|
2004-07-08 10:43:22 +02:00
|
|
|
Revision 1.8 2004/05/20 13:04:23 pietroni
|
|
|
|
modified setBorderV function
|
|
|
|
|
2004-05-20 15:04:23 +02:00
|
|
|
Revision 1.7 2004/05/14 11:48:43 pietroni
|
|
|
|
templated with also tetratype...
|
|
|
|
|
2004-05-14 13:48:43 +02:00
|
|
|
Revision 1.6 2004/05/14 11:07:36 turini
|
|
|
|
Changed swap in std::swap.
|
|
|
|
|
2004-05-14 13:07:36 +02:00
|
|
|
Revision 1.5 2004/05/06 15:29:42 pietroni
|
|
|
|
changed names to topology functions
|
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
Revision 1.4 2004/04/28 11:37:14 pietroni
|
|
|
|
*** empty log message ***
|
|
|
|
|
2004-04-28 13:37:15 +02:00
|
|
|
Revision 1.3 2004/04/26 09:38:54 pietroni
|
|
|
|
*** empty log message ***
|
|
|
|
|
2004-04-26 11:40:15 +02:00
|
|
|
Revision 1.2 2004/04/20 12:42:37 pietroni
|
|
|
|
*** empty log message ***
|
|
|
|
|
2004-04-20 14:42:51 +02:00
|
|
|
Revision 1.1 2004/04/15 08:54:20 pietroni
|
|
|
|
*** empty log message ***
|
|
|
|
|
2004-04-15 10:54:20 +02:00
|
|
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TETRA_TYPE
|
|
|
|
#pragma message("\nYou should never directly include this file\_n")
|
|
|
|
#else
|
2005-12-12 12:15:26 +01:00
|
|
|
|
2004-04-15 10:54:20 +02:00
|
|
|
#include<vcg/space/point3.h>
|
2004-04-28 13:37:15 +02:00
|
|
|
#include<vcg/space/tetra3.h>
|
2004-04-15 10:54:20 +02:00
|
|
|
|
|
|
|
namespace vcg {
|
|
|
|
/**
|
|
|
|
\ingroup tetrahedron
|
|
|
|
@name Tetrahedron
|
|
|
|
Class Tetrahedron.
|
|
|
|
This is the base class for definition of a Tetrahedron of the mesh.
|
|
|
|
@param VTYPE (Template Parameter) Specifies the type for the vertex.
|
|
|
|
*/
|
|
|
|
|
2004-05-14 13:48:43 +02:00
|
|
|
template < class VTYPE, class TTYPE >
|
2004-04-15 10:54:20 +02:00
|
|
|
class TETRA_TYPE{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/// The base type of the face
|
|
|
|
typedef TETRA_TYPE BaseTetraType;
|
|
|
|
/// The vertex type
|
2004-09-01 14:22:04 +02:00
|
|
|
typedef VTYPE VertexType;
|
2004-04-15 10:54:20 +02:00
|
|
|
/// The coordinate type used to represent the point (i.e. Point3f, Point3d, ...)
|
|
|
|
typedef typename VertexType::CoordType CoordType;
|
|
|
|
/// The scalar type used to represent coords (i.e. float, double, ...)
|
|
|
|
typedef typename VertexType::ScalarType ScalarType;
|
2006-07-06 14:46:19 +02:00
|
|
|
/// The geometric type of the tetrahedron
|
|
|
|
typedef Tetra3<ScalarType> GeometricType;
|
2004-04-15 10:54:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************/
|
|
|
|
/** @name Tetrahedron Flags
|
|
|
|
For each Tetrahedron we store a set of boolean values packed in a int.
|
|
|
|
The default value for each flag is 0. Most commonly used flags are the \a deleted and the \a selected ones.
|
|
|
|
Users can ask and dispose for a bit for their own purposes with the vcg::TetrahedronFull::NewUserBit() and vcg::TetrahedronFull::DeleteUserBit() functions.
|
|
|
|
The value returned by these functions has to be passed to the
|
|
|
|
vcg::TetrahedronFull::SetUserBit() vcg::TetrahedronFull::ClearUserBit() and vcg::TetrahedronFull::IsUserBit() functions to check and modify the obtained bit flag.
|
|
|
|
|
|
|
|
**/
|
|
|
|
//@{
|
|
|
|
|
|
|
|
/// This are the flags of tetrahedron, the default value is 0
|
|
|
|
int _flags;
|
|
|
|
|
2004-04-20 14:42:51 +02:00
|
|
|
enum {
|
2004-04-15 10:54:20 +02:00
|
|
|
DELETED = 0x00000001, // deleted tetrahedron flag
|
|
|
|
SELECTED = 0x00000002, // Selection flag
|
|
|
|
BORDERF0 = 0x00000004, // Border flag, Face 0
|
|
|
|
BORDERF1 = 0x00000008, // Border flag, Face 1
|
|
|
|
BORDERF2 = 0x00000010, // Border flag, Face 2
|
|
|
|
BORDERF3 = 0x00000020, // Border flag, Face 3
|
|
|
|
BORDERE0 = 0x00000040, // Border flag, Edge 0
|
|
|
|
BORDERE1 = 0x00000080, // Border flag, Edge 1
|
|
|
|
BORDERE2 = 0x00000100, // Border flag, Edge 2
|
|
|
|
BORDERE3 = 0x00000200, // Border flag, Edge 3
|
|
|
|
BORDERE4 = 0x00000400, // Border flag, Edge 4
|
|
|
|
BORDERE5 = 0x00000800, // Border flag, Edge 5
|
|
|
|
USER0 = 0x00001000, // new flag for user
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// Return the vector of _flags
|
|
|
|
inline int & Flags ()
|
|
|
|
{
|
|
|
|
assert( (_flags & DELETED) == 0 );
|
|
|
|
return _flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int &LastBitFlag()
|
|
|
|
{
|
|
|
|
static int b =USER0;
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
static inline int NewBitFlag()
|
|
|
|
{
|
|
|
|
LastBitFlag()=LastBitFlag()<<1;
|
|
|
|
return LastBitFlag();
|
|
|
|
}
|
|
|
|
static inline bool DeleteBitFlag(int bitval)
|
|
|
|
{
|
|
|
|
if(LastBitFlag()==bitval) {
|
|
|
|
LastBitFlag()= LastBitFlag()>>1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
/// Get the flags without any control
|
|
|
|
inline int & UberFlags()
|
|
|
|
{
|
|
|
|
return _flags;
|
|
|
|
}
|
|
|
|
|
2004-04-15 10:54:20 +02:00
|
|
|
/// This function checks if the given user bit is true.
|
|
|
|
bool IsUserBit(int userBit){return (_flags & userBit) != 0;}
|
|
|
|
/// This function set the given user bit.
|
|
|
|
void SetUserBit(int userBit){_flags |=userBit;}
|
|
|
|
/// This function clear the given user bit.
|
|
|
|
void ClearUserBit(int userBit){_flags &= (~userBit);}
|
|
|
|
/// This function checks if the tetrahedron is deleted.
|
|
|
|
bool IsD() const {return (_flags & DELETED) != 0;}
|
|
|
|
/// This function mark the tetrahedron as deleted.
|
|
|
|
void SetD() {_flags |=DELETED;}
|
|
|
|
/// This function mark the tetrahedron as not deleted.
|
|
|
|
void ClearD() {_flags &=~DELETED;}
|
2004-08-26 15:15:23 +02:00
|
|
|
/// This answer true if a tetrahedron is selected
|
|
|
|
bool IsS() const {return (_flags & SELECTED) != 0;}
|
2004-04-15 10:54:20 +02:00
|
|
|
/// This function mark the tetrahedron as selected.
|
|
|
|
void SetS() {_flags |=SELECTED;}
|
|
|
|
/// This function mark the tetrahedron as not selected.
|
|
|
|
void ClearS() {_flags &=~SELECTED;}
|
|
|
|
/// This function return true if one face is extern.
|
2004-04-20 14:42:51 +02:00
|
|
|
bool HaveBorderF() {return ((_flags & (BORDERF0 | BORDERF1 | BORDERF2 | BORDERF3)) != 0);}
|
2004-04-15 10:54:20 +02:00
|
|
|
/// This function return true if the face is extern.
|
|
|
|
bool IsBorderF(int face) {
|
|
|
|
assert ((face<4)&&(face>-1));
|
2004-05-06 17:29:42 +02:00
|
|
|
return (this->TTp(face) == this);
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
|
|
|
//@}
|
|
|
|
|
|
|
|
/***********************************************/
|
|
|
|
/** @name Vertex Pointers
|
|
|
|
For each Tetrahedron we store 4 pointers to vertex
|
|
|
|
**/
|
|
|
|
//@{
|
|
|
|
/// The 4 vertices of the tetrahedron
|
|
|
|
protected:
|
|
|
|
VertexType *_v[4];
|
|
|
|
public:
|
2004-04-26 11:40:15 +02:00
|
|
|
|
|
|
|
/** Return the pointer to the j-th vertex of the terahedron.
|
|
|
|
@param j Index of the tetrahedron's vertex.
|
|
|
|
*/
|
|
|
|
inline VertexType * & V( const int j )
|
|
|
|
{
|
|
|
|
assert( (_flags & DELETED) == 0 );
|
|
|
|
assert(j >= 0);
|
|
|
|
assert(j < 4);
|
|
|
|
return _v[j];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const VertexType * const & V( const int j ) const
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
2004-04-26 11:40:15 +02:00
|
|
|
assert( (_flags & DELETED) == 0 );
|
|
|
|
assert(j>=0);
|
|
|
|
assert(j<4);
|
|
|
|
return _v[j];
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
2004-04-26 11:40:15 +02:00
|
|
|
|
|
|
|
inline const VertexType * const & cV( const int j ) const
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
2004-04-26 11:40:15 +02:00
|
|
|
assert( (_flags & DELETED) == 0 );
|
|
|
|
assert(j>=0);
|
|
|
|
assert(j<4);
|
|
|
|
return _v[j];
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
inline CoordType & P( const int j ) { return V(j)->P();}
|
|
|
|
inline const CoordType & cP( const int j ) const { return V(j)->cP();}
|
|
|
|
|
|
|
|
|
2004-04-15 10:54:20 +02:00
|
|
|
/***********************************************/
|
|
|
|
/** @name Topology Structures
|
|
|
|
For each Tetrahedron we store 2 array for Tatrahedron - Tetrahedron topology ( sharing Face)
|
|
|
|
and 2 array to implement the list of Vertex - Tetrahedron Topology (List of Tetrahedron sharing a vertex).
|
|
|
|
**/
|
|
|
|
//@{
|
|
|
|
|
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_AT
|
2004-04-15 10:54:20 +02:00
|
|
|
protected:
|
|
|
|
///pointers to tetrahedron for tetrahedron-tetrahedron topology (sharing same face)
|
2004-05-14 13:48:43 +02:00
|
|
|
TTYPE *_ttp[4];
|
2004-04-15 10:54:20 +02:00
|
|
|
///index of face for tetrahedron-tetrahedron topology (sharing same face)
|
2004-05-06 17:29:42 +02:00
|
|
|
int _tti[4];
|
2004-04-15 10:54:20 +02:00
|
|
|
public:
|
|
|
|
///Function to access the Tetrahedron that share the index-face (extern face returns a pointer to himself)
|
2004-05-14 13:48:43 +02:00
|
|
|
TTYPE *&TTp(const int &index)
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
2004-05-06 17:29:42 +02:00
|
|
|
return _ttp[index];
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
|
|
|
///Function to see the index of the face as seen from the other tetrahedron (extern face returns -1)
|
2004-05-06 17:29:42 +02:00
|
|
|
int &TTi(const int &index)
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
2004-05-06 17:29:42 +02:00
|
|
|
return _tti[index];
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_AV
|
2004-04-15 10:54:20 +02:00
|
|
|
protected:
|
|
|
|
///pointers to tetrahedron for vertex-tetrahedron topology (sharing same vertex)
|
2004-05-14 13:48:43 +02:00
|
|
|
TTYPE *_tvp[4];
|
2004-04-15 10:54:20 +02:00
|
|
|
///index of vertex for vertex-tetrahedron topology (sharing same vertex)
|
2004-05-06 17:29:42 +02:00
|
|
|
short int _tvi[4];
|
2004-04-15 10:54:20 +02:00
|
|
|
public:
|
|
|
|
///Function to access the Next Tetrahedron of the list that share the index-face (end of list is Null)
|
2004-05-14 13:48:43 +02:00
|
|
|
TTYPE *&TVp(const int &index)
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
2004-05-06 17:29:42 +02:00
|
|
|
return _tvp[index];
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
|
|
|
///Function to see the index of the Vertex as seen from the next tetrahedron of the list ( end of list is -1)
|
2004-05-06 17:29:42 +02:00
|
|
|
short int &TVi(const int &index)
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
2004-05-06 17:29:42 +02:00
|
|
|
return _tvi[index];
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
//@}
|
|
|
|
|
|
|
|
/***********************************************/
|
|
|
|
/** @Default Tatrahedron Functions**/
|
|
|
|
//@{
|
|
|
|
public:
|
|
|
|
|
|
|
|
///Constructor
|
|
|
|
TETRA_TYPE()
|
|
|
|
{
|
|
|
|
_flags=0;
|
|
|
|
}
|
|
|
|
///initialize default parameters of tetrahedron
|
2004-04-20 14:42:51 +02:00
|
|
|
virtual void Init(VertexType * p0,VertexType * p1,VertexType * p2,VertexType * p3)
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
|
|
|
_flags = 0;
|
|
|
|
_v[0]=p0;
|
|
|
|
_v[1]=p1;
|
|
|
|
_v[2]=p2;
|
|
|
|
_v[3]=p3;
|
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
if(vcg::ComputeVolume(*this)<0 )
|
2004-05-14 13:07:36 +02:00
|
|
|
std::swap(_v[1],_v[2]);
|
2004-04-15 10:54:20 +02:00
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TA
|
2004-04-20 14:42:51 +02:00
|
|
|
_z[0]=_z[1]=_z[2]=_z[3]=-1;
|
|
|
|
_t[0]=_t[1]=_t[2]=_t[3]=NULL;
|
2004-04-15 10:54:20 +02:00
|
|
|
#endif
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TV
|
2004-04-20 14:42:51 +02:00
|
|
|
_zv[0]=_zv[1]=_zv[2]=_zv[3]=-1;
|
|
|
|
_tv[0]=_tv[1]=_tv[2]=_tv[3]=NULL;
|
2004-04-15 10:54:20 +02:00
|
|
|
#endif
|
2004-07-08 10:43:22 +02:00
|
|
|
|
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
|
|
|
ComputeAspectRatio();
|
|
|
|
#endif
|
|
|
|
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
|
|
|
///set border vertices using TT-topology
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_AT
|
2004-04-15 10:54:20 +02:00
|
|
|
void setBorderV()
|
|
|
|
{
|
|
|
|
int i;
|
2004-05-20 15:04:23 +02:00
|
|
|
for (i=0;i<4;i++)
|
2005-12-12 12:15:26 +01:00
|
|
|
if (TTp(i)==this)
|
2004-04-15 10:54:20 +02:00
|
|
|
{
|
2004-05-20 15:04:23 +02:00
|
|
|
V(Tetra::VofF(i,0))->SetB();
|
|
|
|
V(Tetra::VofF(i,1))->SetB();
|
|
|
|
V(Tetra::VofF(i,2))->SetB();
|
|
|
|
}
|
|
|
|
}
|
2004-04-15 10:54:20 +02:00
|
|
|
#endif
|
|
|
|
//@}
|
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
/***********************************************/
|
|
|
|
/** @Generic geometric and quality funtions of a tetrahedron**/
|
|
|
|
//@{
|
|
|
|
#ifdef __VCGLIB_TETRA_TN
|
|
|
|
private:
|
|
|
|
CoordType _n[4];
|
|
|
|
public:
|
|
|
|
#endif
|
2004-07-08 10:43:22 +02:00
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
///return the normal of a face of the tetrahedron
|
2004-08-26 15:15:23 +02:00
|
|
|
CoordType N(const int &i){
|
2004-05-06 17:29:42 +02:00
|
|
|
assert((i>=0)&&(i<4));
|
2004-07-08 10:43:22 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TN
|
|
|
|
return _n[i];
|
|
|
|
#else
|
2004-07-09 12:13:00 +02:00
|
|
|
/* Tetra3<ScalarType> T=Tetra3<ScalarType>();
|
2004-07-08 10:43:22 +02:00
|
|
|
T.P0(0)=V(0)->P();
|
|
|
|
T.P1(0)=V(1)->P();
|
|
|
|
T.P2(0)=V(2)->P();
|
2004-07-09 12:13:00 +02:00
|
|
|
T.P3(0)=V(3)->P();*/
|
2004-08-26 15:15:23 +02:00
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
return (Normal(*this,i));
|
2004-07-08 10:43:22 +02:00
|
|
|
#endif
|
2004-05-06 17:29:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Calculate the normal to all the faces of a tetrahedron, the value is store in a position of vecton _n for each face
|
|
|
|
void ComputeNormal()
|
|
|
|
{
|
|
|
|
#ifdef __VCGLIB_TETRA_TN
|
|
|
|
Tetra3<ScalarType> T=Tetra3<ScalarType>();
|
|
|
|
T.P0(0)=V(0)->P();
|
|
|
|
T.P1(0)=V(1)->P();
|
|
|
|
T.P2(0)=V(2)->P();
|
|
|
|
T.P3(0)=V(3)->P();
|
|
|
|
|
|
|
|
for (int i=0;i<4;i++)
|
|
|
|
_n[i]=(Normal<Tetra3<ScalarType> >(T,i));
|
|
|
|
#else
|
|
|
|
assert(0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
//@}
|
|
|
|
|
2004-04-15 10:54:20 +02:00
|
|
|
/***********************************************/
|
|
|
|
/** @Generic geometric and quality funtions of a tetrahedron**/
|
|
|
|
//@{
|
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
2004-04-20 14:42:51 +02:00
|
|
|
ScalarType _volume;
|
2004-07-09 12:13:00 +02:00
|
|
|
ScalarType _aspect_ratio;
|
|
|
|
ScalarType _q;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ScalarType & Q(){
|
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
|
|
|
return _q;
|
|
|
|
#else
|
|
|
|
assert(0);
|
2004-10-04 19:07:58 +02:00
|
|
|
return *(ScalarType*)(&_flags);
|
2004-04-15 10:54:20 +02:00
|
|
|
#endif
|
2004-07-09 12:13:00 +02:00
|
|
|
}
|
2004-04-15 10:54:20 +02:00
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
const ScalarType & Q()const{
|
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
|
|
|
return _q;
|
|
|
|
#else
|
|
|
|
assert(0);
|
2004-10-04 19:07:58 +02:00
|
|
|
return *(ScalarType*)(&_flags);
|
2004-07-09 12:13:00 +02:00
|
|
|
#endif
|
|
|
|
}
|
2004-04-20 14:42:51 +02:00
|
|
|
|
|
|
|
ScalarType ComputeVolume(){
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
2004-07-09 12:13:00 +02:00
|
|
|
_volume = vcg::ComputeVolume<BaseTetraType>(*this);
|
2004-04-20 14:42:51 +02:00
|
|
|
return _volume;
|
|
|
|
#else
|
2004-07-09 12:13:00 +02:00
|
|
|
return vcg::ComputeVolume<BaseTetraType>(*this);
|
2004-04-20 14:42:51 +02:00
|
|
|
#endif
|
2004-04-15 10:54:20 +02:00
|
|
|
}
|
2004-04-20 14:42:51 +02:00
|
|
|
|
2004-04-15 10:54:20 +02:00
|
|
|
///return the volume of the tetrahedron
|
2004-07-08 10:43:22 +02:00
|
|
|
const ScalarType & Volume(){
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
2004-04-15 10:54:20 +02:00
|
|
|
return _volume;
|
|
|
|
#else
|
|
|
|
return (( V(2)->cP()-V(0)->cP())^(V(1)->cP()-V(0)->cP() ))*(V(3)->cP()-V(0)->cP())/6.0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
///return aspect ratio of the tetrahedron
|
2004-07-08 10:43:22 +02:00
|
|
|
ScalarType AspectRatio(){
|
2004-05-06 17:29:42 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
2004-04-15 10:54:20 +02:00
|
|
|
return _aspect_ratio;
|
|
|
|
#else
|
|
|
|
return ComputeAspectRatio();
|
|
|
|
#endif
|
|
|
|
}
|
2004-07-08 10:43:22 +02:00
|
|
|
|
|
|
|
///set if exist local value of aspect ratio
|
|
|
|
ScalarType ComputeAspectRatio(){
|
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
//Tetra3<ScalarType> T=Tetra3<ScalarType>();
|
|
|
|
//T.P0(0)=V(0)->cP();
|
|
|
|
//T.P1(0)=V(1)->cP();
|
|
|
|
//T.P2(0)=V(2)->cP();
|
|
|
|
//T.P3(0)=V(3)->cP();
|
2004-07-08 10:43:22 +02:00
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
|
2004-07-08 10:43:22 +02:00
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
2004-07-09 12:13:00 +02:00
|
|
|
_aspect_ratio= ( (Tetra3<ScalarType>* ) this) -> ComputeAspectRatio();
|
2004-07-08 10:43:22 +02:00
|
|
|
return(_aspect_ratio);
|
|
|
|
#else
|
2004-07-09 12:13:00 +02:00
|
|
|
return (( (Tetra3<ScalarType> *) this) -> ComputeAspectRatio());
|
|
|
|
#endif
|
|
|
|
}
|
2006-07-06 14:46:19 +02:00
|
|
|
|
|
|
|
CoordType Barycenter() const
|
|
|
|
{
|
|
|
|
return (V(0)->cP()+V(1)->cP()+V(2)->cP()+V(3)->cP())/ScalarType(4.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
Sphere3<ScalarType> SmallestEnclosingSphere()const
|
|
|
|
{
|
|
|
|
return SmallestEnclosing::SphereOfTetra(*this);
|
|
|
|
}
|
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
//@}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************/
|
|
|
|
/** @name Color
|
|
|
|
**/
|
|
|
|
//@{
|
|
|
|
#ifdef __VCGLIB_TETRA_TC
|
|
|
|
Color4b c;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Color4b & C(){
|
|
|
|
#ifdef __VCGLIB_TETRA_TC
|
|
|
|
return _c;
|
|
|
|
#else
|
|
|
|
assert(0);
|
|
|
|
return (*new Color4b());
|
2004-07-08 10:43:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
2004-04-15 10:54:20 +02:00
|
|
|
//@}
|
|
|
|
|
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
/***********************************************/
|
|
|
|
/** @name Reflection Functions
|
|
|
|
Static functions that give information about the current tetra type.
|
|
|
|
Reflection is a mechanism making it possible to investigate yourself. Reflection is used to investigate format of objects at runtime, invoke methods and access fields of these objects. Here we provide static const functions that are resolved at compile time and they give information about the data supported by the current tetra type.
|
|
|
|
**/
|
|
|
|
//@{
|
|
|
|
|
|
|
|
static bool HasTetraNormal() {
|
|
|
|
#ifdef __VCGLIB_TETRA_TN
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
static bool HasTetraMark() {
|
|
|
|
#ifdef __VCGLIB_TETRA_TM
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
static bool HasTetraQuality() {
|
|
|
|
#ifdef __VCGLIB_TETRA_TQ
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-07-09 12:13:00 +02:00
|
|
|
static bool HasTetraColor() {
|
|
|
|
#ifdef __VCGLIB_TETRA_TC
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-05-06 17:29:42 +02:00
|
|
|
static bool HasTTAdjacency() {
|
|
|
|
#if (defined(__VCGLIB_TETRA_AT) || defined(__VCGLIB_TETRA_SAT))
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
static bool HasVTAdjacency() {
|
|
|
|
#if (defined(__VCGLIB_TETRA_AV) || defined(__VCGLIB_TETRA_SAT))
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//@}
|
2004-04-15 10:54:20 +02:00
|
|
|
};//end class
|
|
|
|
|
|
|
|
}//end namespace
|
2005-12-12 12:15:26 +01:00
|
|
|
#endif
|