diff --git a/src/Application/ProjectionMappingState.cpp b/src/Application/ProjectionMappingState.cpp index fda934d..5beb82c 100644 --- a/src/Application/ProjectionMappingState.cpp +++ b/src/Application/ProjectionMappingState.cpp @@ -129,6 +129,14 @@ void ProjectionMappingState::onKeyPressed(Application * app, ofKeyEventArgs & ar app->getCmdManager()->exec(new SelPrevSurfaceCmd(app->getSurfaceManager())); break; + case '>': + app->getCmdManager()->exec(new SelNextVertexCmd(app->getSurfaceManager())); + break; + + case '<': + app->getCmdManager()->exec(new SelPrevVertexCmd(app->getSurfaceManager())); + break; + default: break; } diff --git a/src/Application/ProjectionMappingState.h b/src/Application/ProjectionMappingState.h index a1b58fd..4905b44 100644 --- a/src/Application/ProjectionMappingState.h +++ b/src/Application/ProjectionMappingState.h @@ -12,6 +12,8 @@ #include "RmGridColCmd.h" #include "SelNextSurfaceCmd.h" #include "SelPrevSurfaceCmd.h" +#include "SelNextVertexCmd.h" +#include "SelPrevVertexCmd.h" #include "TogglePerspectiveCmd.h" #include "SurfaceType.h"