Added support for binary PLY files. Added support for specifying the ground plane height. Added support for centimeters. Improved the progress reporting

This commit is contained in:
Uriah Liggett
2015-04-20 01:25:40 +00:00
parent da4bcb0023
commit c53eae2db1
26 changed files with 442 additions and 293 deletions

View File

@@ -32,6 +32,7 @@ CriticalSection::CriticalSection()
}
}
CriticalSection::~CriticalSection()
{
if (pthread_mutex_destroy(&m_handle) != 0)
@@ -40,6 +41,7 @@ CriticalSection::~CriticalSection()
}
}
void CriticalSection::enter()
{
if (pthread_mutex_lock(&m_handle) != 0)