- copy&paste error in aiColor3D::operator- apparently nobody's using these. Thanks to Robin Tucker for pointing this out

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1342 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/13/head^2
ulfjorensen 2012-12-03 12:00:36 +00:00
parent ddea19ead1
commit e88f6ef227
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ struct aiColor3D
/** Component-wise subtraction */
aiColor3D operator-(const aiColor3D& c) const {
return aiColor3D(r+c.r,g+c.g,b+c.b);
return aiColor3D(r-c.r,g-c.g,b-c.b);
}
/** Component-wise multiplication */