Skip to content

Layer Settings

layer_settings

Source code in src/cadwork/layer_settings.pyi
 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
class layer_settings:

    def get_layer(self) -> int:
        """get layer

        Returns:
            int
        """

    def set_layer(self, layer_number: int) -> None:
        """set layer

        Parameters:
            layer_number: layer_number

        Returns:
            None
        """

    def is_without_output(self) -> bool:
        """is without output

        Returns:
            bool
        """

    def set_without_output(self) -> None:
        """set without output

        Returns:
            None
        """

    def is_with_dimensions_output(self) -> bool:
        """is with dimensions output

        Returns:
            bool
        """

    def set_with_dimensions_output(self) -> None:
        """set with dimensions output

        Returns:
            None
        """

    def is_without_dimensions_output(self) -> bool:
        """is without dimensions output

        Returns:
            bool
        """

    def set_without_dimensions_output(self) -> None:
        """set without dimensions output

        Returns:
            None
        """

    def is_with_attributes_output(self) -> bool:
        """is with attributes output

        Returns:
            bool
        """

    def set_with_attributes_output(self) -> None:
        """set with attributes output

        Returns:
            None
        """

get_layer()

get layer

Returns:

Type Description
int

int

Source code in src/cadwork/layer_settings.pyi
3
4
5
6
7
8
def get_layer(self) -> int:
    """get layer

    Returns:
        int
    """

is_with_attributes_output()

is with attributes output

Returns:

Type Description
bool

bool

Source code in src/cadwork/layer_settings.pyi
62
63
64
65
66
67
def is_with_attributes_output(self) -> bool:
    """is with attributes output

    Returns:
        bool
    """

is_with_dimensions_output()

is with dimensions output

Returns:

Type Description
bool

bool

Source code in src/cadwork/layer_settings.pyi
34
35
36
37
38
39
def is_with_dimensions_output(self) -> bool:
    """is with dimensions output

    Returns:
        bool
    """

is_without_dimensions_output()

is without dimensions output

Returns:

Type Description
bool

bool

Source code in src/cadwork/layer_settings.pyi
48
49
50
51
52
53
def is_without_dimensions_output(self) -> bool:
    """is without dimensions output

    Returns:
        bool
    """

is_without_output()

is without output

Returns:

Type Description
bool

bool

Source code in src/cadwork/layer_settings.pyi
20
21
22
23
24
25
def is_without_output(self) -> bool:
    """is without output

    Returns:
        bool
    """

set_layer(layer_number)

set layer

Parameters:

Name Type Description Default
layer_number int

layer_number

required

Returns:

Type Description
None

None

Source code in src/cadwork/layer_settings.pyi
10
11
12
13
14
15
16
17
18
def set_layer(self, layer_number: int) -> None:
    """set layer

    Parameters:
        layer_number: layer_number

    Returns:
        None
    """

set_with_attributes_output()

set with attributes output

Returns:

Type Description
None

None

Source code in src/cadwork/layer_settings.pyi
69
70
71
72
73
74
def set_with_attributes_output(self) -> None:
    """set with attributes output

    Returns:
        None
    """

set_with_dimensions_output()

set with dimensions output

Returns:

Type Description
None

None

Source code in src/cadwork/layer_settings.pyi
41
42
43
44
45
46
def set_with_dimensions_output(self) -> None:
    """set with dimensions output

    Returns:
        None
    """

set_without_dimensions_output()

set without dimensions output

Returns:

Type Description
None

None

Source code in src/cadwork/layer_settings.pyi
55
56
57
58
59
60
def set_without_dimensions_output(self) -> None:
    """set without dimensions output

    Returns:
        None
    """

set_without_output()

set without output

Returns:

Type Description
None

None

Source code in src/cadwork/layer_settings.pyi
27
28
29
30
31
32
def set_without_output(self) -> None:
    """set without output

    Returns:
        None
    """