9 #ifndef CUBBYFLOW_PYTHON_PYBIND11_UTILS_H 10 #define CUBBYFLOW_PYTHON_PYBIND11_UTILS_H 21 #include <pybind11/pybind11.h> 22 #include <pybind11/stl.h> 30 if (tuple.size() == 2)
32 for (
size_t i = 0; i < 2; ++i)
34 ret[i] = tuple[i].cast<
size_t>();
39 throw std::invalid_argument(
"Invalid size.");
51 for (
size_t i = 0; i < 2; ++i)
53 ret[i] = list[i].cast<
size_t>();
58 throw std::invalid_argument(
"Invalid size.");
68 if (tuple.size() == 3)
70 for (
size_t i = 0; i < 3; ++i)
72 ret[i] = tuple[i].cast<
size_t>();
77 throw std::invalid_argument(
"Invalid size.");
89 for (
size_t i = 0; i < 3; ++i)
91 ret[i] = list[i].cast<
size_t>();
96 throw std::invalid_argument(
"Invalid size.");
106 if (tuple.size() == 2)
108 for (
size_t i = 0; i < 2; ++i)
110 ret[i] = tuple[i].cast<
size_t>();
115 throw std::invalid_argument(
"Invalid size.");
125 if (list.size() == 2)
127 for (
size_t i = 0; i < 2; ++i)
129 ret[i] = list[i].cast<
size_t>();
134 throw std::invalid_argument(
"Invalid size.");
144 if (tuple.size() == 3)
146 for (
size_t i = 0; i < 3; ++i)
148 ret[i] = tuple[i].cast<
size_t>();
153 throw std::invalid_argument(
"Invalid size.");
163 if (list.size() == 3)
165 for (
size_t i = 0; i < 3; ++i)
167 ret[i] = list[i].cast<
size_t>();
172 throw std::invalid_argument(
"Invalid size.");
180 return pybind11::make_tuple(size.
x, size.
y);
185 return pybind11::make_tuple(size.
x, size.
y, size.
z);
188 template <
typename T,
size_t N>
193 if (tuple.size() == N)
195 for (
size_t i = 0; i < N; ++i)
197 ret[i] = tuple[i].cast<T>();
202 throw std::invalid_argument(
"Invalid size.");
208 template <
typename T,
size_t N>
213 if (list.size() == N)
215 for (
size_t i = 0; i < N; ++i)
217 ret[i] = list[i].cast<T>();
222 throw std::invalid_argument(
"Invalid size.");
228 template <
typename T>
233 for (
size_t i = 0; i < 4; ++i)
235 ret[i] = tuple[i].cast<T>();
241 template <
typename T>
246 for (
size_t i = 0; i < 4; ++i)
248 ret[i] = list[i].cast<T>();
256 return TupleToVector<float, 2>(tuple);
261 return TupleToVector<float, 2>(list);
266 return TupleToVector<float, 3>(tuple);
271 return TupleToVector<float, 3>(list);
276 return TupleToVector<float, 4>(tuple);
281 return TupleToVector<float, 4>(list);
286 return TupleToQuaternion<float>(tuple);
291 return TupleToQuaternion<float>(list);
296 return TupleToVector<double, 2>(tuple);
301 return TupleToVector<double, 2>(list);
306 return TupleToVector<double, 3>(tuple);
311 return TupleToVector<double, 3>(list);
316 return TupleToVector<double, 4>(tuple);
321 return TupleToVector<double, 4>(list);
324 template <
typename T>
327 return pybind11::make_tuple(vec.
x, vec.
y);
330 template <
typename T>
333 return pybind11::make_tuple(vec.
x, vec.
y, vec.
z);
336 template <
typename T>
339 return pybind11::make_tuple(vec.
x, vec.
y, vec.
z, vec.
w);
344 return TupleToQuaternion<double>(tuple);
349 return TupleToQuaternion<double>(list);
354 if (pybind11::isinstance<Size2>(static_cast<pybind11::handle>(obj)))
356 return obj.cast<
Size2>();
359 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
364 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
369 throw std::invalid_argument(
"Cannot convert to Size2.");
374 if (pybind11::isinstance<Size3>(static_cast<pybind11::handle>(obj)))
376 return obj.cast<
Size3>();
379 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
384 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
389 throw std::invalid_argument(
"Cannot convert to Size3.");
394 if (pybind11::isinstance<Point2UI>(static_cast<pybind11::handle>(obj)))
399 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
404 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
409 throw std::invalid_argument(
"Cannot convert to Point2UI.");
414 if (pybind11::isinstance<Point3UI>(static_cast<pybind11::handle>(obj)))
419 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
424 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
429 throw std::invalid_argument(
"Cannot convert to Point3UI.");
434 if (pybind11::isinstance<Vector2F>(static_cast<pybind11::handle>(obj)))
439 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
444 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
449 throw std::invalid_argument(
"Cannot convert to Vector2F.");
454 if (pybind11::isinstance<Vector2D>(static_cast<pybind11::handle>(obj)))
459 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
464 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
469 throw std::invalid_argument(
"Cannot convert to Vector2D.");
474 if (pybind11::isinstance<Vector3F>(static_cast<pybind11::handle>(obj)))
479 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
484 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
489 throw std::invalid_argument(
"Cannot convert to Vector3F.");
494 if (pybind11::isinstance<Vector3D>(static_cast<pybind11::handle>(obj)))
499 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
504 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
509 throw std::invalid_argument(
"Cannot convert to Vector3D.");
514 if (pybind11::isinstance<Vector4F>(static_cast<pybind11::handle>(obj)))
519 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
524 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
529 throw std::invalid_argument(
"Cannot convert to Vector4F.");
534 if (pybind11::isinstance<Vector4D>(static_cast<pybind11::handle>(obj)))
539 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
544 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
549 throw std::invalid_argument(
"Cannot convert to Vector4D.");
554 if (pybind11::isinstance<QuaternionF>(static_cast<pybind11::handle>(obj)))
559 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
564 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
569 throw std::invalid_argument(
"Cannot convert to QuaternionF.");
574 if (pybind11::isinstance<QuaternionD>(static_cast<pybind11::handle>(obj)))
579 if (pybind11::isinstance<pybind11::tuple>(static_cast<pybind11::handle>(obj)))
584 if (pybind11::isinstance<pybind11::list>(static_cast<pybind11::handle>(obj)))
589 throw std::invalid_argument(
"Cannot convert to QuaternionD.");
596 if (args.size() <= 3)
613 throw std::invalid_argument(
"Too many arguments.");
617 if (kwargs.contains(
"resolution"))
619 resolution =
ObjectToSize2(pybind11::object(kwargs[
"resolution"]));
621 if (kwargs.contains(
"gridSpacing"))
625 if (kwargs.contains(
"gridOrigin"))
629 if (kwargs.contains(
"domainSizeX"))
631 double domainSizeX = kwargs[
"domainSizeX"].cast<
double>();
632 gridSpacing.
Set(domainSizeX / static_cast<double>(resolution.
x));
640 if (args.size() <= 3)
657 throw std::invalid_argument(
"Too many arguments.");
661 if (kwargs.contains(
"resolution"))
663 resolution =
ObjectToSize3(pybind11::object(kwargs[
"resolution"]));
665 if (kwargs.contains(
"gridSpacing"))
669 if (kwargs.contains(
"gridOrigin"))
673 if (kwargs.contains(
"domainSizeX"))
675 double domainSizeX = kwargs[
"domainSizeX"].cast<
double>();
676 gridSpacing.
Set(domainSizeX / static_cast<double>(resolution.
x));
Quaternion< T > TupleToQuaternion(pybind11::tuple tuple)
Definition: pybind11Utils.h:229
3-D vector class.
Definition: Vector3.h:26
Size3 ObjectToSize3(const pybind11::object &obj)
Definition: pybind11Utils.h:372
pybind11::tuple Size3ToTuple(const Size3 &size)
Definition: pybind11Utils.h:183
T x
X (or the first) component of the vector.
Definition: Vector2.h:29
void Set(T s)
Set all x, y, and z components to s.
Definition: Vector3-Impl.h:27
Point2UI TupleToPoint2UI(pybind11::tuple tuple)
Definition: pybind11Utils.h:102
T z
Z (or the third) component of the vector.
Definition: Vector3.h:38
QuaternionD ObjectToQuaternionD(const pybind11::object &obj)
Definition: pybind11Utils.h:572
T x
X (or the first) component of the point.
Definition: Point2.h:28
T y
Y (or the second) component of the vector.
Definition: Vector4.h:35
Vector4D ObjectToVector4D(const pybind11::object &obj)
Definition: pybind11Utils.h:532
pybind11::tuple Vector4ToTuple(const Vector< T, 4 > &vec)
Definition: pybind11Utils.h:337
QuaternionD TupleToQuaternionD(pybind11::tuple tuple)
Definition: pybind11Utils.h:342
Vector4F ObjectToVector4F(const pybind11::object &obj)
Definition: pybind11Utils.h:512
pybind11::tuple Vector3ToTuple(const Vector< T, 3 > &vec)
Definition: pybind11Utils.h:331
Size2 TupleToSize2(pybind11::tuple tuple)
Definition: pybind11Utils.h:26
2-D point class.
Definition: Point2.h:25
Generic statically-sized N-D vector class.
Definition: Vector.h:33
3-D point class.
Definition: Point3.h:26
Size3 TupleToSize3(pybind11::tuple tuple)
Definition: pybind11Utils.h:64
T w
W (or the fourth) component of the vector.
Definition: Vector4.h:41
Vector2D ObjectToVector2D(const pybind11::object &obj)
Definition: pybind11Utils.h:452
Vector3F ObjectToVector3F(const pybind11::object &obj)
Definition: pybind11Utils.h:472
void ParseGridResizeParams(pybind11::args args, pybind11::kwargs kwargs, Size2 &resolution, Vector2D &gridSpacing, Vector2D &gridOrigin)
Definition: pybind11Utils.h:592
Point3UI ObjectToPoint3UI(const pybind11::object &obj)
Definition: pybind11Utils.h:412
T y
Y (or the second) component of the point.
Definition: Point2.h:34
T x
X (or the first) component of the vector.
Definition: Vector3.h:29
Definition: pybind11Utils.h:24
T z
Z (or the third) component of the vector.
Definition: Vector4.h:38
Vector3D TupleToVector3D(pybind11::tuple tuple)
Definition: pybind11Utils.h:304
void Set(T s)
Set both x and y components to s.
Definition: Vector2-Impl.h:28
T z
Z (or the third) component of the point.
Definition: Point3.h:38
Size2 ObjectToSize2(const pybind11::object &obj)
Definition: pybind11Utils.h:352
T y
Y (or the second) component of the point.
Definition: Point3.h:35
Point3UI TupleToPoint3UI(pybind11::tuple tuple)
Definition: pybind11Utils.h:140
T y
Y (or the second) component of the vector.
Definition: Vector2.h:35
4-D vector class.
Definition: Vector4.h:26
QuaternionF TupleToQuaternionF(pybind11::tuple tuple)
Definition: pybind11Utils.h:284
T x
X (or the first) component of the point.
Definition: Point3.h:29
2-D vector class.
Definition: Vector2.h:26
Vector3D ObjectToVector3D(const pybind11::object &obj)
Definition: pybind11Utils.h:492
Vector2F TupleToVector2F(pybind11::tuple tuple)
Definition: pybind11Utils.h:254
T x
X (or the first) component of the vector.
Definition: Vector4.h:29
Vector2D TupleToVector2D(pybind11::tuple tuple)
Definition: pybind11Utils.h:294
pybind11::tuple Size2ToTuple(const Size2 &size)
Definition: pybind11Utils.h:178
Vector4F TupleToVector4F(pybind11::tuple tuple)
Definition: pybind11Utils.h:274
Vector3F TupleToVector3F(pybind11::tuple tuple)
Definition: pybind11Utils.h:264
Point2UI ObjectToPoint2UI(const pybind11::object &obj)
Definition: pybind11Utils.h:392
Vector2F ObjectToVector2F(const pybind11::object &obj)
Definition: pybind11Utils.h:432
Vector4D TupleToVector4D(pybind11::tuple tuple)
Definition: pybind11Utils.h:314
T y
Y (or the second) component of the vector.
Definition: Vector3.h:35
QuaternionF ObjectToQuaternionF(const pybind11::object &obj)
Definition: pybind11Utils.h:552
Quaternion class defined as q = w + xi + yj + zk.
Definition: Quaternion.h:20
pybind11::tuple Vector2ToTuple(const Vector< T, 2 > &vec)
Definition: pybind11Utils.h:325
Vector< T, N > TupleToVector(pybind11::tuple tuple)
Definition: pybind11Utils.h:189