Model.curvedeletepoint#

Model.curvedeletepoint(curve_id, point_number)#

Deletes a point from the curve.

Parameters:
  • curve_id (unsigned int) – The ID of the curve.

  • point_number (int) – The point number on the curve to be deleted. Point numbering starts with 1.

Example#

Delete a point with ID 4 from a curve with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

model.curvedeletepoint(curve_id=1, point_number=4)