Merge git://github.com/assimp/assimp
commit
4ccf4c751a
|
@ -178,7 +178,7 @@ struct aiColor3D
|
||||||
|
|
||||||
/** Component-wise subtraction */
|
/** Component-wise subtraction */
|
||||||
aiColor3D operator-(const aiColor3D& c) const {
|
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 */
|
/** Component-wise multiplication */
|
||||||
|
|
Loading…
Reference in New Issue