5 changed files with 27 additions and 19 deletions
@ -1,11 +0,0 @@ |
|||
#include "ofxPiMapper.h" |
|||
|
|||
ofxPiMapper::ofxPiMapper() |
|||
{ |
|||
|
|||
} |
|||
|
|||
ofxPiMapper::~ofxPiMapper() |
|||
{ |
|||
|
|||
} |
@ -1,13 +1,6 @@ |
|||
#ifndef H_OFX_PI_MAPPER |
|||
#define H_OFX_PI_MAPPER |
|||
|
|||
#include "ofMain.h" |
|||
|
|||
class ofxPiMapper |
|||
{ |
|||
public: |
|||
ofxPiMapper(); |
|||
~ofxPiMapper(); |
|||
}; |
|||
#include "ofxTriangleSurface.h" |
|||
|
|||
#endif |
@ -0,0 +1,11 @@ |
|||
#include "ofxTriangleSurface.h" |
|||
|
|||
ofxTriangleSurface::ofxTriangleSurface() |
|||
{ |
|||
cout << "ofxTriangleSurface constructor." << endl; |
|||
} |
|||
|
|||
ofxTriangleSurface::~ofxTriangleSurface() |
|||
{ |
|||
cout << "ofxTriangleSurface destructor." << endl; |
|||
} |
@ -0,0 +1,13 @@ |
|||
#ifndef H_OFX_TRIANGLE_SURFACE |
|||
#define H_OFX_TRIANGLE_SURFACE |
|||
|
|||
#include "ofMain.h" |
|||
|
|||
class ofxTriangleSurface |
|||
{ |
|||
public: |
|||
ofxTriangleSurface(); |
|||
~ofxTriangleSurface(); |
|||
}; |
|||
|
|||
#endif |
Loading…
Reference in new issue