Skip to content

Releases: CGAL/cgal

CGAL 6.2

Choose a tag to compare

@lrineau lrineau released this 11 Jun 09:20
Immutable release. Only release title and notes can be modified.
v6.2

The CGAL Open Source Project is pleased to announce the release 6.2 of CGAL, the Computational Geometry Algorithms Library.

Besides fixes and general enhancement to existing packages, the following has changed since CGAL 6.1:

General Changes

  • The new list of supported compilers is:
    • Visual C++ 15.9, 16.10, 17.14, 18.0 (from Visual Studio 2017, 2019, 2022, and 2026) or later
    • Gnu g++ 13.3.0 or later (on Linux)
    • LLVM Clang version 22.0.0 or later (on Linux)
    • Apple Clang compiler versions 14.0.0 or later (on macOS)
  • The minimal supported version of Boost is still 1.74.0, but only versions 1.79.0 and later were tested.

2D Alpha Wrapping (new package)

  • This component takes a polygon soup, a 2D segment soup, and/or a 2D point set as input, and generates a valid (watertight, intersection-free and 1-manifold) multi-polygon that strictly encloses the input. The algorithm proceeds by shrink-wrapping and refining a 2D Delaunay triangulation starting from a loose bounding box of the input. Two user-defined parameters, alpha and offset, offer control over the maximum size of cavities where the shrink-wrapping process can enter, and the tightness of the final polygon(s) to the input, respectively. Once combined, these parameters provide a means to trade fidelity to the input for complexity of the output.

    See also the associated news entry.

Generalized Barycentric Coordinates 3 (new package)

  • This package provides functions to compute various types of generalized barycentric coordinates (Wachspress, mean value, discrete harmonic and tetrahedron coordinates) for points located inside closed convex 3D polyhedra.

Polygon Mesh Processing (major changes)

  • The “Polygon Mesh Processing” package has been reorganized into several packages. “Polygon Mesh Processing” retains the core functionalities, while advanced and specialized features have been moved to dedicated packages:
    • Boolean Operations On Meshes: algorithms for Boolean operations on polygon meshes; clipping, splitting, and slicing with planes, boxes, or other meshes; and kernel computations.
    • Meshing and Remeshing of Polygon Meshes: algorithms for meshing and remeshing, such as triangulation, refinement, simplification, optimization, and smoothing.
    • Polygon Mesh Repair: tools for detecting and correcting combinatorial and geometric defects in polygon meshes and polygon soups, including face orientation, hole filling, removal of degeneracies, and boundary stitching. This split does not induce any breaking change and is fully transparent: header includes such as #include <CGAL/Polygon_mesh_processing/XXX.h> do not need to be changed and will include the appropriate header from the new packages.

2D and 3D Linear Geometry Kernel

Intersecting Sequences of dD Iso-oriented Boxes

2D Arrangements

  • Introduced a Geometry Traits concept for arrangement on surfaces that enables the provision of the disconnected portions of an approximation of a curve within a given bounding box.
  • The class CGAL::Arr_linear_traits_2 is now a model of the new concept.
  • Added overloads of CGAL::draw(Arrangement_on_surface_2& arr, Bbox& bbox, ...) that enable the drawing of arrangements induced by unbounded curves.
  • Introduced the concept AosTraits::Do_intersect_2. A model of this concept must provide an operator that accepts two x-monotone curves and a boolean flag that indicates whether common endpoints should be considered or ignored. The operator determines whether the curves intersect, and it can be used with an inexact-construction kernel.

2D Intersection of Curves

  • The function CGAL::do_curves_intersect(), which assumed open curves, has been deprecated and replaced by the function CGAL::Surface_sweep_2::do_intersect(). Notice: (i) the introduction of the new namespace Surface_sweep_2, and (ii) the addition of the closed parameter, which defaults to true. To match the behavior of the deprecated function, set closed to false.

