Skip to content

Commit

Permalink
Merge branch 'dev' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
larc committed Oct 18, 2023
2 parents 9da0074 + d6068dc commit 25d1267
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/gproshan/app_viewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -991,7 +991,9 @@ bool app_viewer::process_fill_holes(viewer * p_view)
border.assign(true, vertices.size());

// real_t angle;
index_t v0, v1, v2;
index_t v0 = NIL;
index_t v1 = NIL;
index_t v2 = NIL;
while(!front.empty())
{
// angle = front.top().first;
Expand Down
2 changes: 1 addition & 1 deletion src/gproshan/mesh/che_ptx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void che_ptx::read_file(const std::string & file)
img.permute_axes("zycx");
img.save((file + ".jpg").c_str());

std::thread([](const CImg<unsigned char> & img) { img.mirror("y").display(); }, img).detach();
std::thread([](CImg<unsigned char> img) { img.mirror("y").display(); }, img).detach();
#endif // NDEBUG
}
else
Expand Down

0 comments on commit 25d1267

Please sign in to comment.