0

I am looking to utilize Autodesk Fusion 360 to generate a huge number of shapes (tens of thousands) in 3D model form, so I need a way to operate it non-interactively.

I am aware of the Fusion 360 API documentation here https://autodeskfusion360.github.io/

But I was wondering if there is a known way to do this.

King Dedede
  • 970
  • 1
  • 12
  • 28

1 Answers1

-1

Essentially there are four main steps to create:

  1. Create base shape (i.e. sphere, cube, trapezoid etc..) and save
  2. Define and name each dimension on the shape as either dependent on another (ex: height/2) or an input (ex: height) until your model is fully constrained and controlled by parameters
  3. Create a program (python is friendly) that inputs values to named inputs
  4. Connect to a database within the program (using odbc or similar) that will iterate through shape characteristics
  5. Input necessary characteristics from database and save unique shape within your program

You will have to be more specific in the question to clarify the answer. Please include as detailed an example as you can and I'll edit my answer.

brddawg
  • 434
  • 8
  • 19