From 7b796c36f79d49c074d80425d0bd29ed3025c377 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 2 Apr 2024 22:08:37 +0100 Subject: [PATCH] Add gallery --- April24/index.html | 199 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 April24/index.html diff --git a/April24/index.html b/April24/index.html new file mode 100644 index 000000000..ef79b323f --- /dev/null +++ b/April24/index.html @@ -0,0 +1,199 @@ +--- +layout: default +title: The Computational Geometry Algorithms Library +tagline: +--- +{% include JB/setup %} + + +
+
+
    + +
  • +

    Dieudonne Operator

    +

    CGAL::Dieudonne_operator(statue, container);

    +
  • + +
  • +

    Bourbaki Graph

    +

    CGAL::make_Bourbaki_graph();

    +
  • + +
  • +

    Leray Triangulations

    +

    CGAL::make_Leray_triangulation();

    +
  • + +
  • +

    Seifert Loop

    +

    CGAL::Seifert_loop(faces(surface_mesh));

    +
  • + +
  • +

    The Cartan Method

    +

    CGAL::Cartan_method_3::estimate_hyperbolic_distances();

    +
  • + + + +
+
+
    +
  • 1
  • +
  • 2
  • +
  • 3
  • +
  • 4
  • +
  • 5
  • + +
+
+
+
+ +
+
+
+

CGAL is an open source software project that provides easy access to efficient and reliable geometric algorithms in the form of a C++ library. + CGAL is used in various areas needing geometric computation, such as geographic information systems, computer aided design, + molecular biology, medical imaging, computer graphics, and robotics.

+ +

The library offers data structures and algorithms like + triangulations, + Voronoi diagrams, + Boolean operations on polygons + and polyhedra, + point set processing, + arrangements of curves, + surface and volume mesh generation, + geometry processing, + alpha shapes, + convex hull algorithms, + shape reconstruction, + AABB and KD trees... + Explore the complete list of features and capabilities by visiting the CGAL + Package Overview. + +

The CGAL data structures and algorithms are distributed under a dual license, namely under + the GPL v3+ and, alternatively, under a commercial license + by GeometryFactory.

+
+
+ +
+

Latest News

+
    + {% assign news = site.posts %} + {% assign news_counter = 0 %} + {% assign max_news_number = 4 %} + {% for post in news %} + {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} + {% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %} + + {% assign is_release = false %} + {% for tag in post.tags %} + {% if tag contains "release" %} + {% assign is_release = true %} + {% break %} + {% endif %} + {% endfor %} + + {% unless is_release == true %} + {% unless post.dontshow %} + {% unless post.tags contains "WIP" %} +
  • {{this_month}} {{this_year}} + {{post.title}}{% unless post.description == "" %} -- {{post.description}}{% endunless %} +
  • + {% assign news_counter = news_counter | plus: 1 %} + {% if news_counter >= max_news_number %} + {% break %} + {% endif %} + {% endunless %} + {% endunless %} + {% endunless %} + {% endfor %} +
+ Older news and announcements... +
+
+ {% assign news = site.posts %} + {% assign exist_active_beta = false %} +

Latest Releases

+
    + {% for post in news %} + {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} + {% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %} + + {% if post.tags contains "latest-release" %} +
  • Latest stable release: {{post.description}}
  • + {% break %} + {% endif %} + {% endfor %} + {% for post in news %} + {% if post.tags contains "active-beta-release" %} + {% assign exist_active_beta = true %} +
  • Active beta release: {{post.description}}
  • + {% break %} + {% endif %} + {% endfor %} +
+

Previous Releases

+
    + {% assign releases_counter = 0 %} + {% assign max_releases_number = 1 %} + {% unless exist_active_beta == true %} + {% assign max_releases_number = max_releases_number | plus: 1 %} + {% endunless %} + + {% for post in news %} + {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} + {% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %} + {% unless post.dontshow %} + {% unless post.tags contains "WIP" %} + {% if post.tags contains "release" %} + {% unless post.tags contains "latest" or post.tags contains "active" %} +
  • {{this_month}} {{this_year}} {{post.description}}
  • + {% assign releases_counter = releases_counter | plus: 1 %} + {% if releases_counter >= max_releases_number %} + {% break %} + {% endif %} + {% endunless %} + {% endif %} + {% endunless %} + {% endunless %} + {% endfor %} +
+ Older releases... +
+