EgtGeomKernel 1.5b7 :
- aggiunti metodi Dump e GetTitle a oggetti geometrici - migliorato calcolo BBox di Arcs (spezzatura esterna tg).
This commit is contained in:
@@ -73,6 +73,27 @@ GeoFrame3d::Clone( void) const
|
||||
return pGFr ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
const string&
|
||||
GeoFrame3d::GetTitle( void) const
|
||||
{
|
||||
static const string sTitle = "Frame" ;
|
||||
return sTitle ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GeoFrame3d::Dump( string& sOut, const char* szNewLine) const
|
||||
{
|
||||
// parametri : origine, VersoreX, VersoreY, VersoreZ
|
||||
sOut += "O(" + ToString( m_frF.Orig()) + ")" + szNewLine ;
|
||||
sOut += "VX(" + ToString( m_frF.VersX()) + ")" + szNewLine ;
|
||||
sOut += "VY(" + ToString( m_frF.VersY()) + ")" + szNewLine ;
|
||||
sOut += "VZ(" + ToString( m_frF.VersZ()) + ")" + szNewLine ;
|
||||
|
||||
return true ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
const string&
|
||||
GeoFrame3d::GetKey( void) const
|
||||
|
||||
Reference in New Issue
Block a user