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 |
Simon Giraudot
|
7bcb5b02eb
|
Fix warnings
|
2017-01-05 07:57:05 +01:00 |
Simon Giraudot
|
2dc269bc05
|
Better encapsulation of Index generation
|
2016-09-27 11:01:18 +02:00 |
Simon Giraudot
|
1b9c30e5f1
|
Do not document ply interpreter
|
2016-09-26 15:35:46 +02:00 |
Simon Giraudot
|
f631b25cf5
|
Update other include files
|
2016-09-26 09:38:00 +02:00 |
Simon Giraudot
|
75d49bab9c
|
Update PLY reader
|
2016-09-23 12:29:15 +02:00 |
Simon Giraudot
|
d3c2c455c0
|
Simplify notations of property maps
|
2016-09-21 15:21:46 +02:00 |
Simon Giraudot
|
106319a0e8
|
Replace template Kernel by template Point (+ Vector)
|
2016-09-21 12:44:08 +02:00 |
Simon Giraudot
|
937d4bfae9
|
Document PLY interpreter
|
2016-09-16 15:11:51 +02:00 |
Simon Giraudot
|
91a372772d
|
New feature: read whole content of ply point set to Point_set_3
|
2016-09-13 17:15:09 +02:00 |