corrected one error in Interpolationparameters

This commit is contained in:
Nico Pietroni 2014-12-17 17:17:47 +00:00
parent 882d54d6ae
commit 48b7365ba4
1 changed files with 2 additions and 2 deletions

View File

@ -479,8 +479,8 @@ ScalarType ComputeAspectRatio()
a=Barycentric.V(0);
b=Barycentric.V(1);
c=Barycentric.V(2);
d=1-(a+b+c);
d=Barycentric.V(2);
c=1-(a+b+d);
}