Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
CGoGN
CGoGN
Commits
e00e38d9
Commit
e00e38d9
authored
May 26, 2015
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gcc/linux compil pass
parent
04c40b6c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
31 deletions
+33
-31
Apps/Tests/Algo/Tiling/Surface/hexagonal.cpp
Apps/Tests/Algo/Tiling/Surface/hexagonal.cpp
+3
-3
Apps/Tests/Algo/Tiling/Surface/square.cpp
Apps/Tests/Algo/Tiling/Surface/square.cpp
+14
-14
Apps/Tests/Algo/Tiling/Surface/triangular.cpp
Apps/Tests/Algo/Tiling/Surface/triangular.cpp
+12
-12
Apps/Tests/Algo/Tiling/Volume/cubic.cpp
Apps/Tests/Algo/Tiling/Volume/cubic.cpp
+2
-2
CGoGN/include/Algo/Selection/collector.h
CGoGN/include/Algo/Selection/collector.h
+2
-0
No files found.
Apps/Tests/Algo/Tiling/Surface/hexagonal.cpp
View file @
e00e38d9
...
...
@@ -24,9 +24,9 @@ struct PFP3 : public PFP_DOUBLE
// TODO implementation !!!
template
Algo
::
Surface
::
Tilings
::
Hexagonal
::
Grid
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Hexagonal
::
Grid
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Hexagonal
::
Grid
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Hexagonal
::
Grid
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Hexagonal
::
Grid
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Hexagonal
::
Grid
<
PFP3
>;
...
...
Apps/Tests/Algo/Tiling/Surface/square.cpp
View file @
e00e38d9
...
...
@@ -23,20 +23,20 @@ struct PFP3 : public PFP_DOUBLE
};
template
Algo
::
Surface
::
Tilings
::
Square
::
Grid
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Cylinder
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Cube
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Tore
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Grid
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Cylinder
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Cube
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Tore
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Grid
<
PFP3
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Cylinder
<
PFP3
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Cube
<
PFP3
>;
template
Algo
::
Surface
::
Tilings
::
Square
::
Tore
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Grid
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Cylinder
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Cube
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Tore
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Grid
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Cylinder
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Cube
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Tore
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Grid
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Cylinder
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Cube
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Square
::
Tore
<
PFP3
>;
int
test_square
()
...
...
Apps/Tests/Algo/Tiling/Surface/triangular.cpp
View file @
e00e38d9
...
...
@@ -22,21 +22,21 @@ struct PFP3 : public PFP_DOUBLE
typedef
EmbeddedGMap2
MAP
;
};
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Grid
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Cylinder
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Cube
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Tore
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Grid
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Cylinder
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Cube
<
PFP1
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Tore
<
PFP1
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Grid
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Cylinder
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Cube
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Tore
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Grid
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Cylinder
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Cube
<
PFP2
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Tore
<
PFP2
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Grid
<
PFP3
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Cylinder
<
PFP3
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Cube
<
PFP3
>;
template
Algo
::
Surface
::
Tilings
::
Triangular
::
Tore
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Grid
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Cylinder
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Cube
<
PFP3
>;
template
class
Algo
::
Surface
::
Tilings
::
Triangular
::
Tore
<
PFP3
>;
int
test_triangular
()
...
...
Apps/Tests/Algo/Tiling/Volume/cubic.cpp
View file @
e00e38d9
...
...
@@ -17,8 +17,8 @@ struct PFP2 : public PFP_DOUBLE
};
template
Algo
::
Volume
::
Tilings
::
Cubic
::
Grid
<
PFP1
>;
template
Algo
::
Volume
::
Tilings
::
Cubic
::
Grid
<
PFP2
>;
template
class
Algo
::
Volume
::
Tilings
::
Cubic
::
Grid
<
PFP1
>;
template
class
Algo
::
Volume
::
Tilings
::
Cubic
::
Grid
<
PFP2
>;
int
test_cubic
()
...
...
CGoGN/include/Algo/Selection/collector.h
View file @
e00e38d9
...
...
@@ -30,6 +30,8 @@
#include "Topology/generic/traversor/traversor2.h"
#include <algorithm>
/*****************************************
* Class hierarchy :
* Collector (virtual)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment