Linking surfaces into point models

From Dynamo
Revision as of 11:36, 14 July 2017 by Daniel Castaño (talk | contribs) (Created page with " Linking surfaces with point models is an useful way to get initial orientations of particles. The idea is to assign to each <tt>crop_point</tt> in the general model a <tt>cro...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Linking surfaces with point models is an useful way to get initial orientations of particles. The idea is to assign to each crop_point in the general model a crop_angle that is defined with reference to the support surface. Mathematically, Dynamo locates the closest triangle in the triangulation of the supporting surface, reads the normal, and formats it to provide the three euler angles needed to crop a particle.


Command line

Let's assume you have to models in your workspace: p is a general point model, and s is a surface model (for instance of class membraneByLevels)

Make certain that s contains already a depiction triangulation. This is created with the black triangle icon in the workflow for surfaces, or with the method createMesh from the command line.

You can directly link the mesh inside surface s into points p by:

p.linkedSurface = t.mesh.triangulation

After running this assignment the model p will be able to recompute its crop_angles with reference to its linked surface by:

p.cropAnglesFromLinkedSurface();


Linking filaments

This technique can also be used to set orientations defined as normals from a filament. In this case, for a filament model f, the linkage is performed through:

p.linkedBackbone = f.backbone