Model.pointcreateatnodemark#

Model.pointcreateatnodemark(collection)#

The function creates free points at locations specified by nodes.

Parameters:

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

Example#

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

model = hm.Model()

model.pointcreateatnodemark(collection=hm.Collection(model, ent.Node, [123, 45]))