Skip to content

Commit

Permalink
fixed Contours
Browse files Browse the repository at this point in the history
  • Loading branch information
hageldave committed Jul 29, 2019
1 parent a201ecc commit 2f8e217
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public static List<TriangleDetails> computeContourBands(double[][] uniformGridSa
tris.add(new TriangleDetails(tx0,ty0, tx1,ty1, tx2,ty2)
.setColor0(interpolateColor(c1, c2, interpolateToValue(isoValue1, isoValue2, v0)))
.setColor1(interpolateColor(c1, c2, interpolateToValue(isoValue1, isoValue2, v1)))
.setColor0(interpolateColor(c1, c2, interpolateToValue(isoValue1, isoValue2, v2)))
.setColor2(interpolateColor(c1, c2, interpolateToValue(isoValue1, isoValue2, v2)))
);
break;
}
Expand Down

0 comments on commit 2f8e217

Please sign in to comment.