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 <OP/OP_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 
74  if (baseGetSignature() != src.baseGetSignature()) return false;
75 
76  return true;
77  }
79  {
80  return !operator==(src);
81  }
83 
84 
85 
86  void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
87  {
88  myGroup = ""_UTsh;
89  if (true)
90  graph->evalOpParm(myGroup, nodeidx, "group", time, graph->isDirect()?nullptr:depnode);
91  myGrouptype = 0;
92  if (true)
93  graph->evalOpParm(myGrouptype, nodeidx, "grouptype", time, graph->isDirect()?nullptr:depnode);
94  myOutputedgegroup = ""_UTsh;
95  if (true)
96  graph->evalOpParm(myOutputedgegroup, nodeidx, "outputedgegroup", time, graph->isDirect()?nullptr:depnode);
97 
98  }
99 
100 
101  void loadFromOpSubclass(const LoadParms &loadparms) override
102  {
103  buildFromOp(loadparms.graph(), loadparms.nodeIdx(), loadparms.context().getTime(), loadparms.depnode());
104  }
105 
106 
107  void copyFrom(const OP_NodeParms *src) override
108  {
109  *this = *((const SOP_EdgeStraightenParms *)src);
110  }
111 
112  template <typename T>
113  void
114  doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
115  {
116  if (idx.size() < 1)
117  return;
118  UT_ASSERT(idx.size() == instance.size()+1);
119  if (idx.size() != instance.size()+1)
120  return;
121  switch (idx[0])
122  {
123  case 0:
124  coerceValue(value, myGroup);
125  break;
126  case 1:
127  coerceValue(value, myGrouptype);
128  break;
129  case 2:
130  coerceValue(value, myOutputedgegroup);
131  break;
132 
133  }
134  }
135 
136  bool isParmColorRamp(exint idx) const override
137  {
138  switch (idx)
139  {
140 
141  }
142  return false;
143  }
144 
145  void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
146  { doGetParmValue(idx, instance, value); }
147  void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
148  { doGetParmValue(idx, instance, value); }
149  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
150  { doGetParmValue(idx, instance, value); }
151  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
152  { doGetParmValue(idx, instance, value); }
153  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
154  { doGetParmValue(idx, instance, value); }
155  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
156  { doGetParmValue(idx, instance, value); }
157  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
158  { doGetParmValue(idx, instance, value); }
159  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
160  { doGetParmValue(idx, instance, value); }
161  void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
162  { doGetParmValue(idx, instance, value); }
163  void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr<UT_Ramp> &value) const override
164  { doGetParmValue(idx, instance, value); }
165  void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
166  { doGetParmValue(idx, instance, value); }
167 
168  template <typename T>
169  void
170  doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
171  {
172  if (idx.size() < 1)
173  return;
174  UT_ASSERT(idx.size() == instance.size()+1);
175  if (idx.size() != instance.size()+1)
176  return;
177  switch (idx[0])
178  {
179  case 0:
180  coerceValue(myGroup, ( ( value ) ));
181  break;
182  case 1:
183  coerceValue(myGrouptype, clampMinValue(0, clampMaxValue(2, value ) ));
184  break;
185  case 2:
186  coerceValue(myOutputedgegroup, ( ( value ) ));
187  break;
188 
189  }
190  }
191 
192  void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
193  { doSetParmValue(idx, instance, value); }
194  void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
195  { doSetParmValue(idx, instance, value); }
196  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
197  { doSetParmValue(idx, instance, value); }
198  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
199  { doSetParmValue(idx, instance, value); }
200  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
201  { doSetParmValue(idx, instance, value); }
202  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
203  { doSetParmValue(idx, instance, value); }
204  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
205  { doSetParmValue(idx, instance, value); }
206  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
207  { doSetParmValue(idx, instance, value); }
208  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
209  { doSetParmValue(idx, instance, value); }
210  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr<UT_Ramp> &value) override
211  { doSetParmValue(idx, instance, value); }
212  void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
213  { doSetParmValue(idx, instance, value); }
214 
215  exint getNestNumParms(TempIndex idx) const override
216  {
217  if (idx.size() == 0)
218  return 3;
219  switch (idx[0])
220  {
221 
222  }
223  // Invalid
224  return 0;
225  }
226 
227  const char *getNestParmName(TempIndex fieldnum) const override
228  {
229  if (fieldnum.size() < 1)
230  return 0;
231  switch (fieldnum[0])
232  {
233  case 0:
234  return "group";
235  case 1:
236  return "grouptype";
237  case 2:
238  return "outputedgegroup";
239 
240  }
241  return 0;
242  }
243 
244  ParmType getNestParmType(TempIndex fieldnum) const override
245  {
246  if (fieldnum.size() < 1)
247  return PARM_UNSUPPORTED;
248  switch (fieldnum[0])
249  {
250  case 0:
251  return PARM_STRING;
252  case 1:
253  return PARM_INTEGER;
254  case 2:
255  return PARM_STRING;
256 
257  }
258  return PARM_UNSUPPORTED;
259  }
260 
261  // Boiler plate to load individual types.
262  static void loadData(UT_IStream &is, int64 &v)
263  { is.bread(&v, 1); }
264  static void loadData(UT_IStream &is, bool &v)
265  { int64 iv; is.bread(&iv, 1); v = iv; }
266  static void loadData(UT_IStream &is, fpreal64 &v)
267  { is.bread<fpreal64>(&v, 1); }
268  static void loadData(UT_IStream &is, UT_Vector2D &v)
269  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1); }
270  static void loadData(UT_IStream &is, UT_Vector3D &v)
271  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
272  is.bread<fpreal64>(&v.z(), 1); }
273  static void loadData(UT_IStream &is, UT_Vector4D &v)
274  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
275  is.bread<fpreal64>(&v.z(), 1); is.bread<fpreal64>(&v.w(), 1); }
276  static void loadData(UT_IStream &is, UT_Matrix2D &v)
277  { for (int r = 0; r < 2; r++) for (int c = 0; c < 2; c++) is.bread<fpreal64>(&v(r, c), 1); }
278  static void loadData(UT_IStream &is, UT_Matrix3D &v)
279  { for (int r = 0; r < 3; r++) for (int c = 0; c < 3; c++) is.bread<fpreal64>(&v(r, c), 1); }
280  static void loadData(UT_IStream &is, UT_Matrix4D &v)
281  { for (int r = 0; r < 4; r++) for (int c = 0; c < 4; c++) is.bread<fpreal64>(&v(r, c), 1); }
282  static void loadData(UT_IStream &is, UT_Vector2I &v)
283  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1); }
284  static void loadData(UT_IStream &is, UT_Vector3I &v)
285  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
286  is.bread<int64>(&v.z(), 1); }
287  static void loadData(UT_IStream &is, UT_Vector4I &v)
288  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
289  is.bread<int64>(&v.z(), 1); is.bread<int64>(&v.w(), 1); }
291  { is.bread(v); }
293  { UT_StringHolder rampdata;
294  loadData(is, rampdata);
295  if (rampdata.isstring())
296  {
297  v.reset(new UT_Ramp());
298  UT_IStream istr((const char *) rampdata, rampdata.length(), UT_ISTREAM_ASCII);
299  v->load(istr);
300  }
301  else v.reset();
302  }
305  loadData(is, data);
306  if (data.isstring())
307  {
308  // Find the data type.
309  const char *colon = UT_StringWrap(data).findChar(':');
310  if (colon)
311  {
312  int typelen = colon - data.buffer();
314  type.strncpy(data.buffer(), typelen);
315  UT_IStream istr(((const char *) data) + typelen + 1, data.length() - (typelen + 1), UT_ISTREAM_BINARY);
316 
317  v = PRM_DataFactory::parseBinary(type.buffer(), istr);
318  }
319  }
320  else v.reset();
321  }
322 
323  static void saveData(std::ostream &os, int64 v)
324  { UTwrite(os, &v); }
325  static void saveData(std::ostream &os, bool v)
326  { int64 iv = v; UTwrite(os, &iv); }
327  static void saveData(std::ostream &os, fpreal64 v)
328  { UTwrite<fpreal64>(os, &v); }
329  static void saveData(std::ostream &os, UT_Vector2D v)
330  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y()); }
331  static void saveData(std::ostream &os, UT_Vector3D v)
332  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
333  UTwrite<fpreal64>(os, &v.z()); }
334  static void saveData(std::ostream &os, UT_Vector4D v)
335  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
336  UTwrite<fpreal64>(os, &v.z()); UTwrite<fpreal64>(os, &v.w()); }
337  static void saveData(std::ostream &os, UT_Matrix2D v)
339  static void saveData(std::ostream &os, UT_Matrix3D v)
341  static void saveData(std::ostream &os, UT_Matrix4D v)
343  static void saveData(std::ostream &os, UT_StringHolder s)
344  { UT_StringWrap(s).saveBinary(os); }
345  static void saveData(std::ostream &os, UT_SharedPtr<UT_Ramp> s)
347  UT_OStringStream ostr;
348  if (s) s->save(ostr);
349  result = ostr.str();
350  saveData(os, result);
351  }
352  static void saveData(std::ostream &os, PRM_DataItemHandle s)
354  UT_OStringStream ostr;
355  if (s)
356  {
357  ostr << s->getDataTypeToken();
358  ostr << ":";
359  s->saveBinary(ostr);
360  }
361  result = ostr.str();
362  saveData(os, result);
363  }
364 
365 
366  void save(std::ostream &os) const
367  {
368  int32 v = version();
369  UTwrite(os, &v);
370  saveData(os, myGroup);
371  saveData(os, myGrouptype);
372  saveData(os, myOutputedgegroup);
373 
374  }
375 
376  bool load(UT_IStream &is)
377  {
378  int32 v;
379  is.bread(&v, 1);
380  if (version() != v)
381  {
382  // Fail incompatible versions
383  return false;
384  }
385  loadData(is, myGroup);
386  loadData(is, myGrouptype);
387  loadData(is, myOutputedgegroup);
388 
389  return true;
390  }
391 
392  const UT_StringHolder & getGroup() const { return myGroup; }
393  void setGroup(const UT_StringHolder & val) { myGroup = val; }
395  {
396  SOP_Node *thissop = cookparms.getNode();
397  if (!thissop) return getGroup();
399  OP_Utils::evalOpParm(result, thissop, "group", cookparms.getCookTime(), 0);
400  return result;
401  }
402  Grouptype getGrouptype() const { return Grouptype(myGrouptype); }
403  void setGrouptype(Grouptype val) { myGrouptype = int64(val); }
405  {
406  SOP_Node *thissop = cookparms.getNode();
407  if (!thissop) return getGrouptype();
408  int64 result;
409  OP_Utils::evalOpParm(result, thissop, "grouptype", cookparms.getCookTime(), 0);
410  return Grouptype(result);
411  }
412  const UT_StringHolder & getOutputedgegroup() const { return myOutputedgegroup; }
413  void setOutputedgegroup(const UT_StringHolder & val) { myOutputedgegroup = val; }
415  {
416  SOP_Node *thissop = cookparms.getNode();
417  if (!thissop) return getOutputedgegroup();
419  OP_Utils::evalOpParm(result, thissop, "outputedgegroup", cookparms.getCookTime(), 0);
420  return result;
421  }
422 
423 private:
424  UT_StringHolder myGroup;
425  int64 myGrouptype;
426  UT_StringHolder myOutputedgegroup;
427 
428 };
type
Definition: core.h:556
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:63
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr< UT_Ramp > &value) override
GLsizei const GLfloat * value
Definition: glcorearb.h:824
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:622
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)
UT_SharedPtr< const PRM_DataItem > PRM_DataItemHandle
Definition: APEX_Include.h:55
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:303
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:278
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:96
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
virtual UT_StringHolder baseGetSignature() const
Definition: OP_NodeParms.h:294
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:372
const char * findChar(int c) const
Definition: UT_String.h:1401
#define UT_ASSERT(ZZ)
Definition: UT_Assert.h:156
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
virtual bool isDirect() const =0
Direct proxies mirror actual nodes:
void doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
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