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
OpenMesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenMesh
OpenMesh
Commits
9a1247cc
Commit
9a1247cc
authored
Apr 05, 2018
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More cppcheck fixes
parent
76e33791
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
19 deletions
+19
-19
src/OpenMesh/Apps/VDProgMesh/mkbalancedpm/mkbalancedpm.cc
src/OpenMesh/Apps/VDProgMesh/mkbalancedpm/mkbalancedpm.cc
+1
-1
src/OpenMesh/Tools/Subdivider/Adaptive/Composite/RulesT.hh
src/OpenMesh/Tools/Subdivider/Adaptive/Composite/RulesT.hh
+18
-18
No files found.
src/OpenMesh/Apps/VDProgMesh/mkbalancedpm/mkbalancedpm.cc
View file @
9a1247cc
...
...
@@ -89,7 +89,7 @@ public:
public:
/// Constructor
ModBalancerT
(
D
&
_dec
)
explicit
ModBalancerT
(
D
&
_dec
)
:
BaseModQ
(
_dec
),
max_level_
(
0
),
n_roots_
(
0
),
n_vertices_
(
0
)
{
...
...
src/OpenMesh/Tools/Subdivider/Adaptive/Composite/RulesT.hh
View file @
9a1247cc
...
...
@@ -104,7 +104,7 @@ public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
Tvv3
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
Base
::
set_subdiv_type
(
3
);
};
explicit
Tvv3
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
Base
::
set_subdiv_type
(
3
);
};
void
raise
(
typename
M
::
FaceHandle
&
_fh
,
state_t
_target_state
);
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
...
...
@@ -129,7 +129,7 @@ public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
Tvv4
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
Base
::
set_subdiv_type
(
4
);
};
explicit
Tvv4
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
Base
::
set_subdiv_type
(
4
);
};
void
raise
(
typename
M
::
FaceHandle
&
_fh
,
state_t
_target_state
);
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
...
...
@@ -157,7 +157,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
VF
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
VF
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
FaceHandle
&
_fh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Edge
)
...
...
@@ -179,7 +179,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
FF
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
FF
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
FaceHandle
&
_fh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Vertex
)
// avoid warning
...
...
@@ -201,7 +201,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
FFc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
FFc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
FaceHandle
&
_fh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Vertex
)
// avoid warning
...
...
@@ -223,7 +223,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
FV
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
FV
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -245,7 +245,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
FVc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
init_coeffs
(
50
);
}
explicit
FVc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
init_coeffs
(
50
);
}
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -282,7 +282,7 @@ public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
VV
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
VV
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -304,7 +304,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
VVc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
VVc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -326,7 +326,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
VE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
VE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
EdgeHandle
&
_eh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -348,7 +348,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
VdE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
VdE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
EdgeHandle
&
_eh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -370,7 +370,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
VdEc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
VdEc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
EdgeHandle
&
_eh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -392,7 +392,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
EV
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
EV
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -415,7 +415,7 @@ public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
EVc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
init_coeffs
(
50
);
}
explicit
EVc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{
init_coeffs
(
50
);
}
void
raise
(
typename
M
::
VertexHandle
&
_vh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -451,7 +451,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
EF
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
EF
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
FaceHandle
&
_fh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Edge
)
// avoid warning
...
...
@@ -473,7 +473,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
FE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
FE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
EdgeHandle
&
_eh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -495,7 +495,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
EdE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
EdE
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
EdgeHandle
&
_eh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
@@ -517,7 +517,7 @@ private:
public:
typedef
RuleInterfaceT
<
M
>
Inherited
;
EdEc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
explicit
EdEc
(
M
&
_mesh
)
:
Inherited
(
_mesh
)
{}
void
raise
(
typename
M
::
EdgeHandle
&
_eh
,
state_t
_target_state
);
MIPS_WARN_WA
(
Face
)
// avoid warning
...
...
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