+ Proper handling of sketch plane parallel to view direction

This commit is contained in:
wmayer
2014-09-27 15:53:21 +02:00
parent f87bd2ac35
commit f0bf3cb6ab
3 changed files with 67 additions and 23 deletions

View File

@@ -304,6 +304,23 @@ RuntimeError::RuntimeError(const RuntimeError &inst)
// ---------------------------------------------------------
DivisionByZeroError::DivisionByZeroError(const char * sMessage)
: Exception(sMessage)
{
}
DivisionByZeroError::DivisionByZeroError(const std::string& sMessage)
: Exception(sMessage)
{
}
DivisionByZeroError::DivisionByZeroError(const DivisionByZeroError &inst)
: Exception(inst)
{
}
// ---------------------------------------------------------
#if defined(__GNUC__) && defined (FC_OS_LINUX)
#include <stdexcept>
#include <iostream>