Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/deps/Imath
Submodule Imath updated 84 files
+14 −4 .github/workflows/ci_workflow.yml
+36 −0 CHANGES.md
+97 −50 CONTRIBUTING.md
+153 −0 GOVERNANCE.md
+20 −20 README.md
+3 −0 cmake/FindSphinx.cmake
+15 −4 config/CMakeLists.txt
+4 −4 config/Imath.pc.in
+3 −0 config/ImathConfig.cmake.in
+0 −3 config/ImathSetup.cmake
+4 −0 docs/classes/Box.rst
+4 −0 docs/classes/Color3.rst
+4 −0 docs/classes/Color4.rst
+4 −0 docs/classes/Euler.rst
+4 −0 docs/classes/Frustum.rst
+4 −0 docs/classes/Interval.rst
+4 −0 docs/classes/Line3.rst
+4 −0 docs/classes/Matrix22.rst
+4 −0 docs/classes/Matrix33.rst
+4 −0 docs/classes/Matrix44.rst
+4 −0 docs/classes/Plane3.rst
+4 −0 docs/classes/Quat.rst
+4 −0 docs/classes/Rand32.rst
+4 −0 docs/classes/Rand48.rst
+4 −0 docs/classes/Shear6.rst
+4 −0 docs/classes/Sphere3.rst
+4 −0 docs/classes/Vec2.rst
+4 −0 docs/classes/Vec3.rst
+4 −0 docs/classes/Vec4.rst
+4 −0 docs/classes/half.rst
+4 −0 docs/conf.py
+17 −0 docs/examples/CMakeLists.txt
+1 −0 docs/examples/Color3.cpp
+1 −0 docs/examples/Color4.cpp
+2 −1 docs/examples/Euler.cpp
+1 −0 docs/examples/Frustum.cpp
+1 −0 docs/examples/Interval.cpp
+1 −0 docs/examples/Line3.cpp
+1 −0 docs/examples/Matrix22.cpp
+1 −0 docs/examples/Matrix33.cpp
+1 −0 docs/examples/Matrix44.cpp
+1 −0 docs/examples/Plane3.cpp
+1 −0 docs/examples/Quat.cpp
+1 −0 docs/examples/Sphere3.cpp
+1 −0 docs/examples/Vec2.cpp
+1 −0 docs/examples/Vec3.cpp
+1 −0 docs/examples/Vec4.cpp
+24 −0 docs/examples/intro.cpp
+4 −0 docs/float.rst
+4 −0 docs/functions/box.rst
+4 −0 docs/functions/color.rst
+4 −0 docs/functions/frame.rst
+4 −0 docs/functions/gl.rst
+4 −0 docs/functions/glu.rst
+4 −0 docs/functions/half_c.rst
+4 −0 docs/functions/line.rst
+4 −0 docs/functions/matrix.rst
+4 −0 docs/functions/random.rst
+4 −0 docs/functions/roots.rst
+4 −0 docs/functions/vec.rst
+4 −0 docs/half_conversion.rst
+4 −0 docs/half_limits.rst
+4 −0 docs/index.rst
+4 −0 docs/install.rst
+5 −20 docs/intro.rst
+2 −2 src/Imath/ImathColor.h
+1 −1 src/Imath/ImathEuler.h
+30 −0 src/Imath/ImathMatrix.h
+2 −1 src/Imath/ImathMatrixAlgo.h
+1 −1 src/Imath/ImathQuat.h
+1 −1 src/Imath/ImathShear.h
+1 −0 src/Imath/ImathVec.h
+5 −3 src/Imath/half.h
+3 −1 src/Imath/halfLimits.h
+5 −1 src/ImathTest/testExtractSHRT.cpp
+11 −10 src/ImathTest/testFun.cpp
+110 −0 src/ImathTest/testMatrix.cpp
+2 −2 src/ImathTest/testRoots.cpp
+3 −2 src/python/PyImath/PyImathBufferProtocol.cpp
+2 −2 src/python/PyImath/PyImathFixedArray.h
+21 −21 src/python/PyImath/PyImathFixedVArray.cpp
+1 −1 src/python/PyImath/PyImathMatrix33.cpp
+1 −1 src/python/PyImath/PyImathMatrix44.cpp
+3 −0 src/python/PyImathSpeedTest/pyImathSpeedTest.in