2D Regularized Boolean Set-Operations

  • Optimized do_intersect():
    • (i) made it robust even with an inexact-predicates kernel, and
    • (ii) made it quit once an intersection is detected. (In the past, the intersection was computed in one phase and examined in a subsequent phase.) This optimization somehow breaks backward compatibility as follows: the variants of the free function do_intersect() that accept a third optional parameter, namely UsePolylines, which determines whether the boundaries of the input polygons are treated as cyclic sequences of (x-monotone) segments or as a cyclic sequences of (x-monotone) polylines, do not accept this third parameter any longer. (This third optional parameter was introduced a few years ago, and now abandoned only for do_intersect().)

3D Convex hull

2D Triangulations

Read more

CGAL 6.1.2

Choose a tag to compare

@lrineau lrineau released this 10 Jun 14:43
Immutable release. Only release title and notes can be modified.
v6.1.2

CGAL-6.1.2 is a bug-fix release.

See on Github the list of bugs that were solved since CGAL-6.1.1.

Full Changelog: v6.1.1...v6.1.2

CGAL 6.2-beta1

CGAL 6.2-beta1 Pre-release
Pre-release

Choose a tag to compare

@lrineau lrineau released this 21 May 14:16
Immutable release. Only release title and notes can be modified.
v6.2-beta1

The CGAL Open Source Project is pleased to announce the release 6.2 Beta 1 of CGAL, the Computational Geometry Algorithms Library.

CGAL version 6.2 Beta 1 is a public testing release. It should provide a solid ground to report bugs that need to be tackled before the release of the final version of CGAL 6.2 in June or July 2026.

Change log available at https://www.cgal.org/2026/05/21/cgal62-beta1/.

CGAL 6.1.1

Choose a tag to compare

@lrineau lrineau released this 26 Jan 08:54
Immutable release. Only release title and notes can be modified.
v6.1.1

CGAL-6.1.1 is a bug-fix release.

See on Github the list of bugs that were solved since CGAL-6.1.

Full Changelog: v6.1...v6.1.1

CGAL 6.0.3

Choose a tag to compare

@lrineau lrineau released this 26 Jan 08:52
Immutable release. Only release title and notes can be modified.
v6.0.3
cefe300

CGAL-6.0.3 is a bug-fix release.

See on Github the list of bugs that were solved since CGAL-6.0.2.

Full Changelog: v6.0.2...v6.0.3

CGAL 6.1

Choose a tag to compare

@lrineau lrineau released this 01 Oct 14:47
Immutable release. Only release title and notes can be modified.
v6.1
b26b07a

The CGAL Open Source Project is pleased to announce the release 6.1 of CGAL, the Computational Geometry Algorithms Library.

Besides fixes and general enhancement to existing packages, the following has changed since CGAL 6.0:

General Changes

  • The new list of supported compilers is:
    • Visual C++ 15.9, 16.10, 17.0 (from Visual Studio 2017, 2019 and 2022) or later
    • Gnu g++ 12.2.0 or later (on Linux)
    • LLVM Clang version 20.1.6 or later (on Linux)
    • Apple Clang compiler versions 12.0.5 and 12.0.5 (on macOS)
  • The minimal supported version of Boost is now 1.74.0.

3D Constrained Triangulations (new package)

  • This package implements the construction of a 3D Constrained Delaunay triangulation. This triangulation is a generalization of a 3D Delaunay Triangulation which conforms to the set of faces of a 3D piecewise linear complex (PLC), ensuring that these faces are part of the triangulation. As not all PLCs are tetrahedralizable, the algorithm may insert Steiner points to construct the constrained triangulation. The main entry point is the function CGAL::make_conforming_constrained_Delaunay_triangulation_3().

3D Isosurfacing (new package)

  • This package provides algorithms to extract isosurfaces from scalar fields. The algorithms provided in this first version include Marching Cubes, Topologically Correct Marching Cubes, and Dual Contouring. The algorithm is generic with respect to the scalar field representation (implicit function, discrete values, …) and the discretization data structure (Cartesian grid, octree, …). The output is an indexed face set that stores an isosurface in the form of a surface mesh.

dD Fréchet Distance (new package)

  • This package provides functions for computing the Fréchet distance of polylines in any dimension under the Euclidean metric.

