Hello,
I'm trying to use PyAnsys Geometry to build a model. Now I want to spilt the face like shown below.

I checked the document, it seems only mentioned the body spilt.
Is there any function can spilt the face?
from ansys.geometry.core import launch_modeler
from ansys.geometry.core.math import Point2D, Point3D
from ansys.geometry.core.misc import UNITS
from ansys.geometry.core.sketch import Sketch
m = launch_modeler()
design = m.create_design("CylinderExample")
sketch = Sketch()
sketch.circle(Point2D([0, 0]), 10 * UNITS.mm)
cylinder = design.extrude_sketch(
name="Cylinder",
sketch=sketch,
distance=100 * UNITS.mm
)
cylinder.plot()