HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_Circle.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: SOP Library (C++)
7  *
8  * COMMENTS:
9  *
10  */
11 
12 #ifndef __SOP_Circle_h__
13 #define __SOP_Circle_h__
14 
15 #include "SOP_API.h"
16 #include <SYS/SYS_Math.h>
17 #include "SOP_Node.h"
18 
19 class SOP_API SOP_Circle : public SOP_Node
20 {
21 public:
22  SOP_Circle(OP_Network *net, const char *name, OP_Operator *entry);
23  ~SOP_Circle() override;
24 
25  static OP_Node *myConstructor(OP_Network *net,
26  const char *name, OP_Operator *entry);
27  static PRM_Template *buildTemplates();
28  const SOP_NodeVerb *cookVerb() const override;
29 
30 protected:
31  OP_ERROR cookMySop(OP_Context &context) override;
32 };
33 
34 #endif
virtual const SOP_NodeVerb * cookVerb() const
Definition: SOP_Node.h:906
UT_ErrorSeverity
Definition: UT_Error.h:25
GLuint const GLchar * name
Definition: glcorearb.h:786
#define SOP_API
Definition: SOP_API.h:10
virtual OP_ERROR cookMySop(OP_Context &context)=0