2D Triangulations on Hyperbolic Surfaces (new package)

  • This package enables building and handling triangulations of closed orientable hyperbolic surfaces. It offers functions for the generation of the triangulation from a convex fundamental domain, the Delaunay flip algorithm, and the construction of a portion of the lift of the triangulation in the Poincaré disk. A method is offered that generates such domains in genus two.

    See also the associated news entry.

Polygon Repair

Polygon Mesh Processing

Point Set Processing

  • Added CGAL::poisson_eliminate(), which can be used to downsample a point cloud to a target size while providing Poisson disk property, i.e., a larger minimal distance between points.

CGAL and the Boost Graph Library (BGL)

2D Arrangements

  • Breaking change: Renamed the concept AosApproximateTraits_2 to AosApproximatePointTraits_2 to make room for the new concept AosApproximateTraits_2. This concept requires the provision of a functor called Approximate_2 that has an operator that approximates the coordinates of a point.
  • Breaking change: The concept AosApproximateTraits_2 now refines the concept AosApproximatePointTraits_2 and requires the provision of a functor called Approximate_2. In addition to an operator that approximates the coordinates of a point, it also requires the provision of (i) an operator that approximates a points, and (ii) an operator that approximates a curve.
  • Renamed the prefix of the names of all concepts in the Arrangement_on_surface_2 package from “Arrangement” to “Aos”.
  • Introduced two traits decorators, namely CGAL::Arr_tracing_traits_2 and CGAL::Arr_counting_traits_2, which can be used to extract debugging and informative metadata about the traits in use while a program is being executed.
  • Fixed the Landmark point-location strategy so that it can be applied to arrangements on a sphere.
  • Fixed a bug in the extensions of vertex and halfedge types of the DCEL when used to instantiate Arrangement_with_history_2 or similar arrangement classes that derive from Arrangement_2.
  • Fixed do_intersect() of a 2D Arrangement with a curve.

Triangulations

  • All triangulations now offer the functions point(Vertex_handle) and point(Simplex, int), which enables users to access the geometric position of a vertex and of the i-th vertex of a simplex of a triangulation.

Poisson Surface Reconstruction

  • Added a new mesh domain Poisson_mesh_domain_3 that integrates some optimizat...
Read more

CGAL 6.0.2

Choose a tag to compare

@sloriot sloriot released this 17 Sep 15:42
e13ef80

CGAL-6.0.2 is a bug-fix release.

See on Github the list of bugs that were solved since CGAL-6.0.1.

Full Changelog: v6.0.1...v6.0.2

CGAL 6.1-beta2

CGAL 6.1-beta2 Pre-release
Pre-release

Choose a tag to compare

@sloriot sloriot released this 17 Sep 15:42
Immutable release. Only release title and notes can be modified.

The CGAL Open Source Project is pleased to announce the release 6.1 Beta 2 of CGAL, the Computational Geometry Algorithms Library.

CGAL version 6.1 Beta 2 is a public testing release. It should provide a solid ground to report bugs that need to be tackled before the release of the final version of CGAL 6.1 in Sept 2025.

The changelog is available at https://www.cgal.org/2025/09/17/cgal61-beta2/.

CGAL 5.6.3

Choose a tag to compare

@sloriot sloriot released this 17 Sep 15:42
3654f78

CGAL-5.6.3 is a bug-fix release.

See on Github the list of bugs that were solved since CGAL-5.6.2.

CGAL 6.1-beta1

CGAL 6.1-beta1 Pre-release
Pre-release

Choose a tag to compare

@lrineau lrineau released this 07 Jul 09:08
Immutable release. Only release title and notes can be modified.
v6.1-beta1

The CGAL Open Source Project is pleased to announce the release 6.1 Beta 1 of CGAL, the Computational Geometry Algorithms Library.

CGAL version 6.1 Beta 1 is a public testing release. It should provide a solid ground to report bugs that need to be tackled before the release of the final version of CGAL 6.1 in Sept 2025.

Change log available at https://www.cgal.org/2025/07/07/cgal61-beta1/.