Merge git://github.com/assimp/assimp

pull/13/head
Rodrigo Benenson 2012-12-07 21:57:42 +01:00
commit 4ccf4c751a
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 */