File size: 976 Bytes
985c397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# SPDX-License-Identifier: LGPL-2.1-or-later

from __future__ import annotations

from Base.Metadata import export
from Base.PyObjectBase import PyObjectBase
from Part.App.TopoShapeCompound import TopoShapeCompound
from Part.App.TopoShape import TopoShape

@export(
    PythonName="Part.ShapeFix.FreeBounds",
    Include="ShapeFix_FreeBounds.hxx",
    Constructor=True,
    Delete=True,
)
class ShapeFix_FreeBounds(PyObjectBase):
    """
    This class is intended to output free bounds of the shape

    Author: Werner Mayer (wmayer@users.sourceforge.net)
    Licence: LGPL
    """

    def closedWires(self) -> TopoShapeCompound:
        """
        Returns compound of closed wires out of free edges
        """
        ...

    def openWires(self) -> TopoShapeCompound:
        """
        Returns compound of open wires out of free edges
        """
        ...

    def shape(self) -> TopoShape:
        """
        Returns modified source shape
        """
        ...