Skip to content

Commit

Permalink
clangformat
Browse files Browse the repository at this point in the history
  • Loading branch information
minoue committed May 13, 2023
1 parent 7b47f33 commit 10148ff
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions UDIMTextureImporterData/src/goz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
#include "FromZ/src/writeGoZFile.h"

#include "goz.hpp"
#include "util.hpp"
#include "timer.hpp"

#include "util.hpp"

GoZ::GoZ() {};

Expand Down Expand Up @@ -83,7 +82,6 @@ void GoZ::computeVertexNormals()
}

timer.showDuration("Vertex normal calculated in ");

}

// https://stackoverflow.com/questions/5255806/how-to-calculate-tangent-and-binorma
Expand Down Expand Up @@ -157,7 +155,6 @@ std::vector<Image> GoZ::initTextures(std::vector<std::string>& texture_paths)
void GoZ::importVectorDisplacement(std::vector<std::string>& texture_paths)
{


Timer timer;
timer.start();

Expand Down Expand Up @@ -316,7 +313,7 @@ void GoZ::importNormalDisplacement(std::vector<std::string>& texture_paths)
}
}
this->vertices = outVertices;

timer.showDuration("Finished Normal Displacement in ");
}

Expand Down

0 comments on commit 10148ff

Please sign in to comment.