More robust path iteration code.

This commit is contained in:
Mikko Mononen
2010-02-12 13:04:55 +00:00
parent 668484eb14
commit 5ade5a3052
16 changed files with 2480 additions and 420 deletions

View File

@@ -205,6 +205,12 @@ void Sample::handleClick(const float* p, bool shift)
m_tool->handleClick(p, shift);
}
void Sample::handleStep()
{
if (m_tool)
m_tool->handleStep();
}
bool Sample::handleBuild()
{
return true;