Model.linesplitatjoint#
- Model.linesplitatjoint(line, node)#
Splits a line at a joint.
- Parameters:
line (Entity) – The line entity which should be split.
node (Entity) – The node entity which represents a position close to the joint where the line should be split.
Example#
Split the line with ID 10 at node with ID 3#import hm import hm.entities as ent model = hm.Model() model.linesplitatjoint(line=ent.Line(model, 10), node=ent.Node(model, 3))