Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2020-04-04 09:44:43 +00:00
parent cbe9d5900b
commit 51070aeef6
+3
View File
@@ -41,12 +41,15 @@ class Polygon3d
const Point3d& ptMin, const Point3d& ptMax) ;
EGK_EXPORT bool Trim( const Plane3d& plPlane, bool bInVsOut, bool bOnEq) ;
EGK_EXPORT bool Trim( const Polygon3d& plyOther, bool bInVsOut, bool bOnEq) ;
EGK_EXPORT bool Add( const Polygon3d& plyOther) ;
EGK_EXPORT bool IsValid( void) const
{ return ! m_Plane.GetVersN().IsSmall() ; }
EGK_EXPORT const Plane3d& GetPlane( void) const
{ return m_Plane ; }
EGK_EXPORT const Vector3d& GetVersN( void) const
{ return m_Plane.GetVersN() ; }
EGK_EXPORT double GetPlaneDist( void) const
{ return m_Plane.GetDist() ; }
EGK_EXPORT int GetSideCount( void) const
{ return ( IsValid() ? int( m_vVert.size()) : 0) ; }
EGK_EXPORT const PNTVECTOR& GetVertices( void) const