blob: 5af106fe1d922071804f000176a0f3a369f764e2 (
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
|
#ifndef shaveCutCtxCmd_h
#define shaveCutCtxCmd_h
// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962
#include <maya/MPxContextCommand.h>
#include "shaveCursorCtxCmd.h"
class shaveCutCtxCmd : public shaveCursorCtxCmd
{
public:
shaveCutCtxCmd();
virtual ~shaveCutCtxCmd();
static void* createCmd() { return new shaveCutCtxCmd; }
virtual shaveCursorCtx* createContext();
static const MString commandName;
};
#endif
|