blob: fdb025fc85a369d474715dd9d0c453084f2d5578 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef shaveRenderCmd_h
#define shaveRenderCmd_h
// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962
#include <maya/MArgList.h>
#include <maya/MPxCommand.h>
#include <maya/MSyntax.h>
#include <maya/MString.h>
class shaveRenderCmd : public MPxCommand
{
public:
shaveRenderCmd();
virtual ~shaveRenderCmd();
MStatus doIt( const MArgList& args );
bool isUndoable() const;
static void* createCmd();
static MSyntax createSyntax();
static const MString commandName;
private:
};
inline bool shaveRenderCmd::isUndoable() const
{ return false; }
#endif
|