"Great customer service. The folks at Novedge were super helpful in navigating a somewhat complicated order including software upgrades and serial numbers in various stages of inactivity. They were friendly and helpful throughout the process.."
Ruben Ruckmark
"Quick & very helpful. We have been using Novedge for years and are very happy with their quick service when we need to make a purchase and excellent support resolving any issues."
Will Woodson
"Scott is the best. He reminds me about subscriptions dates, guides me in the correct direction for updates. He always responds promptly to me. He is literally the reason I continue to work with Novedge and will do so in the future."
Edward Mchugh
"Calvin Lok is “the man”. After my purchase of Sketchup 2021, he called me and provided step-by-step instructions to ease me through difficulties I was having with the setup of my new software."
Mike Borzage
June 22, 2025 2 min read
Enhance your Cinema 4D workflow by leveraging Python scripting to automate repetitive tasks, create custom tools, and streamline your projects.
Cinema 4D comes with a built-in Python interpreter, making it easy to start scripting without additional installations. Here's how you can begin:
Python scripting can significantly improve efficiency in various aspects:
Below is a basic script that creates multiple cubes arranged in a grid:
import c4d
def main():
doc.StartUndo()
for x in range(5):
for z in range(5):
cube = c4d.BaseObject(c4d.Ocube)
cube.SetAbsPos(c4d.Vector(x * 200, 0, z * 200))
doc.AddUndo(c4d.UNDOTYPE_NEW, cube)
doc.InsertObject(cube)
doc.EndUndo()
c4d.EventAdd()
if __name__=='__main__':
main()
This script creates a 5x5 grid of cubes spaced 200 units apart. You can adjust the range and spacing to suit your needs.
doc.StartUndo()
and doc.EndUndo()
to enable undo functionality.Expand your knowledge of Python scripting in Cinema 4D by exploring tutorials and resources. NOVEDGE offers a wide range of Cinema 4D products and educational materials to help you master this powerful tool.
Connect with other artists and developers to share scripts, ask questions, and collaborate on projects:
By integrating Python scripting into your workflow, you can unlock new possibilities and significantly enhance your productivity in Cinema 4D.
Visit NOVEDGE for the latest updates and resources on Cinema 4D and other professional 3D software.
You can find all the Cinema 4D products on the NOVEDGE web site at this page.
July 09, 2025 14 min read
Read MoreJuly 09, 2025 2 min read
Read MoreJuly 09, 2025 2 min read
Read MoreSign up to get the latest on sales, new releases and more …