CylinderFillOptions#

class ansys.stk.core.graphics.CylinderFillOptions#

IntFlag

Overview#

WALL

Fill the cylinder’s wall.

BOTTOM_CAP

Fill the cylinder’s bottom cap.

TOP_CAP

Fill the cylinder’s top cap.

ALL

Completely fill the cylinder, including its wall, bottom, and top cap.

Examples#

Combine enumerations with the logical OR operator

from ansys.stk.core.graphics import CylinderFillOptions

# CylinderFillOptions inherits from enum.IntFlag and may be combined
# using the `|` operator
cyl_fill = CylinderFillOptions.BOTTOM_CAP | CylinderFillOptions.TOP_CAP

Import detail#

from ansys.stk.core.graphics import CylinderFillOptions