Skip to content

Commit

Permalink
Preparing v1.9.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoLevy committed Dec 19, 2024
1 parent cdc314f commit 35ec06d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_policy(SET CMP0048 NEW)


##############################################################################
set(VORPALINE_VERSION_RC TRUE)
set(VORPALINE_VERSION_RC FALSE)
set(VORPALINE_VERSION_MAJOR 1)
set(VORPALINE_VERSION_MINOR 9)
set(VORPALINE_VERSION_PATCH 2)
Expand Down
21 changes: 20 additions & 1 deletion src/lib/geogram/delaunay/periodic_delaunay_3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ namespace {
);
}


/************************************************************************/

void delaunay_citations() {
Expand Down Expand Up @@ -251,6 +250,26 @@ namespace {
}
}

/************************************************************************/

// These two functions are missing when compiling in PSM mode.
#ifdef GEOGRAM_PSM
namespace GEO {
namespace PCK {
inline Sign det_3d(const vec3& p0, const vec3& p1, const vec3& p2) {
return det_3d(p0.data(), p1.data(), p2.data());
}
inline Sign det_4d(
const vec4& p0, const vec4& p1, const vec4& p2, const vec4& p3
) {
return det_4d(p0.data(), p1.data(), p2.data(), p3.data());
}
}
}
#endif

/************************************************************************/

namespace GEO {

/**
Expand Down

0 comments on commit 35ec06d

Please sign in to comment.