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.
32 lines
514 B
32 lines
514 B
#pragma once
|
|
|
|
#include "SurfaceManager.h"
|
|
#include "BaseCmd.h"
|
|
#include "GridWarpSurface.h"
|
|
#include "ProjectionEditorWidget.h"
|
|
#include "Vec2.h"
|
|
#include "Vec3.h"
|
|
|
|
class ofxPiMapper;
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
|
|
class RmGridColCmd : public BaseUndoCmd {
|
|
|
|
public:
|
|
RmGridColCmd(GridWarpSurface * s);
|
|
void exec();
|
|
void undo();
|
|
|
|
private:
|
|
std::vector<Vec3> _vertices;
|
|
std::vector<Vec2> _texCoords;
|
|
GridWarpSurface * _surface;
|
|
bool _doNotUndo;
|
|
|
|
};
|
|
|
|
} // namespace piMapper
|
|
} // namespace ofx
|
|
|
|
|