Cinema4D Splashscreens
As part of my Python and Maya research, I created a speculative Cinema4D splashscreen animation by scripting a tool for making a procedural matrix of 3D surfaces with controllable position, scale, and orientation. The focus was on composition and aesthetics, with final renders produced in RenderMan.
References
Inspired by the proceduralism and the theme of repetition of Tendril Studio and Velvet Spectrum‘s splash screen designs for Maxon Cinema 4D.
How to install
Download mandala_generator.zip
Unzip and put the folder under your Maya script folder
Windows: C:/ user/username/Document/Maya/scripts
Macintosh: Users/username/Documents/Maya/scripts
Open the Script Editor in Maya and switch to the Python tab.
Drag and drop the run.py file into the bottom panel. OR use the code below to run Mandala Generator.
Select Command > Execute
You could also highlight the script and drag it to the custom shelf.
import sys
sys.path.append('/Users/ddu/Documents/maya/scripts/mandala_generator')
import mandala_gen
reload(mandala_gen)
dialog = mandala_gen.main()
#if reloaded needed, uncomment the code below
#import(mandala_tabs)
#import(mandala_utils)
#reload(mandala_tabs)
#reload(mandala_utils)