-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
190 lines (181 loc) · 8.48 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
---
layout: default
title: The Computational Geometry Algorithms Library
tagline:
---
{% include JB/setup %}
<div class="carrousel-wrapper">
<div class="carrousel">
<ul class="bxslider">
<li><img class="slide" src="{{ site.baseurl }}/images/david_bool_op.png" />
<h2 class="slideTitle">Boolean Operations</h2>
<h3 class="slideSubTitle">
<pre>CGAL::corefine_and_compute_boolean_operations(statue, container);</pre>
</h3>
</li>
<li><img class="slide" src="{{ site.baseurl }}/images/alpha_wrap.png" />
<h2 class="slideTitle">Wrapping</h2>
<h3 class="slideSubTitle">
<pre>CGAL::alpha_wrap();</pre>
</h3>
</li>
<li><img class="slide" src="{{ site.baseurl }}/images/ToS2porto.png" />
<h2 class="slideTitle">Triangulations</h2>
<h3 class="slideSubTitle">
<pre>CGAL::make_triangulation();</pre>
</h3>
</li>
<li><img class="slide" src="{{ site.baseurl }}/images/aabb_tree.png" />
<h2 class="slideTitle">Axis Aligned Bounding Box Tree</h2>
<h3 class="slideSubTitle">
<pre>CGAL::AABB_tree tree(faces(surface_mesh));</pre>
</h3>
</li>
<li><img class="slide" src="{{ site.baseurl }}/images/octo_0.png" />
<h2 class="slideTitle">The Heat Method</h2>
<h3 class="slideSubTitle">
<pre>CGAL::Heat_method_3::estimate_geodesic_distances();</pre>
</h3>
</li>
<li><img class="slide" src="{{ site.baseurl }}/images/segmentation.png" />
<h2 class="slideTitle">Mesh Segmentation</h2>
<h3 class="slideSubTitle">
<pre>CGAL::sdf_values(surface_mesh);</pre>
</h3>
</li>
<li><img class="slide" src="{{ site.baseurl }}/images/classif_header_cgal.png" />
<h2 class="slideTitle">Classification</h2>
<h3 class="slideSubTitle">
<pre>CGAL::Classification::classify(las_points);</pre>
</h3>
</li>
<li><img class="slide" src="{{ site.baseurl }}/images/periodic_banner.png" />
<h2 class="slideTitle">Periodic Mesh Generation</h2>
<h3 class="slideSubTitle">
<pre>CGAL::Periodic_tet_mesh mesh = CGAL::make_periodic_mesh();</pre>
</h3>
</li>
</ul>
<div class="custom-pager">
<a data-slide-index="0" href=""></a>
<a data-slide-index="1" href=""></a>
<a data-slide-index="2" href=""></a>
<a data-slide-index="3" href=""></a>
<a data-slide-index="4" href=""></a>
<a data-slide-index="5" href=""></a>
<a data-slide-index="6" href=""></a>
<a data-slide-index="7" href=""></a>
</div>
</div>
</div>
<div class="container">
<div class="row home-description">
<div class="blog-post blog-single-post col-md-12">
<p>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.</p>
<p>The library offers data structures and algorithms like
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartTriangulationsAndDelaunayTriangulations">triangulations</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartVoronoiDiagrams">Voronoi diagrams</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PkgBooleanSetOperations2">Boolean operations on polygons</a>
and <a href="https://doc.cgal.org/latest/Polygon_mesh_processing/index.html#Coref_section">polyhedra</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PkgPointSetProcessing3">point set processing</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartArrangements">arrangements of curves</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartMeshing">surface and volume mesh generation</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartGeometryProcessing">geometry processing</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PkgAlphaShapes2">alpha shapes</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartConvexHullAlgorithms">convex hull algorithms</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartReconstruction">shape reconstruction</a>,
<a href="https://doc.cgal.org/latest/Manual/packages.html#PartSearchStructures">AABB and KD trees</a>...
Explore the complete list of features and capabilities by visiting the CGAL
<a href="https://doc.cgal.org/latest/Manual/packages.html" target="_blank">Package Overview</a>.
<p>The CGAL data structures and algorithms are distributed under a dual license, namely under
the GPL v3+ and, alternatively, under a commercial license
by <a href="http://geometryfactory.com/">GeometryFactory</a>.</p>
</div>
</div>
<div class="bottom-container">
<div class="col-md-8">
<h3>Latest News</h3>
<ul>
{% assign news = site.posts %}
{% assign news_counter = 0 %}
{% assign max_news_number = 5 %}
{% 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" %}
<li class="active">{{this_month}} {{this_year}}
<a href="{{ site.baseurl }}{{post.url}}" class="active">{{post.title}}</a><!--
-->{% unless post.description == "" %} -- {{post.description}}{% endunless %}
</li>
{% assign news_counter = news_counter | plus: 1 %}
{% if news_counter >= max_news_number %}
{% break %}
{% endif %}
{% endunless %}
{% endunless %}
{% endunless %}
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/news.html" class="btn">Older news and announcements...</a>
</div>
<div class="col-md-4">
{% assign news = site.posts %}
{% assign exist_active_beta = false %}
<h3>Latest Releases</h3>
<ul>
{% 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" %}
<li class="active"><b>Latest stable release:</b> <a href="{{ site.baseurl }}{{post.url}}" class="active">{{post.description}}</a></li>
{% break %}
{% endif %}
{% endfor %}
{% for post in news %}
{% if post.tags contains "active-beta-release" %}
{% assign exist_active_beta = true %}
<li class="active"><b>Active beta release:</b> <a href="{{ site.baseurl }}{{post.url}}" class="active">{{post.description}}</a></li>
{% break %}
{% endif %}
{% endfor %}
</ul>
<h4>Previous Releases</h4>
<ul>
{% 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" %}
<li class="active">{{this_month}} {{this_year}} <a href="{{ site.baseurl }}{{post.url}}" class="active">{{post.description}}</a></li>
{% assign releases_counter = releases_counter | plus: 1 %}
{% if releases_counter >= max_releases_number %}
{% break %}
{% endif %}
{% endunless %}
{% endif %}
{% endunless %}
{% endunless %}
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/releases.html" class="btn">Older releases...</a>
</div>
</div>
</div>