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
P
Plugin-IsotropicRemesher
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
Packages & Registries
Packages & Registries
Container Registry
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
OpenFlipper-Free
Plugin-IsotropicRemesher
Commits
dd1b47bb
Commit
dd1b47bb
authored
Feb 06, 2017
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More cppcheck warnings
parent
aee43b4a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
IsotropicRemesherT.hh
IsotropicRemesherT.hh
+1
-1
IsotropicRemesherToolbox.hh
IsotropicRemesherToolbox.hh
+1
-1
ProgressEmitter.hh
ProgressEmitter.hh
+1
-1
No files found.
IsotropicRemesherT.hh
View file @
dd1b47bb
...
...
@@ -57,7 +57,7 @@ class IsotropicRemesher{
public:
IsotropicRemesher
(
ProgressEmitter
*
_prgEmt
=
NULL
)
:
prgEmt_
(
_prgEmt
)
{};
explicit
IsotropicRemesher
(
ProgressEmitter
*
_prgEmt
=
NULL
)
:
prgEmt_
(
_prgEmt
)
{};
~
IsotropicRemesher
()
{};
void
remesh
(
MeshT
&
_mesh
,
const
double
_targetEdgeLength
);
...
...
IsotropicRemesherToolbox.hh
View file @
dd1b47bb
...
...
@@ -66,7 +66,7 @@ class IsotropicRemesherToolBox : public QWidget, public Ui::IsotropicRemesherToo
void
showing
();
public:
IsotropicRemesherToolBox
(
QWidget
*
parent
=
0
);
explicit
IsotropicRemesherToolBox
(
QWidget
*
parent
=
0
);
protected:
void
showEvent
(
QShowEvent
*
_event
);
...
...
ProgressEmitter.hh
View file @
dd1b47bb
...
...
@@ -62,7 +62,7 @@ class ProgressEmitter : public QObject
void
changeDescription
(
QString
_jobId
,
QString
_description
);
public:
ProgressEmitter
(
QString
_jobId
)
:
jobId_
(
_jobId
)
{}
explicit
ProgressEmitter
(
QString
_jobId
)
:
jobId_
(
_jobId
)
{}
void
sendProgressSignal
(
double
_percent
)
{
emit
signalJobState
(
jobId_
,
(
int
)
_percent
);
...
...
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