Importing models

From Dynamo
Revision as of 10:08, 27 April 2016 by Daniel Castaño (talk | contribs)
Jump to navigation Jump to search

Importing models refers to the creation of model objects based on coordinates and angles computed outside Dynamo. It might also imply the embedding of the resulting model into an existing catalogue entry.


With the GUI

XXXXX

From the command line

= dynamo_model_import

The basic command is dynamo_model_import.

m = dmimport(myFormat,mySource);

Here,mySource can be different objects or files that contain coordinates or angles. You specify the format of the source with myFormat. Different options are

  1. 'xyz'
  2. Template:T, if the input is a table,{{t|'motl'}


= Manual creation

Alternatively, you can generate a model from scratch and then fill it with coordinates and angles. In this case, you just wirte

m = dmodels.general();

This generates a general model where you can store coordinates with method addPoint. For instance, if you have a text file with three columns representing x,y,z coordinates, you can read it and feed the model with:

r = dread(someFile.txt); m.addPoint(r);

When you are finished adding points, you close the model with updateCrop:

m.updateCrop();