%PDF- %PDF-
Direktori : /usr/include/Imath/ |
Current File : //usr/include/Imath/PyImathVec4ArrayImpl.h |
// // SPDX-License-Identifier: BSD-3-Clause // Copyright Contributors to the OpenEXR Project. // // clang-format off #ifndef _PyImathVec4ArrayImpl_h_ #define _PyImathVec4ArrayImpl_h_ // // This .C file was turned into a header file so that instantiations // of the various V4* types can be spread across multiple files in // order to work around MSVC limitations. // #include <Python.h> #include <boost/python.hpp> #include <boost/python/make_constructor.hpp> #include <boost/format.hpp> #include <ImathVec.h> #include <ImathVecAlgo.h> #include "PyImath.h" #include "PyImathVec.h" #include "PyImathDecorators.h" #include "PyImathMathExc.h" #include "PyImathOperators.h" #include "PyImathVecOperators.h" namespace PyImath { using namespace boost::python; using namespace IMATH_NAMESPACE; // XXX fixme - template this // really this should get generated automatically... template <class T,int index> static FixedArray<T> Vec4Array_get(FixedArray<IMATH_NAMESPACE::Vec4<T> > &va) { return FixedArray<T>(&(va.unchecked_index(0)[index]), va.len(), 4*va.stride(), va.handle(), va.writable()); } template <class T> static void setItemTuple(FixedArray<IMATH_NAMESPACE::Vec4<T> > &va, Py_ssize_t index, const tuple &t) { if(t.attr("__len__")() == 4) { Vec4<T> v; v.x = extract<T>(t[0]); v.y = extract<T>(t[1]); v.z = extract<T>(t[2]); v.w = extract<T>(t[3]); va[va.canonical_index(index)] = v; } else throw std::invalid_argument ("tuple of length 4 expected"); } template <class T> static IMATH_NAMESPACE::Vec4<T> Vec4Array_min(const FixedArray<IMATH_NAMESPACE::Vec4<T> > &a) { Vec4<T> tmp(Vec4<T>(0)); size_t len = a.len(); if (len > 0) tmp = a[0]; for (size_t i=1; i < len; ++i) { if (a[i].x < tmp.x) tmp.x = a[i].x; if (a[i].y < tmp.y) tmp.y = a[i].y; if (a[i].z < tmp.z) tmp.z = a[i].z; if (a[i].w < tmp.w) tmp.w = a[i].w; } return tmp; } template <class T> static IMATH_NAMESPACE::Vec4<T> Vec4Array_max(const FixedArray<IMATH_NAMESPACE::Vec4<T> > &a) { Vec4<T> tmp(Vec4<T>(0)); size_t len = a.len(); if (len > 0) tmp = a[0]; for (size_t i=1; i < len; ++i) { if (a[i].x > tmp.x) tmp.x = a[i].x; if (a[i].y > tmp.y) tmp.y = a[i].y; if (a[i].z > tmp.z) tmp.z = a[i].z; if (a[i].w > tmp.w) tmp.w = a[i].w; } return tmp; } // Trick to register methods for float-only-based vectors template <class T, IMATH_ENABLE_IF(!std::is_integral<T>::value)> void register_Vec4Array_floatonly(class_<FixedArray<Vec4<T>>>& vec4Array_class) { generate_member_bindings<op_vecLength<IMATH_NAMESPACE::Vec4<T> > >(vec4Array_class,"length",""); generate_member_bindings<op_vecNormalize<IMATH_NAMESPACE::Vec4<T> > >(vec4Array_class,"normalize",""); generate_member_bindings<op_vecNormalized<IMATH_NAMESPACE::Vec4<T> > >(vec4Array_class,"normalized",""); generate_member_bindings<op_vecNormalizeExc<IMATH_NAMESPACE::Vec4<T> > >(vec4Array_class,"normalizeExc",""); generate_member_bindings<op_vecNormalizedExc<IMATH_NAMESPACE::Vec4<T> > >(vec4Array_class,"normalizedExc",""); } template <class T, IMATH_ENABLE_IF(std::is_integral<T>::value)> void register_Vec4Array_floatonly(class_<FixedArray<Vec4<T>>>& vec4Array_class) { } template <class T> class_<FixedArray<IMATH_NAMESPACE::Vec4<T> > > register_Vec4Array() { using boost::mpl::true_; class_<FixedArray<IMATH_NAMESPACE::Vec4<T> > > vec4Array_class = FixedArray<IMATH_NAMESPACE::Vec4<T> >::register_("Fixed length array of IMATH_NAMESPACE::Vec4"); vec4Array_class .add_property("x",&Vec4Array_get<T,0>) .add_property("y",&Vec4Array_get<T,1>) .add_property("z",&Vec4Array_get<T,2>) .add_property("w",&Vec4Array_get<T,3>) .def("__setitem__", &setItemTuple<T>) .def("min", &Vec4Array_min<T>) .def("max", &Vec4Array_max<T>) ; add_arithmetic_math_functions(vec4Array_class); add_comparison_functions(vec4Array_class); register_Vec4Array_floatonly(vec4Array_class); generate_member_bindings<op_vecLength2<IMATH_NAMESPACE::Vec4<T> > >(vec4Array_class,"length2",""); generate_member_bindings<op_vecDot<IMATH_NAMESPACE::Vec4<T> >,true_>(vec4Array_class,"dot","return the inner product of (self,x)",boost::python::args("x")); generate_member_bindings<op_mul<IMATH_NAMESPACE::Vec4<T>,T>, true_>(vec4Array_class,"__mul__" ,"self*x", boost::python::args("x")); generate_member_bindings<op_mul<IMATH_NAMESPACE::Vec4<T>,T>, true_>(vec4Array_class,"__rmul__","x*self", boost::python::args("x")); generate_member_bindings<op_imul<IMATH_NAMESPACE::Vec4<T>,T>, true_>(vec4Array_class,"__imul__","self*=x",boost::python::args("x")); generate_member_bindings<op_div<IMATH_NAMESPACE::Vec4<T>,T>, true_>(vec4Array_class,"__div__" ,"self/x", boost::python::args("x")); generate_member_bindings<op_div<IMATH_NAMESPACE::Vec4<T>,T>, true_>(vec4Array_class,"__truediv__" ,"self/x", boost::python::args("x")); generate_member_bindings<op_idiv<IMATH_NAMESPACE::Vec4<T>,T>, true_>(vec4Array_class,"__idiv__","self/=x",boost::python::args("x")); generate_member_bindings<op_idiv<IMATH_NAMESPACE::Vec4<T>,T>, true_>(vec4Array_class,"__itruediv__","self/=x",boost::python::args("x")); decoratecopy(vec4Array_class); return vec4Array_class; } } // namespace PyImath #endif // _PyImathVec4ArrayImpl_h_