Browse Source

Add ofxPiMapper::selectNext and PrevTexCoord()

master
Krisjanis Rijnieks 8 years ago
parent
commit
d28b49a9f5
  1. 8
      src/ofxPiMapper.cpp
  2. 2
      src/ofxPiMapper.h

8
src/ofxPiMapper.cpp

@ -107,6 +107,14 @@ void ofxPiMapper::selectPrevVertex(){
_application.selectPrevVertex(); _application.selectPrevVertex();
} }
void ofxPiMapper::selectNextTexCoord(){
_application.selectNextTexCoord();
}
void ofxPiMapper::selectPrevTexCoord(){
_application.selectPrevTexCoord();
}
void ofxPiMapper::moveLayerUp(){ void ofxPiMapper::moveLayerUp(){
_application.moveLayerUp(); _application.moveLayerUp();
} }

2
src/ofxPiMapper.h

@ -54,6 +54,8 @@ class ofxPiMapper {
void duplicateSurface(); void duplicateSurface();
void selectNextVertex(); void selectNextVertex();
void selectPrevVertex(); void selectPrevVertex();
void selectNextTexCoord();
void selectPrevTexCoord();
void moveLayerUp(); void moveLayerUp();
void moveLayerDown(); void moveLayerDown();
void scaleUp(); void scaleUp();

Loading…
Cancel
Save