Merge commit '00a81d6e0461bcb1ad8cab1b0fd81ba14de55ef0' into Cube

This commit is contained in:
Riccardo Elitropi
2023-08-22 13:17:44 +02:00
9 changed files with 244 additions and 124 deletions
+9
View File
@@ -106,6 +106,15 @@ ObjMultiGraphics::AddBackMaterial( const Color& colAmbDiff)
return m_vOEGR[m_nCurr]->AddBackMaterial( colAmbDiff) ;
}
//----------------------------------------------------------------------------
bool
ObjMultiGraphics::AddLineStipple( int nFactor, int nPattern)
{
if ( m_nCurr < 0 || m_nCurr >= int( m_vOEGR.size()))
return false ;
return m_vOEGR[m_nCurr]->AddLineStipple( nFactor, nPattern) ;
}
//----------------------------------------------------------------------------
bool
ObjMultiGraphics::AddPoint( const Point3d& ptP, bool bAux)