Model.nodecreateatpointmark#

Model.nodecreateatpointmark(collection)#

The function creates free nodes at the locations specified by points on the input collection.

Parameters:

collection (Collection) – The collection containing the input point entities.

Example#

Create free nodes at the location of the points ID 123 and 45#
import hm
import hm.entities as ent

model = hm.Model()

model.nodecreateatpointmark(collection=hm.Collection(model, ent.Point, [123, 45]))