Model.CE_GlobalSetDouble#

Model.CE_GlobalSetDouble(name, value)#

Sets global double parameters to control the display of connectors.

Parameters:
  • name (hwString) –

    The name of the parameter to set:

    • g_ce_size

    Determines the display size of connectors.

    Range > 0.0

  • value (double) – The double value to set for the name parameter.

Example#

Set the global connector display size to 2.0#
import hm
import hm.entities as ent

model = hm.Model()

model.CE_GlobalSetDouble(name=g_ce_size, value=2.0)