CylinderFillOptions#
- class ansys.stk.core.graphics.CylinderFillOptions#
IntFlag
Overview#
|
Fill the cylinderβs wall. |
|
Fill the cylinderβs bottom cap. |
|
Fill the cylinderβs top cap. |
|
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