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