Sébastien Loriot
|
98e471849b
|
moving files from internal to PKG/internal
|
2021-08-26 11:33:39 +02:00 |
Sébastien Loriot
|
5ec5ad6c8e
|
doc clean up
|
2020-04-22 16:23:57 +02:00 |
Sébastien Loriot
|
254d60f642
|
First pass on removing license notice in header for GPL files
|
2019-10-19 15:23:19 +02:00 |
Sébastien Loriot
|
7356421d80
|
introduce Commercial license SPDX tag
|
2019-10-19 12:15:19 +02:00 |
Sébastien Loriot
|
9bd9c68b83
|
update LGPL[23]+ and GPL[23]+ SPDX tags
ack -l --no-svg "SPDX-License-Identifier: GPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-3.0+/SPDX-License-Identifier: GPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-3.0+/SPDX-License-Identifier: LGPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: GPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-2.0+/SPDX-License-Identifier: GPL-2.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-2.0+/SPDX-License-Identifier: LGPL-2.0-or-later/"
|
2019-10-18 21:57:54 +02:00 |
Sébastien Loriot
|
3dd0aa112d
|
rename macro not following the convention
|
2018-10-08 10:28:55 +02:00 |
Sébastien Loriot
|
a2e8a1c68f
|
add the suffix Ref to doxygen link to reference
|
2018-10-08 10:26:56 +02:00 |
Laurent Rineau
|
599f7c3b73
|
Merge pull request #2965 from sloriot/AABB_tree-Add_primitive_constructor
Add a constructor from iterator on id for AABB_primitive
|
2018-03-30 10:56:38 +02:00 |
Sébastien Loriot
|
4befc177c8
|
update requirements in the doc
|
2018-03-28 15:44:50 +02:00 |
Sébastien Loriot
|
f36657ca2b
|
add constructor from iterator
|
2018-03-27 21:07:24 +02:00 |
Andreas Fabri
|
7675141f2b
|
AABB_tree
|
2018-01-17 19:43:47 +00:00 |
Sébastien Loriot
|
ee57fc2d6c
|
add SPDX identifier for files under the GPL-3+ license
|
2017-11-12 10:17:51 +01:00 |
Sébastien Loriot
|
50510c05ea
|
add include directive for license of all GPL header files
done using:
ack-grep "^GPL" */package_info/*/license.txt -l | awk -F "/" '{print $1}' > /tmp/gpl_packages
for i in `cat /tmp/gpl_packages | \
grep -v Operations_on_polyhedra | \
grep -v Algebraic_kernel_for_circles | \
grep -v Algebraic_kernel_for_spheres | \
grep -v Polyhedron_IO`;
do
echo $i
python Scripts/developer_scripts/add_license_in_pkg_header.py $i
done
python Scripts/developer_scripts/add_license_in_pkg_header.py Operations_on_polyhedra Polygon_mesh_processing
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_circles Circular_kernel_2
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_spheres Circular_kernel_3
python Scripts/developer_scripts/add_license_in_pkg_header.py Polyhedron_IO Polyhedron
|
2017-01-19 15:20:25 +01:00 |
Laurent Rineau
|
cb6ce3f448
|
Fix a typo: missing space
|
2014-01-10 16:44:33 +01:00 |
Sébastien Loriot
|
b6737e6b0f
|
fix the graph primitive when they don't have shared data
|
2013-07-29 18:47:17 +02:00 |
Sébastien Loriot
|
9c0808cad1
|
fix name of classes that do not respect CGAL naming conventions
AABB_HalfedgeGraph_segment_primitive -> AABB_halfedge_graph_segment_primitive
AABB_FaceGraph_triangle_primitive -> AABB_face_graph_triangle_primitive
|
2013-07-23 17:46:50 +02:00 |
Sébastien Loriot
|
2bf7690f57
|
rename template parameter cache_datum to CacheDatum
template parameter should be camel case
|
2013-07-22 14:52:16 +02:00 |
Sébastien Loriot
|
42dbc14ffe
|
use class in the forward declaration too
|
2013-06-24 08:45:39 +02:00 |
Sébastien Loriot
|
7cb2874da2
|
doxygen: fix documentation look
|
2013-06-19 10:40:41 +02:00 |
Sébastien Loriot
|
06fc6dc039
|
add the doxygen documentation corresponding to the doc_tex modifications
|
2013-06-18 19:55:20 +02:00 |
Sébastien Loriot
|
21283eab97
|
remove requirements of having get_reference_point and get_datum in the traits
|
2012-06-04 14:14:11 +00:00 |
Sébastien Loriot
|
567e637484
|
document previous changes
add new concept for primitive with shared data
rename Extra_data -> Shared_data
|
2012-06-01 15:24:17 +00:00 |
Sébastien Loriot
|
f57fab0c0a
|
*variadic version of insert, cstr and rebuild of AABB_tree
*the traits now correctly handle the storage of primitive data
*update primitives
|
2012-05-15 08:46:42 +00:00 |
Sébastien Loriot
|
a1bdd02f36
|
The traits now has a base class that is used to access the reference_point
and datum of a primitive. The base class is the one that will store additional
data.
|
2012-05-14 17:22:07 +00:00 |
Sébastien Loriot
|
dfc678846f
|
update AABB_primitive to take into account the fact that the property maps
can be stored outside of the primitive
|
2012-05-14 16:10:00 +00:00 |
Sébastien Loriot
|
ce41bc6925
|
id() should be const with no ref
|
2012-05-11 12:14:21 +00:00 |
Sébastien Loriot
|
6c2ef90a21
|
remove default constructor
|
2012-05-10 16:41:23 +00:00 |
Sébastien Loriot
|
8a3d8e1d01
|
rename cache_primitive -> cache_datum
|
2012-05-10 16:18:33 +00:00 |
Sébastien Loriot
|
be1de01b22
|
*update AABB_primitive: the property maps must operate on Id!
*correct and complete implementation for HalfhedgeGraph models
|
2012-05-10 15:51:45 +00:00 |
Sébastien Loriot
|
31d6ebe9bf
|
*add primitive types for HalfedgeGraph and FaceGraph (wip)
*clean up triangle and segment primitive
|
2012-05-09 17:11:09 +00:00 |
Sébastien Loriot
|
6efd7f7954
|
* remove a template parameter to primitive caching
* add a generic class that has two property map as template parameter to define a aabb_tree primitive
|
2012-05-09 07:14:49 +00:00 |