You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
608 B
29 lines
608 B
#pragma once
|
|
|
|
#include "Application.h"
|
|
#include "ofEvents.h"
|
|
#include "ofLog.h"
|
|
#include "ofGraphics.h"
|
|
#include "SelNextTexCoordCmd.h"
|
|
#include "SelPrevTexCoordCmd.h"
|
|
#include "DeselectTexCoordCmd.h"
|
|
#include "SetNextSourceCmd.h"
|
|
#include "SelNextSurfaceCmd.h"
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
|
|
class TextureMappingState : public ApplicationBaseState {
|
|
|
|
public:
|
|
static TextureMappingState * instance();
|
|
void draw(Application * app);
|
|
void onKeyPressed(Application * app, ofKeyEventArgs & args);
|
|
|
|
private:
|
|
static TextureMappingState * _instance;
|
|
|
|
};
|
|
|
|
} // namespace piMapper
|
|
} // namespace ofx
|
|
|