pyvista_cad.CadDataSetAccessor.to_brep# CadDataSetAccessor.to_brep(path, /)[source]# Write to path as a faceted BREP file. Examples >>> import os >>> import tempfile >>> import pyvista as pv >>> import pyvista_cad >>> out = os.path.join(tempfile.mkdtemp(), 'o.brep') >>> pv.Sphere().cad.to_brep(out) >>> os.path.exists(out) True Parameters: path (str | PathLike[str]) Return type: None