Remove extra semicolons

This commit is contained in:
Clifford Yapp
2022-07-14 20:52:58 -04:00
parent beeb16ad7e
commit b0fb4c4254
8 changed files with 15 additions and 15 deletions

View File

@@ -499,7 +499,7 @@ const ON_wString& ON_Light::LightName() const
void ON_Light::SetAttenuation(double a,double b,double c)
{
m_attenuation = ON_3dVector(a,b,c);;
m_attenuation = ON_3dVector(a,b,c);
}
void ON_Light::SetAttenuation(const ON_3dVector& att )
@@ -709,7 +709,7 @@ void ON_Light::SetDiffuse( ON_Color c )
void ON_Light::SetSpecular( ON_Color c )
{
m_specular = c;;
m_specular = c;
}
ON_Color ON_Light::Ambient() const