blob: 59690950f5cc8b64431ef6ae69c314d52cf9bee5 (
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
|
// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962
#include <maya/MArgParser.h>
#include <maya/MGlobal.h>
#include <maya/MString.h>
#include <maya/MSyntax.h>
#include "shaveCutCtx.h"
#include "shaveCutCtxCmd.h"
#include "shaveCursorCtxCmd.h"
const MString shaveCutCtxCmd::commandName = "shaveCutCtx";
shaveCutCtxCmd::shaveCutCtxCmd()
{}
shaveCutCtxCmd::~shaveCutCtxCmd()
{}
shaveCursorCtx* shaveCutCtxCmd::createContext()
{
return new shaveCutCtx;
}
|