├── .gitignore ├── LICENSE ├── README.md ├── bd_animation ├── __init__.py └── animation.py ├── docs ├── arm.png ├── arm_uncentered.png ├── assembled_crankshft.png ├── base.png ├── crankshaft.png ├── disk.png ├── disk_arm_animated.gif ├── disk_arm_animationgroup.png ├── disk_arm_uncentered_animated.gif ├── engine.gif ├── engine.md ├── engine.png ├── engine1.gif ├── engine2.gif ├── engine_parts.png ├── jansen.gif ├── jansen.md ├── parts.png ├── parts135.png ├── piston.png ├── rod.png └── rod_piston.png ├── examples ├── disk_arm.py ├── disk_arm2.py ├── engine.py ├── hexapod.py └── jansen.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/README.md -------------------------------------------------------------------------------- /bd_animation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/bd_animation/__init__.py -------------------------------------------------------------------------------- /bd_animation/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/bd_animation/animation.py -------------------------------------------------------------------------------- /docs/arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/arm.png -------------------------------------------------------------------------------- /docs/arm_uncentered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/arm_uncentered.png -------------------------------------------------------------------------------- /docs/assembled_crankshft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/assembled_crankshft.png -------------------------------------------------------------------------------- /docs/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/base.png -------------------------------------------------------------------------------- /docs/crankshaft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/crankshaft.png -------------------------------------------------------------------------------- /docs/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/disk.png -------------------------------------------------------------------------------- /docs/disk_arm_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/disk_arm_animated.gif -------------------------------------------------------------------------------- /docs/disk_arm_animationgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/disk_arm_animationgroup.png -------------------------------------------------------------------------------- /docs/disk_arm_uncentered_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/disk_arm_uncentered_animated.gif -------------------------------------------------------------------------------- /docs/engine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/engine.gif -------------------------------------------------------------------------------- /docs/engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/engine.md -------------------------------------------------------------------------------- /docs/engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/engine.png -------------------------------------------------------------------------------- /docs/engine1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/engine1.gif -------------------------------------------------------------------------------- /docs/engine2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/engine2.gif -------------------------------------------------------------------------------- /docs/engine_parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/engine_parts.png -------------------------------------------------------------------------------- /docs/jansen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/jansen.gif -------------------------------------------------------------------------------- /docs/jansen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/jansen.md -------------------------------------------------------------------------------- /docs/parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/parts.png -------------------------------------------------------------------------------- /docs/parts135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/parts135.png -------------------------------------------------------------------------------- /docs/piston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/piston.png -------------------------------------------------------------------------------- /docs/rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/rod.png -------------------------------------------------------------------------------- /docs/rod_piston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/docs/rod_piston.png -------------------------------------------------------------------------------- /examples/disk_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/examples/disk_arm.py -------------------------------------------------------------------------------- /examples/disk_arm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/examples/disk_arm2.py -------------------------------------------------------------------------------- /examples/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/examples/engine.py -------------------------------------------------------------------------------- /examples/hexapod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/examples/hexapod.py -------------------------------------------------------------------------------- /examples/jansen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/examples/jansen.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bernhard-42/bd_animation/HEAD/setup.py --------------------------------------------------------------------------------