mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 01:36:56 +02:00
untabify the source files
This commit is contained in:
parent
36c3131524
commit
95839dd64e
3 changed files with 180 additions and 179 deletions
|
@ -103,7 +103,8 @@ vhacd::VHACDUtil:: ~VHACDUtil(){
|
||||||
}
|
}
|
||||||
|
|
||||||
//ProgressClaback implementation
|
//ProgressClaback implementation
|
||||||
void vhacd::ProgressCallback::Update(const double overallProgress, const double stageProgress, const double operationProgress, const char * const stage, const char * const operation){
|
void vhacd::ProgressCallback::Update(const double overallProgress, const double stageProgress, const double operationProgress,
|
||||||
|
const char * const stage, const char * const operation){
|
||||||
int progress = (int)(overallProgress + 0.5);
|
int progress = (int)(overallProgress + 0.5);
|
||||||
|
|
||||||
if (progress < 10)
|
if (progress < 10)
|
||||||
|
|
|
@ -48,7 +48,8 @@ namespace vhacd{
|
||||||
~ProgressCallback();
|
~ProgressCallback();
|
||||||
|
|
||||||
//Couldn't follow coding guideline here due to virtual function declared in IUserCallback
|
//Couldn't follow coding guideline here due to virtual function declared in IUserCallback
|
||||||
void Update(const double overallProgress, const double stageProgress, const double operationProgress, const char * const stage, const char * const operation);
|
void Update(const double overallProgress, const double stageProgress, const double operationProgress,
|
||||||
|
const char * const stage, const char * const operation);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#endif //hifi_VHACDUtil_h
|
#endif //hifi_VHACDUtil_h
|
|
@ -100,7 +100,6 @@ int main(int argc, char * argv[]){
|
||||||
cout << "\t" << "Number Of Hulls : " << chList.count() << endl;
|
cout << "\t" << "Number Of Hulls : " << chList.count() << endl;
|
||||||
|
|
||||||
for (int j = 0; j < results.convexHullList.at(i).count(); j++){
|
for (int j = 0; j < results.convexHullList.at(i).count(); j++){
|
||||||
|
|
||||||
cout << "\tHUll : " << j + 1 << endl;
|
cout << "\tHUll : " << j + 1 << endl;
|
||||||
cout << "\t\tNumber Of Points : " << chList.at(j).m_nPoints << endl;
|
cout << "\t\tNumber Of Points : " << chList.at(j).m_nPoints << endl;
|
||||||
cout << "\t\tNumber Of Triangles : " << chList.at(j).m_nTriangles << endl;
|
cout << "\t\tNumber Of Triangles : " << chList.at(j).m_nTriangles << endl;
|
||||||
|
|
Loading…
Reference in a new issue