Model.setcuttingplanesbase#

Model.setcuttingplanesbase(x, y, z)#

Sets the origin coordinates for all cutting planes.

Parameters:
  • x (double) – The x coordinate of the origin.

  • y (double) – The y coordinate of the origin.

  • z (double) – The z coordinate of the origin.

Example#

Set the cut plane origin to (5.0, 0.0, 7.0)#
import hm
import hm.entities as ent

model = hm.Model()

model.setcuttingplanesbase(x=5.0, y=0.0, z=7.0)