Browse Source

Add ofxTriangleSurface placeholder

master
Krisjanis Rijnieks 11 years ago
parent
commit
52883ccbbb
  1. 2
      example/src/ofApp.h
  2. 11
      src/ofxPiMapper.cpp
  3. 9
      src/ofxPiMapper.h
  4. 11
      src/ofxTriangleSurface.cpp
  5. 13
      src/ofxTriangleSurface.h

2
example/src/ofApp.h

@ -15,6 +15,8 @@ public:
void mousePressed(int x, int y, int button);
void mouseReleased(int x, int y, int button);
void mouseDragged(int x, int y, int button);
ofxTriangleSurface triangleSurface;
};
#endif

11
src/ofxPiMapper.cpp

@ -1,11 +0,0 @@
#include "ofxPiMapper.h"
ofxPiMapper::ofxPiMapper()
{
}
ofxPiMapper::~ofxPiMapper()
{
}

9
src/ofxPiMapper.h

@ -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

11
src/ofxTriangleSurface.cpp

@ -0,0 +1,11 @@
#include "ofxTriangleSurface.h"
ofxTriangleSurface::ofxTriangleSurface()
{
cout << "ofxTriangleSurface constructor." << endl;
}
ofxTriangleSurface::~ofxTriangleSurface()
{
cout << "ofxTriangleSurface destructor." << endl;
}

13
src/ofxTriangleSurface.h

@ -0,0 +1,13 @@
#ifndef H_OFX_TRIANGLE_SURFACE
#define H_OFX_TRIANGLE_SURFACE
#include "ofMain.h"
class ofxTriangleSurface
{
public:
ofxTriangleSurface();
~ofxTriangleSurface();
};
#endif
Loading…
Cancel
Save