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
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
David Cazier
CGoGN
Commits
bdbe88ff
Commit
bdbe88ff
authored
Jun 04, 2015
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugs
parent
66af095d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
Apps/Tests/Algo/Histogram/CMakeLists.txt
Apps/Tests/Algo/Histogram/CMakeLists.txt
+1
-1
Apps/Tests/Utils/CMakeLists.txt
Apps/Tests/Utils/CMakeLists.txt
+1
-0
CGoGN/include/Algo/ProgressiveMesh/pmesh.h
CGoGN/include/Algo/ProgressiveMesh/pmesh.h
+1
-1
CGoGN/include/Utils/textures.hpp
CGoGN/include/Utils/textures.hpp
+1
-1
No files found.
Apps/Tests/Algo/Histogram/CMakeLists.txt
View file @
bdbe88ff
cmake_minimum_required
(
VERSION 2.6
)
project
(
testing_algo_histogram
)
add_executable
(
test_algo_histogram
algo_histogram.cpp
histogram.cpp
...
...
Apps/Tests/Utils/CMakeLists.txt
View file @
bdbe88ff
...
...
@@ -16,3 +16,4 @@ add_executable( test_utils
target_link_libraries
(
test_utils
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
qt_use_cgogn_modules
(
test_utils
)
CGoGN/include/Algo/ProgressiveMesh/pmesh.h
View file @
bdbe88ff
...
...
@@ -76,7 +76,7 @@ private:
std
::
vector
<
VEC3
>
originalDetailVectors
;
bool
quantizationInitialized
,
quantizationApplied
;
Algo
::
PMesh
::
Quantization
<
VEC3
>*
q
;
Utils
::
Quantization
<
VEC3
>*
q
;
public:
ProgressiveMesh
(
...
...
CGoGN/include/Utils/textures.hpp
View file @
bdbe88ff
...
...
@@ -109,7 +109,7 @@ void ImageData<DIM,TYPE>::computeSub()
template < unsigned int DIM, typename TYPE >
void ImageData<DIM,TYPE>::create(TYPE* data, const COORD& size)
{
else
if
(
m_data_ptr
!=
NULL
)
if (m_data_ptr!=NULL)
{
delete[] m_data_ptr;
}
...
...
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