Python bindings for Coin3D 3D graphics library
Python bindings to coin3d
$ python3 -c "from pivy import coin; print(coin.SoDB.getNumRenderActions())"$ python3 -c "from pivy.coin import *; root = SoSeparator(); root.addChild(SoCube())"$ python3 << 'EOF'
from pivy import coin
scene = coin.SoSeparator()
sphere = coin.SoSphere()
scene.addChild(sphere)
EOF$ python3 -c "from pivy.coin import *; viewer = SoXtExaminerViewer(); viewer.show()"$ python3 -c "from pivy.coin import *; root = SoSeparator(); camera = SoPerspectiveCamera(); root.addChild(camera)"