Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
Unterteilungsalgorithmen
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kai Westerkamp
Unterteilungsalgorithmen
Commits
dc1138ed
Commit
dc1138ed
authored
Jul 07, 2016
by
Philipp Adolf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use bool instead of boolean
parent
8e20b734
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
subdivision.cpp
QTProject/subdivision.cpp
+1
-1
subdivision.h
QTProject/subdivision.h
+2
-2
No files found.
QTProject/subdivision.cpp
View file @
dc1138ed
...
...
@@ -11,7 +11,7 @@ Subdivision::~Subdivision()
delete
edgeShader
;
}
void
Subdivision
::
setDebugOutbut
(
bool
ean
debug
){
void
Subdivision
::
setDebugOutbut
(
bool
debug
){
this
->
debugOutput
=
debug
;
}
...
...
QTProject/subdivision.h
View file @
dc1138ed
...
...
@@ -14,10 +14,10 @@ public:
void
init
();
Mesh
*
subdivide
(
Mesh
*
mesh
);
void
setDebugOutbut
(
bool
ean
debug
);
void
setDebugOutbut
(
bool
debug
);
private
:
bool
ean
debugOutput
;
bool
debugOutput
;
struct
Input
{
...
...
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