Skip to content

Commit

Permalink
Fixed some pull-related error
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatcherC committed Mar 4, 2016
1 parent 2c56f6b commit 27da01c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/STLWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void writeSTLfromArray(const vector<float> &hList, int width, int height, float
triangleCount += 4*(height-1);
triangleCount += 2; //base triangles
float planarScale = 40/width;
float xScale = cos(xScale);
xScale = cos(xScale);

if(cout.good()){
for(int i = 0; i < 80; i++){
Expand Down

0 comments on commit 27da01c

Please sign in to comment.