EgtGeomKernel 1.5b7 :
- aggiunti metodi Dump e GetTitle a oggetti geometrici - migliorato calcolo BBox di Arcs (spezzatura esterna tg).
This commit is contained in:
+19
-1
@@ -61,6 +61,24 @@ GeoVector3d::Clone( void) const
|
||||
return pGVt ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
const string&
|
||||
GeoVector3d::GetTitle( void) const
|
||||
{
|
||||
static const string sTitle = "Vector" ;
|
||||
return sTitle ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
GeoVector3d::Dump( string& sOut, const char* szNewLine) const
|
||||
{
|
||||
// parametri : vettore
|
||||
sOut += "V(" + ToString( m_vtV) + ")" + szNewLine ;
|
||||
|
||||
return true ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
const string&
|
||||
GeoVector3d::GetKey( void) const
|
||||
@@ -72,7 +90,7 @@ GeoVector3d::GetKey( void) const
|
||||
bool
|
||||
GeoVector3d::Save( ostream& osOut) const
|
||||
{
|
||||
// parametri : punto
|
||||
// parametri : vettore
|
||||
osOut << ToString( m_vtV) << ";" << endl ;
|
||||
|
||||
return true ;
|
||||
|
||||
Reference in New Issue
Block a user