Skip to content

Commit

Permalink
Merge branch 'master' into add_wrap_python_cmake_option
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoeurjo authored Sep 9, 2023
2 parents b833e71 + 77995bb commit 6100362
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
- *IO*
- Fix of the `getHSV` method in the `Color` class. (David Coeurjolly,
[#1674](https://github.com/DGtal-team/DGtal/pull/1674))
- Fix of `SurfaceMeshWriter::writeIsoLinesOBJ`
(Jacques-Olivier Lachaud, [#1701](https://github.com/DGtal-team/DGtal/pull/1701))

- *Examples*
- Fix Issue #1675, add missing SymmetricConvexExpander.h file
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Main website: [https://dgtal.org](https://dgtal.org)

[![CI (linux/macOS), master](https://github.com/DGtal-team/DGtal/actions/workflows/build-master.yml/badge.svg)](https://github.com/DGtal-team/DGtal/actions/workflows/build-master.yml) [![Build status](https://ci.appveyor.com/api/projects/status/2b94dmr3agvkd379/branch/master?svg=true)](https://ci.appveyor.com/project/kerautret/dgtal/branch/master)
[![CI (linux/macOS), master](https://github.com/DGtal-team/DGtal/actions/workflows/build-master.yml/badge.svg)](https://github.com/DGtal-team/DGtal/actions/workflows/build-master.yml)

Description
===========
Expand Down
2 changes: 1 addition & 1 deletion src/DGtal/io/writers/SurfaceMeshWriter.ih
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ writeIsoLinesOBJ( std::string objfile,
<< " Weird iso-line on face " << f << std::endl;
else {
for ( Size ii = 0; ii < crossings.size(); ++ii )
for ( Size j = i+1; j < crossings.size(); ++j )
for ( Size j = ii+1; j < crossings.size(); ++j )
{
RealVector pq = crossings[ j ] - crossings[ ii ];
if ( pq.squaredNorm() < 1e-8 ) continue;
Expand Down

0 comments on commit 6100362

Please sign in to comment.