feat: setup GopTransform
This commit is contained in:
15
src/OpDefs/GopTransform.hpp
Normal file
15
src/OpDefs/GopTransform.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include "Engine/Operator/GeometryOpDef.h"
|
||||
|
||||
class GopTransform
|
||||
: public enzo::nt::GeometryOpDef
|
||||
{
|
||||
public:
|
||||
GopTransform(enzo::nt::OpId opId);
|
||||
virtual void cookOp();
|
||||
static enzo::nt::GeometryOpDef* ctor(enzo::nt::OpId opId)
|
||||
{
|
||||
return new GopTransform(opId);
|
||||
}
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user