blob: a3802d90374b7a681a970e8e688a6c2388d28d58 (
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
|
#ifndef shavePadCmd_h
#define shavePadCmd_h
// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962
#include <maya/MArgList.h>
#include <maya/MPxCommand.h>
#include <maya/MString.h>
#include <maya/MSyntax.h>
class shavePadCmd : public MPxCommand
{
public:
shavePadCmd();
virtual ~shavePadCmd();
MStatus doIt( const MArgList& args );
bool isUndoable() const;
static void* createCmd();
static MSyntax createSyntax() { MSyntax syntax; return syntax; }
static const MString commandName;
private:
};
inline bool shavePadCmd::isUndoable() const
{ return false; }
#endif
|