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
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KennethVanhoey
CGoGN
Commits
6b5d560c
Commit
6b5d560c
authored
Apr 04, 2014
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
solve compilation pb on Windows
parent
a505d87d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
Apps/SandBox/multi_att.cpp
Apps/SandBox/multi_att.cpp
+4
-4
include/Topology/generic/traversorCell.hpp
include/Topology/generic/traversorCell.hpp
+3
-3
src/Utils/compress.cpp
src/Utils/compress.cpp
+1
-0
No files found.
Apps/SandBox/multi_att.cpp
View file @
6b5d560c
...
...
@@ -50,10 +50,10 @@ struct PFP: public PFP_STANDARD
typedef
EmbeddedMap2
MAP
;
};
typedef
typename
PFP
::
MAP
MAP
;
typedef
typename
PFP
::
MAP
::
IMPL
MAP_IMPL
;
typedef
typename
PFP
::
VEC3
VEC3
;
typedef
typename
PFP
::
VEC4
VEC4
;
typedef
PFP
::
MAP
MAP
;
typedef
PFP
::
MAP
::
IMPL
MAP_IMPL
;
typedef
PFP
::
VEC3
VEC3
;
typedef
PFP
::
VEC4
VEC4
;
/**
* Simple example of function that work with generic type of attribute
...
...
include/Topology/generic/traversorCell.hpp
View file @
6b5d560c
...
...
@@ -79,7 +79,7 @@ Dart TraversorCell<MAP, ORBIT>::begin()
}
current
=
m
.
begin
()
;
while
(
current
!=
m
.
end
()
&&
(
m
.
template
isBoundaryMarked
(
dimension
,
current
)
))
while
(
current
!=
m
.
end
()
&&
(
m
.
isBoundaryMarked
(
dimension
,
current
)
))
m
.
next
(
current
)
;
if
(
current
==
m
.
end
())
...
...
@@ -122,7 +122,7 @@ Dart TraversorCell<MAP, ORBIT>::next()
if
(
dmark
)
{
bool
ismarked
=
dmark
->
isMarked
(
current
)
;
while
(
current
!=
NIL
&&
(
ismarked
||
m
.
template
isBoundaryMarked
(
dimension
,
current
)))
while
(
current
!=
NIL
&&
(
ismarked
||
m
.
isBoundaryMarked
(
dimension
,
current
)))
{
m
.
next
(
current
)
;
if
(
current
==
m
.
end
())
...
...
@@ -136,7 +136,7 @@ Dart TraversorCell<MAP, ORBIT>::next()
else
{
bool
ismarked
=
cmark
->
isMarked
(
current
)
;
while
(
current
!=
NIL
&&
(
ismarked
||
m
.
template
isBoundaryMarked
(
dimension
,
current
)
))
while
(
current
!=
NIL
&&
(
ismarked
||
m
.
isBoundaryMarked
(
dimension
,
current
)
))
{
m
.
next
(
current
)
;
if
(
current
==
m
.
end
())
...
...
src/Utils/compress.cpp
View file @
6b5d560c
...
...
@@ -29,6 +29,7 @@
#include <iostream>
#include <vector>
#include <string.h>
#include <algorithm>
namespace
CGoGN
{
...
...
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