HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_EdgeStraighten.proto.h
Go to the documentation of this file.
1 /* Automagically Generated by generate_proto.py
2  * Do not Edit
3  */
4 #pragma once
5 
6 #include <SOP/SOP_API.h>
7 #include <SOP/SOP_NodeVerb.h>
8 #include <SOP/SOP_GraphProxy.h>
9 
10 #include <OP/OP_Utils.h>
11 #include <PRM/PRM_Parm.h>
12 #include <UT/UT_IStream.h>
13 #include <UT/UT_NTStreamUtil.h>
14 #include <UT/UT_Ramp.h>
15 #include <UT/UT_SharedPtr.h>
16 #include <UT/UT_StringHolder.h>
17 #include <UT/UT_StringStream.h>
18 #include <UT/UT_VectorTypes.h>
19 #include <UT/UT_EnvControl.h>
20 #include <SYS/SYS_Types.h>
21 
22 class DEP_MicroNode;
23 namespace SOP_EdgeStraightenEnums
24 {
25  enum class Grouptype
26  {
27  EDGES = 0,
28  POINTS,
29  VERTICES
30  };
31 
33  getToken(Grouptype enum_value)
34  {
35  using namespace UT::Literal;
36  switch (enum_value) {
37  case Grouptype::EDGES: return "edges"_sh;
38  case Grouptype::POINTS: return "points"_sh;
39  case Grouptype::VERTICES: return "vertices"_sh;
40  default: UT_ASSERT(false); return ""_sh;
41  }
42  }
43 
44 }
45 
46 
48 {
49 public:
50  static int version() { return 1; }
51 
53  {
54  myGroup = ""_UTsh;
55  myGrouptype = 0;
56  myOutputedgegroup = ""_UTsh;
57 
58  }
59 
60  explicit SOP_EdgeStraightenParms(const SOP_EdgeStraightenParms &) = default;
62  SOP_EdgeStraightenParms(SOP_EdgeStraightenParms &&) noexcept = default;
63  SOP_EdgeStraightenParms &operator=(SOP_EdgeStraightenParms &&) noexcept = default;
64 
65  ~SOP_EdgeStraightenParms() override {}
66 
68  {
69  if (myGroup != src.myGroup) return false;
70  if (myGrouptype != src.myGrouptype) return false;
71  if (myOutputedgegroup != src.myOutputedgegroup) return false;
72 
73  return true;
74  }
76  {
77  return !operator==(src);
78  }
80 
81 
82 
83  void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
84  {
85  myGroup = ""_UTsh;
86  if (true)
87  graph->evalOpParm(myGroup, nodeidx, "group", time, 0);
88  myGrouptype = 0;
89  if (true)
90  graph->evalOpParm(myGrouptype, nodeidx, "grouptype", time, 0);
91  myOutputedgegroup = ""_UTsh;
92  if (true)
93  graph->evalOpParm(myOutputedgegroup, nodeidx, "outputedgegroup", time, 0);
94 
95  }
96 
97 
98  void loadFromOpSubclass(const LoadParms &loadparms) override
99  {
100  buildFromOp(loadparms.graph(), loadparms.nodeIdx(), loadparms.context().getTime(), loadparms.depnode());
101  }
102 
103 
104  void copyFrom(const OP_NodeParms *src) override
105  {
106  *this = *((const SOP_EdgeStraightenParms *)src);
107  }
108 
109  template <typename T>
110  void
111  doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
112  {
113  if (idx.size() < 1)
114  return;
115  UT_ASSERT(idx.size() == instance.size()+1);
116  if (idx.size() != instance.size()+1)
117  return;
118  switch (idx[0])
119  {
120  case 0:
121  coerceValue(value, myGroup);
122  break;
123  case 1:
124  coerceValue(value, myGrouptype);
125  break;
126  case 2:
127  coerceValue(value, myOutputedgegroup);
128  break;
129 
130  }
131  }
132 
133  bool isParmColorRamp(exint idx) const override
134  {
135  switch (idx)
136  {
137 
138  }
139  return false;
140  }
141 
142  void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
143  { doGetParmValue(idx, instance, value); }
144  void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
145  { doGetParmValue(idx, instance, value); }
146  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
147  { doGetParmValue(idx, instance, value); }
148  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
149  { doGetParmValue(idx, instance, value); }
150  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
151  { doGetParmValue(idx, instance, value); }
152  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
153  { doGetParmValue(idx, instance, value); }
154  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
155  { doGetParmValue(idx, instance, value); }
156  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
157  { doGetParmValue(idx, instance, value); }
158  void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
159  { doGetParmValue(idx, instance, value); }
160  void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr<UT_Ramp> &value) const override
161  { doGetParmValue(idx, instance, value); }
162  void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
163  { doGetParmValue(idx, instance, value); }
164 
165  template <typename T>
166  void
167  doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
168  {
169  if (idx.size() < 1)
170  return;
171  UT_ASSERT(idx.size() == instance.size()+1);
172  if (idx.size() != instance.size()+1)
173  return;
174  switch (idx[0])
175  {
176  case 0:
177  coerceValue(myGroup, ( ( value ) ));
178  break;
179  case 1:
180  coerceValue(myGrouptype, clampMinValue(0, clampMaxValue(2, value ) ));
181  break;
182  case 2:
183  coerceValue(myOutputedgegroup, ( ( value ) ));
184  break;
185 
186  }
187  }
188 
189  void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
190  { doSetParmValue(idx, instance, value); }
191  void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
192  { doSetParmValue(idx, instance, value); }
193  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
194  { doSetParmValue(idx, instance, value); }
195  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
196  { doSetParmValue(idx, instance, value); }
197  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
198  { doSetParmValue(idx, instance, value); }
199  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
200  { doSetParmValue(idx, instance, value); }
201  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
202  { doSetParmValue(idx, instance, value); }
203  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
204  { doSetParmValue(idx, instance, value); }
205  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
206  { doSetParmValue(idx, instance, value); }
207  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr<UT_Ramp> &value) override
208  { doSetParmValue(idx, instance, value); }
209  void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
210  { doSetParmValue(idx, instance, value); }
211 
212  exint getNestNumParms(TempIndex idx) const override
213  {
214  if (idx.size() == 0)
215  return 3;
216  switch (idx[0])
217  {
218 
219  }
220  // Invalid
221  return 0;
222  }
223 
224  const char *getNestParmName(TempIndex fieldnum) const override
225  {
226  if (fieldnum.size() < 1)
227  return 0;
228  switch (fieldnum[0])
229  {
230  case 0:
231  return "group";
232  case 1:
233  return "grouptype";
234  case 2:
235  return "outputedgegroup";
236 
237  }
238  return 0;
239  }
240 
241  ParmType getNestParmType(TempIndex fieldnum) const override
242  {
243  if (fieldnum.size() < 1)
244  return PARM_UNSUPPORTED;
245  switch (fieldnum[0])
246  {
247  case 0:
248  return PARM_STRING;
249  case 1:
250  return PARM_INTEGER;
251  case 2:
252  return PARM_STRING;
253 
254  }
255  return PARM_UNSUPPORTED;
256  }
257 
258  // Boiler plate to load individual types.
259  static void loadData(UT_IStream &is, int64 &v)
260  { is.bread(&v, 1); }
261  static void loadData(UT_IStream &is, bool &v)
262  { int64 iv; is.bread(&iv, 1); v = iv; }
263  static void loadData(UT_IStream &is, fpreal64 &v)
264  { is.bread<fpreal64>(&v, 1); }
265  static void loadData(UT_IStream &is, UT_Vector2D &v)
266  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1); }
267  static void loadData(UT_IStream &is, UT_Vector3D &v)
268  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
269  is.bread<fpreal64>(&v.z(), 1); }
270  static void loadData(UT_IStream &is, UT_Vector4D &v)
271  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
272  is.bread<fpreal64>(&v.z(), 1); is.bread<fpreal64>(&v.w(), 1); }
273  static void loadData(UT_IStream &is, UT_Matrix2D &v)
274  { for (int r = 0; r < 2; r++) for (int c = 0; c < 2; c++) is.bread<fpreal64>(&v(r, c), 1); }
275  static void loadData(UT_IStream &is, UT_Matrix3D &v)
276  { for (int r = 0; r < 3; r++) for (int c = 0; c < 3; c++) is.bread<fpreal64>(&v(r, c), 1); }
277  static void loadData(UT_IStream &is, UT_Matrix4D &v)
278  { for (int r = 0; r < 4; r++) for (int c = 0; c < 4; c++) is.bread<fpreal64>(&v(r, c), 1); }
279  static void loadData(UT_IStream &is, UT_Vector2I &v)
280  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1); }
281  static void loadData(UT_IStream &is, UT_Vector3I &v)
282  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
283  is.bread<int64>(&v.z(), 1); }
284  static void loadData(UT_IStream &is, UT_Vector4I &v)
285  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
286  is.bread<int64>(&v.z(), 1); is.bread<int64>(&v.w(), 1); }
288  { is.bread(v); }
290  { UT_StringHolder rampdata;
291  loadData(is, rampdata);
292  if (rampdata.isstring())
293  {
294  v.reset(new UT_Ramp());
295  UT_IStream istr((const char *) rampdata, rampdata.length(), UT_ISTREAM_ASCII);
296  v->load(istr);
297  }
298  else v.reset();
299  }
302  loadData(is, data);
303  if (data.isstring())
304  {
305  // Find the data type.
306  const char *colon = UT_StringWrap(data).findChar(':');
307  if (colon)
308  {
309  int typelen = colon - data.buffer();
311  type.strncpy(data.buffer(), typelen);
312  UT_IStream istr(((const char *) data) + typelen + 1, data.length() - (typelen + 1), UT_ISTREAM_BINARY);
313 
314  v = PRM_DataFactory::parseBinary(type.buffer(), istr);
315  }
316  }
317  else v.reset();
318  }
319 
320  static void saveData(std::ostream &os, int64 v)
321  { UTwrite(os, &v); }
322  static void saveData(std::ostream &os, bool v)
323  { int64 iv = v; UTwrite(os, &iv); }
324  static void saveData(std::ostream &os, fpreal64 v)
325  { UTwrite<fpreal64>(os, &v); }
326  static void saveData(std::ostream &os, UT_Vector2D v)
327  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y()); }
328  static void saveData(std::ostream &os, UT_Vector3D v)
329  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
330  UTwrite<fpreal64>(os, &v.z()); }
331  static void saveData(std::ostream &os, UT_Vector4D v)
332  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
333  UTwrite<fpreal64>(os, &v.z()); UTwrite<fpreal64>(os, &v.w()); }
334  static void saveData(std::ostream &os, UT_Matrix2D v)
336  static void saveData(std::ostream &os, UT_Matrix3D v)
338  static void saveData(std::ostream &os, UT_Matrix4D v)
340  static void saveData(std::ostream &os, UT_StringHolder s)
341  { UT_StringWrap(s).saveBinary(os); }
342  static void saveData(std::ostream &os, UT_SharedPtr<UT_Ramp> s)
344  UT_OStringStream ostr;
345  if (s) s->save(ostr);
346  result = ostr.str();
347  saveData(os, result);
348  }
349  static void saveData(std::ostream &os, PRM_DataItemHandle s)
351  UT_OStringStream ostr;
352  if (s)
353  {
354  ostr << s->getDataTypeToken();
355  ostr << ":";
356  s->saveBinary(ostr);
357  }
358  result = ostr.str();
359  saveData(os, result);
360  }
361 
362 
363  void save(std::ostream &os) const
364  {
365  int32 v = version();
366  UTwrite(os, &v);
367  saveData(os, myGroup);
368  saveData(os, myGrouptype);
369  saveData(os, myOutputedgegroup);
370 
371  }
372 
373  bool load(UT_IStream &is)
374  {
375  int32 v;
376  is.bread(&v, 1);
377  if (version() != v)
378  {
379  // Fail incompatible versions
380  return false;
381  }
382  loadData(is, myGroup);
383  loadData(is, myGrouptype);
384  loadData(is, myOutputedgegroup);
385 
386  return true;
387  }
388 
389  const UT_StringHolder & getGroup() const { return myGroup; }
390  void setGroup(const UT_StringHolder & val) { myGroup = val; }
392  {
393  SOP_Node *thissop = cookparms.getNode();
394  if (!thissop) return getGroup();
396  OP_Utils::evalOpParm(result, thissop, "group", cookparms.getCookTime(), 0);
397  return result;
398  }
399  Grouptype getGrouptype() const { return Grouptype(myGrouptype); }
400  void setGrouptype(Grouptype val) { myGrouptype = int64(val); }
402  {
403  SOP_Node *thissop = cookparms.getNode();
404  if (!thissop) return getGrouptype();
405  int64 result;
406  OP_Utils::evalOpParm(result, thissop, "grouptype", cookparms.getCookTime(), 0);
407  return Grouptype(result);
408  }
409  const UT_StringHolder & getOutputedgegroup() const { return myOutputedgegroup; }
410  void setOutputedgegroup(const UT_StringHolder & val) { myOutputedgegroup = val; }
412  {
413  SOP_Node *thissop = cookparms.getNode();
414  if (!thissop) return getOutputedgegroup();
416  OP_Utils::evalOpParm(result, thissop, "outputedgegroup", cookparms.getCookTime(), 0);
417  return result;
418  }
419 
420 private:
421  UT_StringHolder myGroup;
422  int64 myGrouptype;
423  UT_StringHolder myOutputedgegroup;
424 
425 };
void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
static void saveData(std::ostream &os, UT_Matrix2D v)
void save(std::ostream &os) const
static void loadData(UT_IStream &is, UT_Vector4I &v)
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
int int32
Definition: SYS_Types.h:39
SOP_Node * getNode() const
Definition: SOP_NodeVerb.h:347
static void loadData(UT_IStream &is, UT_SharedPtr< UT_Ramp > &v)
static void loadData(UT_IStream &is, UT_Vector4D &v)
exint bread(int32 *buffer, exint asize=1)
GLboolean * data
Definition: glcorearb.h:131
GT_API const UT_StringHolder time
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector4.h:493
const GLdouble * v
Definition: glcorearb.h:837
fpreal getTime() const
Definition: OP_Context.h:62
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr< UT_Ramp > &value) override
void setGroup(const UT_StringHolder &val)
static void saveData(std::ostream &os, bool v)
static void loadData(UT_IStream &is, UT_Vector3I &v)
void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
const OP_Context & context() const
Definition: OP_NodeParms.h:97
static void loadData(UT_IStream &is, UT_StringHolder &v)
constexpr SYS_FORCE_INLINE T & z() noexcept
Definition: UT_Vector3.h:667
int64 exint
Definition: SYS_Types.h:125
static void loadData(UT_IStream &is, int64 &v)
SYS_FORCE_INLINE const char * buffer() const
GLdouble s
Definition: glad.h:3009
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
static void loadData(UT_IStream &is, UT_Vector2I &v)
static void saveData(std::ostream &os, UT_Vector4D v)
UT_StringHolder opGroup(const SOP_NodeVerb::CookParms &cookparms) const
An output stream object that owns its own string buffer storage.
const UT_StringHolder & getGroup() const
**But if you need a result
Definition: thread.h:613
static void loadData(UT_IStream &is, UT_Vector2D &v)
exint nodeIdx() const
Definition: OP_NodeParms.h:95
static PRM_DataItemHandle parseBinary(const char *type, UT_IStream &is)
const UT_StringHolder & getOutputedgegroup() const
const UT_WorkBuffer & str()
Returns a read-only reference to the underlying UT_WorkBuffer.
void doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
void loadFromOpSubclass(const LoadParms &loadparms) override
void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr< UT_Ramp > &value) const override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
static void loadData(UT_IStream &is, fpreal64 &v)
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector4.h:491
bool operator==(const SOP_EdgeStraightenParms &src) const
double fpreal64
Definition: SYS_Types.h:201
static void loadData(UT_IStream &is, UT_Matrix2D &v)
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector2.h:423
bool operator==(const BaseDimensions< T > &a, const BaseDimensions< Y > &b)
Definition: Dimensions.h:137
SYS_FORCE_INLINE UT_StringHolder getToken(Grouptype enum_value)
static void loadData(UT_IStream &is, bool &v)
static void loadData(UT_IStream &is, UT_Matrix4D &v)
ParmType getNestParmType(TempIndex fieldnum) const override
exint length() const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
SYS_FORCE_INLINE const char * buffer() const
std::shared_ptr< T > UT_SharedPtr
Wrapper around std::shared_ptr.
Definition: UT_SharedPtr.h:36
static void saveData(std::ostream &os, UT_Vector2D v)
constexpr SYS_FORCE_INLINE T & z() noexcept
Definition: UT_Vector4.h:495
const OP_GraphProxy * graph() const
Definition: OP_NodeParms.h:94
#define SYS_FORCE_INLINE
Definition: SYS_Inline.h:45
static void loadData(UT_IStream &is, UT_Matrix3D &v)
bool isParmColorRamp(exint idx) const override
long long int64
Definition: SYS_Types.h:116
static void saveData(std::ostream &os, UT_SharedPtr< UT_Ramp > s)
virtual void evalOpParm(int64 &v, NodeIdx node, const char *parmname, fpreal time, DEP_MicroNode *depnode) const =0
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
static void saveData(std::ostream &os, PRM_DataItemHandle s)
void saveBinary(std::ostream &os) const
Save string to binary stream.
Definition: UT_String.h:296
void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
GT_API const UT_StringHolder version
const char * getNestParmName(TempIndex fieldnum) const override
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
Grouptype opGrouptype(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
static void saveData(std::ostream &os, UT_StringHolder s)
UT_StringHolder opOutputedgegroup(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
fpreal64 fpreal
Definition: SYS_Types.h:277
DEP_MicroNode * depnode() const
Definition: OP_NodeParms.h:99
LeafData & operator=(const LeafData &)=delete
Utility class for containing a color ramp.
Definition: UT_Ramp.h:92
void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
static void saveData(std::ostream &os, int64 v)
void copyFrom(const OP_NodeParms *src) override
void setOutputedgegroup(const UT_StringHolder &val)
constexpr SYS_FORCE_INLINE T & w() noexcept
Definition: UT_Vector4.h:497
GLuint GLfloat * val
Definition: glcorearb.h:1608
exint getNestNumParms(TempIndex idx) const override
#define SOP_API
Definition: SOP_API.h:10
void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
fpreal getCookTime() const
Definition: SOP_NodeVerb.h:361
const char * findChar(int c) const
Definition: UT_String.h:1395
#define UT_ASSERT(ZZ)
Definition: UT_Assert.h:156
Definition: core.h:1131
static void saveData(std::ostream &os, fpreal64 v)
static void saveData(std::ostream &os, UT_Vector3D v)
static void loadData(UT_IStream &is, PRM_DataItemHandle &v)
GLboolean r
Definition: glcorearb.h:1222
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector3.h:665
static void saveData(std::ostream &os, UT_Matrix4D v)
void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
type
Definition: core.h:1059
void doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
UT_SharedPtr< const PRM_DataItem > PRM_DataItemHandle
Definition: PRM_Parm.h:97
static void saveData(std::ostream &os, UT_Matrix3D v)
static void loadData(UT_IStream &is, UT_Vector3D &v)
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector2.h:425
SYS_FORCE_INLINE bool isstring() const
SYS_FORCE_INLINE void strncpy(const char *src, exint maxlen)
bool operator!=(const SOP_EdgeStraightenParms &src) const
GLenum src
Definition: glcorearb.h:1793
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector3.h:663
void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override