Model.hiddenlinemethod#

Model.hiddenlinemethod(method)#

Selects the algorithm used to perform hidden line removal.

Parameters:

method (int) –

Key indicating the method of hidden line algorithm to use. Valid options are:

0 - Centroidal

1 - Zbuffer

Example#

Selectin Centroidal algorithm for hidden line removal.#
import hm
import hm.entities as ent

model = hm.Model()

model.hiddenlinemethod(method=0)