Laurent Rineau
adb826d25b
Subdivision: Use named parameters from the BGL package
...
That will remove the dependency to PMP.
2018-03-22 19:05:51 +01:00
Sébastien Loriot
6342f9a732
fix remaining point reference
2017-12-12 14:41:41 +01:00
Sébastien Loriot
25491714ba
using named parameters as documented
2017-12-11 13:21:37 +01:00
Mael Rouxel-Labbé
7982f9ea68
Restructured the subdivision package
...
-- Integrated the doc in the header files
-- Split and moved files to have a proper internal structure and to distinguish
between hosts, stencils and methods at the filename level.
-- Removed all instances of Polyhedron to have PolygonMesh instead
-- Cleaned off useless functions (Polyhedron_decorator remnants)
-- Improved general documentation
-- Minor performance improvements
2017-05-12 10:34:56 +02:00
Mael Rouxel-Labbé
c123917e1d
Updated the examples
...
Incidentally, the testsuite will be able to run the examples now
2017-05-12 10:34:56 +02:00
Mael Rouxel-Labbé
518c3838ed
Removed unneeded include
2017-05-12 10:34:56 +02:00
Mael Rouxel-Labbé
ba3e6d74db
Fix steps in /examples/ using unsigned int instead of int
...
Important otherwise the unsigned int gets matched as a NamedParameter
2017-05-12 10:34:56 +02:00
Mael Rouxel-Labbé
4ea673bdf9
Additional graph traits includes
2017-05-12 10:34:56 +02:00
Mael Rouxel-Labbé
bdfa4e3bdc
Trailing whitespace
2017-05-12 10:34:56 +02:00
Mael Rouxel-Labbé
47dd47acd5
Compilation fixes
2017-05-12 10:34:56 +02:00
Andreas Fabri
7885eda044
WIP Debugging Doo-Saboin for a Surface_mesh with border
2017-05-12 10:34:56 +02:00
Andreas Fabri
3b5c631aa9
polish
2017-05-12 10:34:56 +02:00
Andreas Fabri
c02b755e27
Complete the testsuite, and fix errors it revealed
2017-05-12 10:34:56 +02:00
Andreas Fabri
43a59d8fcc
Introduce named parameters for CatmullClark
2017-05-12 10:34:56 +02:00
Andreas Fabri
594a5a0a58
There are no such concepts or models with _stencil
2017-05-12 10:34:56 +02:00
Andreas Fabri
9ecbd56009
Upgrade example Customized_subdivision
2017-05-12 10:34:56 +02:00
Andreas Fabri
20caf9a7c3
Add example
2017-05-12 10:34:56 +02:00
Andreas Fabri
d91ffb8fa3
Make Sqrt1_subdivision work
2017-05-12 10:34:56 +02:00
Andreas Fabri
299d748adf
Loop subdivision now works for Surface_mesh
2017-05-12 10:34:56 +02:00
Andreas Fabri
dfc877cd2a
CatmullClark now works with borders too
2017-05-12 10:34:56 +02:00
Andreas Fabri
645c56a11a
towards FaceGraph
2017-05-12 10:34:56 +02:00
Sébastien Loriot
6b338eeb1f
improve the name of projects in cmake scripts of examples
2016-09-08 00:02:55 +02:00
Sébastien Loriot
4c29bf1b44
CMAKE_SOURCE_DIR -> CMAKE_CURRENT_SOURCE_DIR
2016-03-24 16:33:46 +01:00
Sébastien Loriot
881e4d3199
request Core only in examples, tests and demos when really needed
2016-03-07 22:36:57 +01:00
Sébastien Loriot
2d191d6651
commit CMakeLists.txt for all examples and tests
2016-03-07 17:39:36 +01:00
Andreas Fabri
48fab14393
int -> size_t
2010-08-05 12:06:33 +00:00
Andreas Fabri
42e69a43a1
Cartesian -> Simple_cartesian
2010-06-22 13:47:04 +00:00
Sylvain Pion
bf3c4c99d1
Remove obsolete makefiles, or cmake-generated makefiles that should not be under SVN.
2009-08-20 13:27:34 +00:00
Andreas Fabri
af1f701621
float -> double
2008-10-14 07:44:29 +00:00
Fernando Cacciola
f93437ca22
Removed *unmodified* auto-generated CMakeLists.txt (now created by create_internal_release)
2008-05-05 14:01:55 +00:00
Fernando Cacciola
b704509dcf
Examples/Demos/Test CMake scripts updated
2008-03-05 21:14:02 +00:00
Fernando Cacciola
a659cd852a
Added project() and conditional test for CGAL_DIR
2008-02-14 15:42:36 +00:00
Fernando Cacciola
14043c43a0
Replaced CGALROOT by CGAL_DIR (the latters is used by CMake automatically)
2008-02-08 17:47:21 +00:00
Fernando Cacciola
afddfc4fca
CMake scripts for demos/examples/test added
2008-02-06 19:06:24 +00:00
Sylvain Pion
847c23a15e
Removing leading and trailing empty lines from all example files.
...
Using the following Perl script:
-----------------------------------------------------
#!/usr/bin/perl
local($/) = undef;
my $text = <>;
$text =~ s/\A\n+//mg;
$text =~ s/\n+\Z/\n/mg;
print "$text";
-----------------------------------------------------
2007-03-10 16:17:17 +00:00
Sylvain Pion
6fb5cb906b
Remove trailing white spaces and end of lines.
...
(using : perl -pi.bak -e 's/\s+$/\n/' */examples/*/*.cpp )
2007-03-10 14:59:41 +00:00
Sylvain Pion
b8b87ab5a5
Actually, the "// file: example_bla.cpp" lines are not needed anymore,
...
since the manual tools know it. So let's just remove them (many were
not uptodate with the filemane anyway).
2007-03-10 14:48:00 +00:00
Sylvain Pion
23edc11d3b
Fix all first lines of examples "// file : example_file.C" to .cpp suffix.
...
Using :
for i in * ; do cd $i ; for f in examples/*/*.cpp ; do ( head -1 $f | grep file | grep -v '\.cpp' ) && echo $f && perl -pi.bak -e 's/\.C$/.cpp/' $f ; done ; cd .. ; done
2007-03-10 14:34:05 +00:00
Andreas Fabri
03a4b2d3fb
changed .C to .cpp in examples
2006-07-09 19:46:21 +00:00
Joachim Reichel
f582718758
rename create_makefile to cgal_create_makefile to avoid name clashes,
...
adjust all occurences of create_makefile and create\_makefile in the entire
repository (well, trunk only)
2006-03-15 22:10:02 +00:00
Andreas Fabri
bba16b6593
The examples now return 0, if they are called without arguments
2006-03-13 22:37:23 +00:00
Le-Jeng Shiue
00b9eec7bc
use std::cin for input off file in the examples
2006-03-07 05:35:35 +00:00
Le-Jeng Shiue
15f4cb3101
clean the example codes
2006-02-21 04:57:29 +00:00
Le-Jeng Shiue
bacb0f89b3
- revise section 7 and 8
...
- spell check
- clean up the example codes
2006-02-21 04:53:32 +00:00
Le-Jeng Shiue
e358a077d8
Change the package name to Subdivision_method_3
2006-02-18 00:46:03 +00:00