HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_PointCloudSurface.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_PointCloudSurfaceEnums
24 {
25  enum class Boundary
26  {
27  CLOSED = 0,
28  OPEN
29  };
30 
32  getToken(Boundary enum_value)
33  {
34  using namespace UT::Literal;
35  switch (enum_value) {
36  case Boundary::CLOSED: return "closed"_sh;
37  case Boundary::OPEN: return "open"_sh;
38  default: UT_ASSERT(false); return ""_sh;
39  }
40  }
41 
42 }
43 
44 
46 {
47 public:
48  static int version() { return 1; }
49 
51  {
52  mySubdivisions = 8;
53  mySampletarget = 2.0;
54  myIterations = 4;
55  myBoundary = 0;
56 
57  }
58 
59  explicit SOP_PointCloudSurfaceParms(const SOP_PointCloudSurfaceParms &) = default;
62  SOP_PointCloudSurfaceParms &operator=(SOP_PointCloudSurfaceParms &&) noexcept = default;
63 
65 
67  {
68  if (mySubdivisions != src.mySubdivisions) return false;
69  if (mySampletarget != src.mySampletarget) return false;
70  if (myIterations != src.myIterations) return false;
71  if (myBoundary != src.myBoundary) 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  mySubdivisions = 8;
86  if (true)
87  graph->evalOpParm(mySubdivisions, nodeidx, "subdivisions", time, 0);
88  mySampletarget = 2.0;
89  if (true)
90  graph->evalOpParm(mySampletarget, nodeidx, "sampletarget", time, 0);
91  myIterations = 4;
92  if (true)
93  graph->evalOpParm(myIterations, nodeidx, "iterations", time, 0);
94  myBoundary = 0;
95  if (true)
96  graph->evalOpParm(myBoundary, nodeidx, "boundary", time, 0);
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_PointCloudSurfaceParms *)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, mySubdivisions);
125  break;
126  case 1:
127  coerceValue(value, mySampletarget);
128  break;
129  case 2:
130  coerceValue(value, myIterations);
131  break;
132  case 3:
133  coerceValue(value, myBoundary);
134  break;
135 
136  }
137  }
138 
139  bool isParmColorRamp(exint idx) const override
140  {
141  switch (idx)
142  {
143 
144  }
145  return false;
146  }
147 
148  void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
149  { doGetParmValue(idx, instance, value); }
150  void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
151  { doGetParmValue(idx, instance, value); }
152  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
153  { doGetParmValue(idx, instance, value); }
154  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
155  { doGetParmValue(idx, instance, value); }
156  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
157  { doGetParmValue(idx, instance, value); }
158  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
159  { doGetParmValue(idx, instance, value); }
160  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
161  { doGetParmValue(idx, instance, value); }
162  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
163  { doGetParmValue(idx, instance, value); }
164  void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
165  { doGetParmValue(idx, instance, value); }
166  void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr<UT_Ramp> &value) const override
167  { doGetParmValue(idx, instance, value); }
168  void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
169  { doGetParmValue(idx, instance, value); }
170 
171  template <typename T>
172  void
173  doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
174  {
175  if (idx.size() < 1)
176  return;
177  UT_ASSERT(idx.size() == instance.size()+1);
178  if (idx.size() != instance.size()+1)
179  return;
180  switch (idx[0])
181  {
182  case 0:
183  coerceValue(mySubdivisions, clampMinValue(1, clampMaxValue(19, value ) ));
184  break;
185  case 1:
186  coerceValue(mySampletarget, clampMinValue(0, ( value ) ));
187  break;
188  case 2:
189  coerceValue(myIterations, clampMinValue(1, ( value ) ));
190  break;
191  case 3:
192  coerceValue(myBoundary, clampMinValue(0, clampMaxValue(1, value ) ));
193  break;
194 
195  }
196  }
197 
198  void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
199  { doSetParmValue(idx, instance, value); }
200  void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
201  { doSetParmValue(idx, instance, value); }
202  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
203  { doSetParmValue(idx, instance, value); }
204  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
205  { doSetParmValue(idx, instance, value); }
206  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
207  { doSetParmValue(idx, instance, value); }
208  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
209  { doSetParmValue(idx, instance, value); }
210  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
211  { doSetParmValue(idx, instance, value); }
212  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
213  { doSetParmValue(idx, instance, value); }
214  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
215  { doSetParmValue(idx, instance, value); }
216  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr<UT_Ramp> &value) override
217  { doSetParmValue(idx, instance, value); }
218  void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
219  { doSetParmValue(idx, instance, value); }
220 
221  exint getNestNumParms(TempIndex idx) const override
222  {
223  if (idx.size() == 0)
224  return 4;
225  switch (idx[0])
226  {
227 
228  }
229  // Invalid
230  return 0;
231  }
232 
233  const char *getNestParmName(TempIndex fieldnum) const override
234  {
235  if (fieldnum.size() < 1)
236  return 0;
237  switch (fieldnum[0])
238  {
239  case 0:
240  return "subdivisions";
241  case 1:
242  return "sampletarget";
243  case 2:
244  return "iterations";
245  case 3:
246  return "boundary";
247 
248  }
249  return 0;
250  }
251 
252  ParmType getNestParmType(TempIndex fieldnum) const override
253  {
254  if (fieldnum.size() < 1)
255  return PARM_UNSUPPORTED;
256  switch (fieldnum[0])
257  {
258  case 0:
259  return PARM_INTEGER;
260  case 1:
261  return PARM_FLOAT;
262  case 2:
263  return PARM_INTEGER;
264  case 3:
265  return PARM_INTEGER;
266 
267  }
268  return PARM_UNSUPPORTED;
269  }
270 
271  // Boiler plate to load individual types.
272  static void loadData(UT_IStream &is, int64 &v)
273  { is.bread(&v, 1); }
274  static void loadData(UT_IStream &is, bool &v)
275  { int64 iv; is.bread(&iv, 1); v = iv; }
276  static void loadData(UT_IStream &is, fpreal64 &v)
277  { is.bread<fpreal64>(&v, 1); }
278  static void loadData(UT_IStream &is, UT_Vector2D &v)
279  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1); }
280  static void loadData(UT_IStream &is, UT_Vector3D &v)
281  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
282  is.bread<fpreal64>(&v.z(), 1); }
283  static void loadData(UT_IStream &is, UT_Vector4D &v)
284  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
285  is.bread<fpreal64>(&v.z(), 1); is.bread<fpreal64>(&v.w(), 1); }
286  static void loadData(UT_IStream &is, UT_Matrix2D &v)
287  { for (int r = 0; r < 2; r++) for (int c = 0; c < 2; c++) is.bread<fpreal64>(&v(r, c), 1); }
288  static void loadData(UT_IStream &is, UT_Matrix3D &v)
289  { for (int r = 0; r < 3; r++) for (int c = 0; c < 3; c++) is.bread<fpreal64>(&v(r, c), 1); }
290  static void loadData(UT_IStream &is, UT_Matrix4D &v)
291  { for (int r = 0; r < 4; r++) for (int c = 0; c < 4; c++) is.bread<fpreal64>(&v(r, c), 1); }
292  static void loadData(UT_IStream &is, UT_Vector2I &v)
293  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1); }
294  static void loadData(UT_IStream &is, UT_Vector3I &v)
295  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
296  is.bread<int64>(&v.z(), 1); }
297  static void loadData(UT_IStream &is, UT_Vector4I &v)
298  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
299  is.bread<int64>(&v.z(), 1); is.bread<int64>(&v.w(), 1); }
301  { is.bread(v); }
303  { UT_StringHolder rampdata;
304  loadData(is, rampdata);
305  if (rampdata.isstring())
306  {
307  v.reset(new UT_Ramp());
308  UT_IStream istr((const char *) rampdata, rampdata.length(), UT_ISTREAM_ASCII);
309  v->load(istr);
310  }
311  else v.reset();
312  }
315  loadData(is, data);
316  if (data.isstring())
317  {
318  // Find the data type.
319  const char *colon = UT_StringWrap(data).findChar(':');
320  if (colon)
321  {
322  int typelen = colon - data.buffer();
324  type.strncpy(data.buffer(), typelen);
325  UT_IStream istr(((const char *) data) + typelen + 1, data.length() - (typelen + 1), UT_ISTREAM_BINARY);
326 
327  v = PRM_DataFactory::parseBinary(type.buffer(), istr);
328  }
329  }
330  else v.reset();
331  }
332 
333  static void saveData(std::ostream &os, int64 v)
334  { UTwrite(os, &v); }
335  static void saveData(std::ostream &os, bool v)
336  { int64 iv = v; UTwrite(os, &iv); }
337  static void saveData(std::ostream &os, fpreal64 v)
338  { UTwrite<fpreal64>(os, &v); }
339  static void saveData(std::ostream &os, UT_Vector2D v)
340  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y()); }
341  static void saveData(std::ostream &os, UT_Vector3D v)
342  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
343  UTwrite<fpreal64>(os, &v.z()); }
344  static void saveData(std::ostream &os, UT_Vector4D v)
345  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
346  UTwrite<fpreal64>(os, &v.z()); UTwrite<fpreal64>(os, &v.w()); }
347  static void saveData(std::ostream &os, UT_Matrix2D v)
349  static void saveData(std::ostream &os, UT_Matrix3D v)
351  static void saveData(std::ostream &os, UT_Matrix4D v)
353  static void saveData(std::ostream &os, UT_StringHolder s)
354  { UT_StringWrap(s).saveBinary(os); }
355  static void saveData(std::ostream &os, UT_SharedPtr<UT_Ramp> s)
357  UT_OStringStream ostr;
358  if (s) s->save(ostr);
359  result = ostr.str();
360  saveData(os, result);
361  }
362  static void saveData(std::ostream &os, PRM_DataItemHandle s)
364  UT_OStringStream ostr;
365  if (s)
366  {
367  ostr << s->getDataTypeToken();
368  ostr << ":";
369  s->saveBinary(ostr);
370  }
371  result = ostr.str();
372  saveData(os, result);
373  }
374 
375 
376  void save(std::ostream &os) const
377  {
378  int32 v = version();
379  UTwrite(os, &v);
380  saveData(os, mySubdivisions);
381  saveData(os, mySampletarget);
382  saveData(os, myIterations);
383  saveData(os, myBoundary);
384 
385  }
386 
387  bool load(UT_IStream &is)
388  {
389  int32 v;
390  is.bread(&v, 1);
391  if (version() != v)
392  {
393  // Fail incompatible versions
394  return false;
395  }
396  loadData(is, mySubdivisions);
397  loadData(is, mySampletarget);
398  loadData(is, myIterations);
399  loadData(is, myBoundary);
400 
401  return true;
402  }
403 
404  int64 getSubdivisions() const { return mySubdivisions; }
405  void setSubdivisions(int64 val) { mySubdivisions = val; }
407  {
408  SOP_Node *thissop = cookparms.getNode();
409  if (!thissop) return getSubdivisions();
410  int64 result;
411  OP_Utils::evalOpParm(result, thissop, "subdivisions", cookparms.getCookTime(), 0);
412  return result;
413  }
414  fpreal64 getSampletarget() const { return mySampletarget; }
415  void setSampletarget(fpreal64 val) { mySampletarget = val; }
417  {
418  SOP_Node *thissop = cookparms.getNode();
419  if (!thissop) return getSampletarget();
421  OP_Utils::evalOpParm(result, thissop, "sampletarget", cookparms.getCookTime(), 0);
422  return result;
423  }
424  int64 getIterations() const { return myIterations; }
425  void setIterations(int64 val) { myIterations = val; }
427  {
428  SOP_Node *thissop = cookparms.getNode();
429  if (!thissop) return getIterations();
430  int64 result;
431  OP_Utils::evalOpParm(result, thissop, "iterations", cookparms.getCookTime(), 0);
432  return result;
433  }
434  Boundary getBoundary() const { return Boundary(myBoundary); }
435  void setBoundary(Boundary val) { myBoundary = int64(val); }
437  {
438  SOP_Node *thissop = cookparms.getNode();
439  if (!thissop) return getBoundary();
440  int64 result;
441  OP_Utils::evalOpParm(result, thissop, "boundary", cookparms.getCookTime(), 0);
442  return Boundary(result);
443  }
444 
445 private:
446  int64 mySubdivisions;
447  fpreal64 mySampletarget;
448  int64 myIterations;
449  int64 myBoundary;
450 
451 };
static void saveData(std::ostream &os, UT_Matrix2D v)
static void loadData(UT_IStream &is, fpreal64 &v)
static void saveData(std::ostream &os, UT_StringHolder s)
static void loadData(UT_IStream &is, int64 &v)
void doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
int int32
Definition: SYS_Types.h:39
SOP_Node * getNode() const
Definition: SOP_NodeVerb.h:347
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
fpreal64 opSampletarget(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
static void saveData(std::ostream &os, UT_Vector4D v)
static void loadData(UT_IStream &is, UT_Matrix4D &v)
void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
int64 opSubdivisions(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr< UT_Ramp > &value) override
exint bread(int32 *buffer, exint asize=1)
void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
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 getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
static void loadData(UT_IStream &is, UT_Matrix3D &v)
static void saveData(std::ostream &os, fpreal64 v)
const OP_Context & context() const
Definition: OP_NodeParms.h:97
constexpr SYS_FORCE_INLINE T & z() noexcept
Definition: UT_Vector3.h:667
int64 exint
Definition: SYS_Types.h:125
SYS_FORCE_INLINE const char * buffer() const
GLdouble s
Definition: glad.h:3009
An output stream object that owns its own string buffer storage.
void copyFrom(const OP_NodeParms *src) override
bool operator!=(const SOP_PointCloudSurfaceParms &src) const
**But if you need a result
Definition: thread.h:613
static void saveData(std::ostream &os, UT_Vector2D v)
void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
exint nodeIdx() const
Definition: OP_NodeParms.h:95
static PRM_DataItemHandle parseBinary(const char *type, UT_IStream &is)
const UT_WorkBuffer & str()
Returns a read-only reference to the underlying UT_WorkBuffer.
ParmType getNestParmType(TempIndex fieldnum) const override
exint getNestNumParms(TempIndex idx) const override
void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector4.h:491
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
double fpreal64
Definition: SYS_Types.h:201
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
static void loadData(UT_IStream &is, UT_Vector4I &v)
static void loadData(UT_IStream &is, UT_Vector3I &v)
exint length() const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &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
constexpr SYS_FORCE_INLINE T & z() noexcept
Definition: UT_Vector4.h:495
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
const OP_GraphProxy * graph() const
Definition: OP_NodeParms.h:94
#define SYS_FORCE_INLINE
Definition: SYS_Inline.h:45
static void saveData(std::ostream &os, int64 v)
void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
void loadFromOpSubclass(const LoadParms &loadparms) override
long long int64
Definition: SYS_Types.h:116
static void loadData(UT_IStream &is, UT_Vector4D &v)
static void loadData(UT_IStream &is, bool &v)
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
static void loadData(UT_IStream &is, PRM_DataItemHandle &v)
virtual void evalOpParm(int64 &v, NodeIdx node, const char *parmname, fpreal time, DEP_MicroNode *depnode) const =0
void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr< UT_Ramp > &value) const override
void saveBinary(std::ostream &os) const
Save string to binary stream.
Definition: UT_String.h:296
GT_API const UT_StringHolder version
void save(std::ostream &os) const
static void saveData(std::ostream &os, UT_Vector3D v)
static void saveData(std::ostream &os, PRM_DataItemHandle s)
Boundary opBoundary(const SOP_NodeVerb::CookParms &cookparms) const
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
bool isParmColorRamp(exint idx) const override
static void loadData(UT_IStream &is, UT_StringHolder &v)
SYS_FORCE_INLINE UT_StringHolder getToken(Boundary enum_value)
fpreal64 fpreal
Definition: SYS_Types.h:277
DEP_MicroNode * depnode() const
Definition: OP_NodeParms.h:99
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
static void loadData(UT_IStream &is, UT_Vector2D &v)
LeafData & operator=(const LeafData &)=delete
Utility class for containing a color ramp.
Definition: UT_Ramp.h:92
static void saveData(std::ostream &os, UT_Matrix4D v)
static void loadData(UT_IStream &is, UT_Vector3D &v)
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
constexpr SYS_FORCE_INLINE T & w() noexcept
Definition: UT_Vector4.h:497
static void loadData(UT_IStream &is, UT_SharedPtr< UT_Ramp > &v)
GLuint GLfloat * val
Definition: glcorearb.h:1608
#define SOP_API
Definition: SOP_API.h:10
static void loadData(UT_IStream &is, UT_Matrix2D &v)
static void saveData(std::ostream &os, UT_Matrix3D v)
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
bool operator==(const SOP_PointCloudSurfaceParms &src) const
GLboolean r
Definition: glcorearb.h:1222
static void saveData(std::ostream &os, bool v)
void doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector3.h:665
void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
static void saveData(std::ostream &os, UT_SharedPtr< UT_Ramp > s)
type
Definition: core.h:1059
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
int64 opIterations(const SOP_NodeVerb::CookParms &cookparms) const
void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
UT_SharedPtr< const PRM_DataItem > PRM_DataItemHandle
Definition: PRM_Parm.h:97
const char * getNestParmName(TempIndex fieldnum) const override
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector2.h:425
SYS_FORCE_INLINE bool isstring() const
static void loadData(UT_IStream &is, UT_Vector2I &v)
SYS_FORCE_INLINE void strncpy(const char *src, exint maxlen)
GLenum src
Definition: glcorearb.h:1793
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector3.h:663