2017-10-20 14:52:41 +00:00
|
|
|
# gen-backend
|
|
|
|
|
|
|
|
Requirements:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
docker pull jmsgrogan/python-generator
|
|
|
|
```
|
|
|
|
|
|
|
|
Launch:
|
|
|
|
|
|
|
|
```bash
|
2017-10-23 11:54:11 +00:00
|
|
|
blender --background --python generate_shape.py -- '{"shape":"cone", "output":"test456"}'
|
|
|
|
blender --background --python apply_texture.py -- '{"shape":"cone", "output":"test456", "height":"1.0", "radius":"1.0"}'
|
|
|
|
blender --background --python final_render.py -- '{"shape":"cone", "output":"test456", "height":"1.0", "radius":"1.0", "color":"[244,123,123]"}'
|
2017-10-20 14:52:41 +00:00
|
|
|
```
|