Skip to content

Differences from the last to the current version

  • What all counts as a change:
    • New functions
    • Changed function descriptions (docstrings)
    • New classes
    • Changed classes descriptions (docstrings)
    • New enums
    • Changed enums descriptions (docstrings)

New Items

Functions attribute_controller

is_attribute_visible_in_modify_window

1
2
3
4
5
6
7
8
9
def is_attribute_visible_in_modify_window(number: int) ->bool:
    """is attribute visible in modify window

    Parameters:
        number: number

    Returns:
        bool
    """

set_attribute_visibility_in_modify_window

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_attribute_visibility_in_modify_window(number: int, visibility: bool
    ) ->None:
    """set attribute visibility in modify window

    Parameters:
        number: number
        visibility: visibility

    Returns:
        None
    """

set_cutting_set

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_cutting_set(element_id_list: List[int], cutting_set_name: str) ->bool:
    """set cutting set

    Parameters:
        element_id_list: element_id_list
        cutting_set_name: cutting_set_name

    Returns:
        bool
    """

New Items

Functions bim_controller

get_ifc_predefined_type

1
2
3
4
5
6
7
8
9
def get_ifc_predefined_type(element_id: int) ->ifc_predefined_type:
    """Get the IfcPredefinedType of an element.

    Parameters:
        element_id: element_id

    Returns:
        IfcPredefinedType Wrapper
    """

set_ifc_predefined_type

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_ifc_predefined_type(element_i_ds: List[int], predefined_type: None
    ) ->None:
    """Set a predefined type to elements. Attention, if you change the PredefinedType of the elements, you are responsible for ensuring that valid types are set

    Parameters:
        element_i_ds: element_i_ds
        predefined_type: predefined_type

    Returns:
        None
    """

New Items

Functions dimension_controller

get_distance

1
2
3
4
5
6
7
8
9
def get_distance(element: int) ->point_3d:
    """Get the distance to the dimension reference point. The point is in the plane of the dimensioning.

    Parameters:
        element: element

    Returns:
        point_3d
    """

get_plane_normal

1
2
3
4
5
6
7
8
9
def get_plane_normal(element: int) ->point_3d:
    """Get the plane normal

    Parameters:
        element: element

    Returns:
        normal
    """

get_plane_xl

1
2
3
4
5
6
7
8
9
def get_plane_xl(element: int) ->point_3d:
    """Get the plane x direction

    Parameters:
        element: element

    Returns:
        x direction
    """

get_segment_count

1
2
3
4
5
6
7
8
9
def get_segment_count(element: int) ->int:
    """Get count of segments

    Parameters:
        element: element

    Returns:
        segment count
    """

get_segment_distance

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def get_segment_distance(element: int, segment_index: int) ->float:
    """Get the distance from the anchor point to the dimension segment

    Parameters:
        element: element
        segment_index: segment_index

    Returns:
        distance
    """

New Items

Functions element_controller

convert_surfaces_to_roof_surfaces

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def convert_surfaces_to_roof_surfaces(elements: List[int], roof_name: str
    ) ->None:
    """converts surfaces to roof surfaces

    Parameters:
        elements: elements
        roof_name: roof_name

    Returns:
        None
    """

start_standard_element_dialog

1
2
3
4
5
6
7
8
9
def start_standard_element_dialog(standard_element_type: None) ->str:
    """Starts the standard element dialogue based on the chosen element type

    Parameters:
        standard_element_type: standard_element_type

    Returns:
        Returns guid of selected standard element if item is valid, else null
    """

remove_standard_connector_axis

1
2
3
4
5
6
7
8
9
def remove_standard_connector_axis(a0: str) ->None:
    """remove standard connector axis

    Parameters:
        a0: a0

    Returns:
        None
    """

remove_standard_beam

1
2
3
4
5
6
7
8
9
def remove_standard_beam(guid: str) ->None:
    """remove standard beam

    Parameters:
        guid: guid

    Returns:
        None
    """

remove_standard_panel

1
2
3
4
5
6
7
8
9
def remove_standard_panel(guid: str) ->None:
    """remove standard panel

    Parameters:
        guid: guid

    Returns:
        None
    """

remove_standard_container

1
2
3
4
5
6
7
8
9
def remove_standard_container(guid: str) ->None:
    """remove standard container

    Parameters:
        guid: guid

    Returns:
        None
    """

remove_standard_export_solid

1
2
3
4
5
6
7
8
9
def remove_standard_export_solid(guid: str) ->None:
    """remove standard export solid

    Parameters:
        guid: guid

    Returns:
        None
    """

get_user_element_ids_with_count

1
2
3
4
5
6
7
8
9
def get_user_element_ids_with_count(count: int) ->List[int]:
    """get user element ids with count

    Parameters:
        count: count

    Returns:
        List[int]
    """

cut_scarf_straight

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
def cut_scarf_straight(elements: List[int], length: float, depth: float,
    clearance_length: float, clearance_depth: float, clearance_hook: float,
    drilling_count: int, drilling_diameter: float, drilling_tolerance: float
    ) ->None:
    """cut scarf straight

    Parameters:
        elements: elements
        length: length
        depth: depth
        clearance_length: clearance_length
        clearance_depth: clearance_depth
        clearance_hook: clearance_hook
        drilling_count: drilling_count
        drilling_diameter: drilling_diameter
        drilling_tolerance: drilling_tolerance

    Returns:
        None
    """

cut_scarf_diagonal

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
def cut_scarf_diagonal(elements: List[int], length: float, depth: float,
    clearance_length: float, clearance_depth: float, drilling_count: int,
    drilling_diameter: float, drilling_tolerance: float) ->None:
    """cut scarf diagonal

    Parameters:
        elements: elements
        length: length
        depth: depth
        clearance_length: clearance_length
        clearance_depth: clearance_depth
        drilling_count: drilling_count
        drilling_diameter: drilling_diameter
        drilling_tolerance: drilling_tolerance

    Returns:
        None
    """

cut_scarf_with_wedge

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
def cut_scarf_with_wedge(elements: List[int], length: float, depth: float,
    clearance_length: float, clearance_depth: float, wedge_width: float,
    drilling_count: int, drilling_diameter: float, drilling_tolerance: float
    ) ->None:
    """cut scarf with wedge

    Parameters:
        elements: elements
        length: length
        depth: depth
        clearance_length: clearance_length
        clearance_depth: clearance_depth
        wedge_width: wedge_width
        drilling_count: drilling_count
        drilling_diameter: drilling_diameter
        drilling_tolerance: drilling_tolerance

    Returns:
        None
    """

cut_beam_end_profile

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def cut_beam_end_profile(elements: List[int], profile_name: str,
    on_start_face: bool, on_end_face: bool) ->None:
    """cut beam end profile

    Parameters:
        elements: elements
        profile_name: profile_name
        on_start_face: on_start_face
        on_end_face: on_end_face

    Returns:
        None
    """

New Items

Functions geometry_controller

get_round_machine_rough_part_negative_width

1
2
3
4
5
6
7
8
9
def get_round_machine_rough_part_negative_width(element_id: int) ->bool:
    """get round machine rough part negative width

    Parameters:
        element_id: element_id

    Returns:
        bool
    """

set_round_machine_rough_part_negative_width

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_round_machine_rough_part_negative_width(elements: List[int], value:
    bool) ->None:
    """set round machine rough part negative width

    Parameters:
        elements: elements
        value: value

    Returns:
        None
    """

get_round_machine_rough_part_positive_width

1
2
3
4
5
6
7
8
9
def get_round_machine_rough_part_positive_width(element_id: int) ->bool:
    """get round machine rough part positive width

    Parameters:
        element_id: element_id

    Returns:
        bool
    """

set_round_machine_rough_part_positive_width

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_round_machine_rough_part_positive_width(elements: List[int], value:
    bool) ->None:
    """set round machine rough part positive width

    Parameters:
        elements: elements
        value: value

    Returns:
        None
    """

get_round_machine_rough_part_negative_height

1
2
3
4
5
6
7
8
9
def get_round_machine_rough_part_negative_height(element_id: int) ->bool:
    """get round machine rough part negative height

    Parameters:
        element_id: element_id

    Returns:
        bool
    """

set_round_machine_rough_part_negative_height

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_round_machine_rough_part_negative_height(elements: List[int], value:
    bool) ->None:
    """set round machine rough part negative height

    Parameters:
        elements: elements
        value: value

    Returns:
        None
    """

get_round_machine_rough_part_positive_height

1
2
3
4
5
6
7
8
9
def get_round_machine_rough_part_positive_height(element_id: int) ->bool:
    """get round machine rough part positive height

    Parameters:
        element_id: element_id

    Returns:
        bool
    """

set_round_machine_rough_part_positive_height

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_round_machine_rough_part_positive_height(elements: List[int], value:
    bool) ->None:
    """set round machine rough part positive height

    Parameters:
        elements: elements
        value: value

    Returns:
        None
    """

get_round_machine_rough_part_negative_length

1
2
3
4
5
6
7
8
9
def get_round_machine_rough_part_negative_length(element_id: int) ->bool:
    """get round machine rough part negative length

    Parameters:
        element_id: element_id

    Returns:
        bool
    """

set_round_machine_rough_part_negative_length

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_round_machine_rough_part_negative_length(elements: List[int], value:
    bool) ->None:
    """set round machine rough part negative length

    Parameters:
        elements: elements
        value: value

    Returns:
        None
    """

get_round_machine_rough_part_positive_length

1
2
3
4
5
6
7
8
9
def get_round_machine_rough_part_positive_length(element_id: int) ->bool:
    """get round machine rough part positive length

    Parameters:
        element_id: element_id

    Returns:
        bool
    """

set_round_machine_rough_part_positive_length

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_round_machine_rough_part_positive_length(elements: List[int], value:
    bool) ->None:
    """set round machine rough part positive length

    Parameters:
        elements: elements
        value: value

    Returns:
        None
    """

get_standard_element_width_from_guid

1
2
3
4
5
6
7
8
9
def get_standard_element_width_from_guid(standard_element_guid: str) ->float:
    """get standard element width from guid

    Parameters:
        standard_element_guid: standard_element_guid

    Returns:
        float
    """

get_standard_element_height_from_guid

1
2
3
4
5
6
7
8
9
def get_standard_element_height_from_guid(standard_element_guid: str) ->float:
    """get standard element height from guid

    Parameters:
        standard_element_guid: standard_element_guid

    Returns:
        float
    """

get_standard_element_length_from_guid

1
2
3
4
5
6
7
8
9
def get_standard_element_length_from_guid(standard_element_guid: str) ->float:
    """get standard element length from guid

    Parameters:
        standard_element_guid: standard_element_guid

    Returns:
        float
    """

get_standard_element_width_from_name

1
2
3
4
5
6
7
8
9
def get_standard_element_width_from_name(standard_element_name: str) ->float:
    """get standard element width from name

    Parameters:
        standard_element_name: standard_element_name

    Returns:
        float
    """

get_standard_element_height_from_name

1
2
3
4
5
6
7
8
9
def get_standard_element_height_from_name(standard_element_name: str) ->float:
    """get standard element height from name

    Parameters:
        standard_element_name: standard_element_name

    Returns:
        float
    """

get_standard_element_length_from_name

1
2
3
4
5
6
7
8
9
def get_standard_element_length_from_name(standard_element_name: str) ->float:
    """get standard element length from name

    Parameters:
        standard_element_name: standard_element_name

    Returns:
        float
    """

New Items

Functions list_controller

export_cover_list

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def export_cover_list(element_id_list: List[int], file_path: str) ->None:
    """Exports a Wall/Roof/Floor list

    Parameters:
        element_id_list: element_id_list
        file_path: file_path

    Returns:
        None
    """

export_cover_list_with_settings

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
def export_cover_list_with_settings(element_id_list: List[int], file_path:
    str, settings_file_path: str) ->None:
    """Exports a Wall/Roof/Floor list with settings file

    Parameters:
        element_id_list: element_id_list
        file_path: file_path
        settings_file_path: settings_file_path

    Returns:
        None
    """

New Items

Functions material_controller

get_material_color_assignment_for_nodes

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_nodes(a0: int) ->int:
    """get material color assignment for nodes

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_nodes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_material_color_assignment_for_nodes(a0: int, a1: int) ->None:
    """set material color assignment for nodes

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_material_color_assignment_for_standard_axes

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_standard_axes(a0: int) ->int:
    """get material color assignment for standard axes

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_standard_axes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_material_color_assignment_for_standard_axes(a0: int, a1: int) ->None:
    """set material color assignment for standard axes

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_material_color_assignment_for_drillings

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_drillings(a0: int) ->int:
    """get material color assignment for drillings

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_drillings

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_material_color_assignment_for_drillings(a0: int, a1: int) ->None:
    """set material color assignment for drillings

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_material_color_assignment_for_mep_axes

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_mep_axes(a0: int) ->int:
    """get material color assignment for mep axes

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_mep_axes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_material_color_assignment_for_mep_axes(a0: int, a1: int) ->None:
    """set material color assignment for mep axes

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_material_color_assignment_for_beams

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_beams(a0: int) ->int:
    """get material color assignment for beams

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_beams

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_material_color_assignment_for_beams(a0: int, a1: int) ->None:
    """set material color assignment for beams

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_material_color_assignment_for_panels

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_panels(a0: int) ->int:
    """get material color assignment for panels

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_panels

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_material_color_assignment_for_panels(a0: int, a1: int) ->None:
    """set material color assignment for panels

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_material_color_assignment_for_auxiliary_elements

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_auxiliary_elements(a0: int) ->int:
    """get material color assignment for auxiliary elements

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_auxiliary_elements

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def set_material_color_assignment_for_auxiliary_elements(a0: int, a1: int
    ) ->None:
    """set material color assignment for auxiliary elements

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_material_color_assignment_for_surfaces

1
2
3
4
5
6
7
8
9
def get_material_color_assignment_for_surfaces(a0: int) ->int:
    """get material color assignment for surfaces

    Parameters:
        a0: a0

    Returns:
        int
    """

set_material_color_assignment_for_surfaces

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_material_color_assignment_for_surfaces(a0: int, a1: int) ->None:
    """set material color assignment for surfaces

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_texture_color

1
2
3
4
5
6
7
8
9
def get_texture_color(a0: int) ->int:
    """get texture color

    Parameters:
        a0: a0

    Returns:
        int
    """

set_texture_color

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_texture_color(a0: int, a1: int) ->None:
    """set texture color

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_texture_transparency

1
2
3
4
5
6
7
8
9
def get_texture_transparency(a0: int) ->int:
    """get texture transparency

    Parameters:
        a0: a0

    Returns:
        int
    """

set_texture_transparency

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_texture_transparency(a0: int, a1: int) ->None:
    """set texture transparency

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_texture_rotation_angle

1
2
3
4
5
6
7
8
9
def get_texture_rotation_angle(a0: int) ->float:
    """get texture rotation angle

    Parameters:
        a0: a0

    Returns:
        float
    """

set_texture_rotation_angle

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_texture_rotation_angle(a0: int, a1: float) ->None:
    """set texture rotation angle

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_texture_length_alignment

1
2
3
4
5
6
7
8
9
def get_texture_length_alignment(a0: int) ->bool:
    """get texture length alignment

    Parameters:
        a0: a0

    Returns:
        bool
    """

set_texture_length_alignment

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_texture_length_alignment(a0: int, a1: bool) ->None:
    """set texture length alignment

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_texture_zoom_x

1
2
3
4
5
6
7
8
9
def get_texture_zoom_x(a0: int) ->float:
    """get texture zoom x

    Parameters:
        a0: a0

    Returns:
        float
    """

set_texture_zoom_x

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_texture_zoom_x(a0: int, a1: float) ->None:
    """set texture zoom x

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

get_texture_zoom_y

1
2
3
4
5
6
7
8
9
def get_texture_zoom_y(a0: int) ->float:
    """get texture zoom y

    Parameters:
        a0: a0

    Returns:
        float
    """

set_texture_zoom_y

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def set_texture_zoom_y(a0: int, a1: float) ->None:
    """set texture zoom y

    Parameters:
        a0: a0
        a1: a1

    Returns:
        None
    """

New Items

Functions scene_controller

is_scene_present

1
2
3
4
5
6
7
8
9
def is_scene_present(name: str) ->bool:
    """Queries of scene with name is present

    Parameters:
        name: name

    Returns:
        presence of scene
    """

set_group_tab_color

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def set_group_tab_color(scene_group_name: str, red: int, green: int, blue: int
    ) ->None:
    """set group tab color

    Parameters:
        scene_group_name: scene_group_name
        red: red
        green: green
        blue: blue

    Returns:
        None
    """

rename_scene_group

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def rename_scene_group(old_name: str, new_name: str) ->None:
    """rename scene group

    Parameters:
        old_name: old_name
        new_name: new_name

    Returns:
        None
    """

get_group_index_by_name

1
2
3
4
5
6
7
8
9
def get_group_index_by_name(scene_group_name: str) ->int:
    """get group index by name

    Parameters:
        scene_group_name: scene_group_name

    Returns:
        int
    """

rename_scene_group_by_index

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def rename_scene_group_by_index(group_index: int, new_name: str) ->None:
    """rename scene group by index

    Parameters:
        group_index: group_index
        new_name: new_name

    Returns:
        None
    """

group_scences_with_name

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def group_scences_with_name(a0: List[str], a1: str) ->int:
    """group scences with name

    Parameters:
        a0: a0
        a1: a1

    Returns:
        int
    """

New Items

Functions utility_controller

get_3d_main_window_geometry

1
2
3
4
5
6
def get_3d_main_window_geometry() ->'window_geometry':
    """get 3d main window geometry

    Returns:
        window geometry
    """

get_project_data_keys

1
2
3
4
5
6
def get_project_data_keys() ->List[str]:
    """get project data keys

    Returns:
        List[str]
    """

New Items

Classes cadwork

coordinate_system_data

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
class coordinate_system_data:

    def get_p1(self) ->point_3d:
        """get p1

        Returns:
            point_3d
        """

    def get_p2(self) ->point_3d:
        """get p2

        Returns:
            point_3d
        """

    def get_p3(self) ->point_3d:
        """get p3

        Returns:
            point_3d
        """

New Items

Classes cadwork

ifc_predefined_type

   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
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
class ifc_predefined_type:

    def is_none(self) ->bool:
        """is none

        Returns:
            bool
        """

    def is_ceiling(self) ->bool:
        """is ceiling

        Returns:
            bool
        """

    def is_cladding(self) ->bool:
        """is cladding

        Returns:
            bool
        """

    def is_flooring(self) ->bool:
        """is flooring

        Returns:
            bool
        """

    def is_insulation(self) ->bool:
        """is insulation

        Returns:
            bool
        """

    def is_membrane(self) ->bool:
        """is membrane

        Returns:
            bool
        """

    def is_roofing(self) ->bool:
        """is roofing

        Returns:
            bool
        """

    def is_sleeving(self) ->bool:
        """is sleeving

        Returns:
            bool
        """

    def is_wrapping(self) ->bool:
        """is wrapping

        Returns:
            bool
        """

    def is_footing_beam(self) ->bool:
        """is footing beam

        Returns:
            bool
        """

    def is_pad_footing(self) ->bool:
        """is pad footing

        Returns:
            bool
        """

    def is_pile_cap(self) ->bool:
        """is pile cap

        Returns:
            bool
        """

    def is_strip_footing(self) ->bool:
        """is strip footing

        Returns:
            bool
        """

    def is_cohesion(self) ->bool:
        """is cohesion

        Returns:
            bool
        """

    def is_friction(self) ->bool:
        """is friction

        Returns:
            bool
        """

    def is_support(self) ->bool:
        """is support

        Returns:
            bool
        """

    def is_balustrade(self) ->bool:
        """is balustrade

        Returns:
            bool
        """

    def is_guardrail(self) ->bool:
        """is guardrail

        Returns:
            bool
        """

    def is_handrail(self) ->bool:
        """is handrail

        Returns:
            bool
        """

    def is_baseslab(self) ->bool:
        """is baseslab

        Returns:
            bool
        """

    def is_floor(self) ->bool:
        """is floor

        Returns:
            bool
        """

    def is_landing(self) ->bool:
        """is landing

        Returns:
            bool
        """

    def is_roof(self) ->bool:
        """is roof

        Returns:
            bool
        """

    def is_beam(self) ->bool:
        """is beam

        Returns:
            bool
        """

    def is_spandrel(self) ->bool:
        """is spandrel

        Returns:
            bool
        """

    def is_tbeam(self) ->bool:
        """is tbeam

        Returns:
            bool
        """

    def is_complex(self) ->bool:
        """is complex

        Returns:
            bool
        """

    def is_element(self) ->bool:
        """is element

        Returns:
            bool
        """

    def is_partial(self) ->bool:
        """is partial

        Returns:
            bool
        """

    def is_provision_for_space(self) ->bool:
        """is provision for space

        Returns:
            bool
        """

    def is_provision_for_void(self) ->bool:
        """is provision for void

        Returns:
            bool
        """

    def is_column(self) ->bool:
        """is column

        Returns:
            bool
        """

    def is_pilaster(self) ->bool:
        """is pilaster

        Returns:
            bool
        """

    def is_molding(self) ->bool:
        """is molding

        Returns:
            bool
        """

    def is_skirtingboard(self) ->bool:
        """is skirtingboard

        Returns:
            bool
        """

    def is_door(self) ->bool:
        """is door

        Returns:
            bool
        """

    def is_gate(self) ->bool:
        """is gate

        Returns:
            bool
        """

    def is_trap_door(self) ->bool:
        """is trap door

        Returns:
            bool
        """

    def is_caisson_foundation(self) ->bool:
        """is caisson foundation

        Returns:
            bool
        """

    def is_brace(self) ->bool:
        """is brace

        Returns:
            bool
        """

    def is_chord(self) ->bool:
        """is chord

        Returns:
            bool
        """

    def is_collar(self) ->bool:
        """is collar

        Returns:
            bool
        """

    def is_member(self) ->bool:
        """is member

        Returns:
            bool
        """

    def is_mullion(self) ->bool:
        """is mullion

        Returns:
            bool
        """

    def is_plate(self) ->bool:
        """is plate

        Returns:
            bool
        """

    def is_post(self) ->bool:
        """is post

        Returns:
            bool
        """

    def is_purlin(self) ->bool:
        """is purlin

        Returns:
            bool
        """

    def is_rafter(self) ->bool:
        """is rafter

        Returns:
            bool
        """

    def is_stringer(self) ->bool:
        """is stringer

        Returns:
            bool
        """

    def is_strut(self) ->bool:
        """is strut

        Returns:
            bool
        """

    def is_stud(self) ->bool:
        """is stud

        Returns:
            bool
        """

    def is_bored(self) ->bool:
        """is bored

        Returns:
            bool
        """

    def is_driven(self) ->bool:
        """is driven

        Returns:
            bool
        """

    def is_jetgrouting(self) ->bool:
        """is jetgrouting

        Returns:
            bool
        """

    def is_curtain_panel(self) ->bool:
        """is curtain panel

        Returns:
            bool
        """

    def is_sheet(self) ->bool:
        """is sheet

        Returns:
            bool
        """

    def is_half_turn_ramp(self) ->bool:
        """is half turn ramp

        Returns:
            bool
        """

    def is_quarter_turn_ramp(self) ->bool:
        """is quarter turn ramp

        Returns:
            bool
        """

    def is_spiral_ramp(self) ->bool:
        """is spiral ramp

        Returns:
            bool
        """

    def is_straight_run_ramp(self) ->bool:
        """is straight run ramp

        Returns:
            bool
        """

    def is_two_quarter_turn_ramp(self) ->bool:
        """is two quarter turn ramp

        Returns:
            bool
        """

    def is_two_straight_run_ramp(self) ->bool:
        """is two straight run ramp

        Returns:
            bool
        """

    def is_barrel_roof(self) ->bool:
        """is barrel roof

        Returns:
            bool
        """

    def is_butterfly_roof(self) ->bool:
        """is butterfly roof

        Returns:
            bool
        """

    def is_dome_roof(self) ->bool:
        """is dome roof

        Returns:
            bool
        """

    def is_flat_roof(self) ->bool:
        """is flat roof

        Returns:
            bool
        """

    def is_freeform(self) ->bool:
        """is freeform

        Returns:
            bool
        """

    def is_gable_roof(self) ->bool:
        """is gable roof

        Returns:
            bool
        """

    def is_gambrel_roof(self) ->bool:
        """is gambrel roof

        Returns:
            bool
        """

    def is_hipped_gable_roof(self) ->bool:
        """is hipped gable roof

        Returns:
            bool
        """

    def is_hip_roof(self) ->bool:
        """is hip roof

        Returns:
            bool
        """

    def is_mansard_roof(self) ->bool:
        """is mansard roof

        Returns:
            bool
        """

    def is_pavilion_roof(self) ->bool:
        """is pavilion roof

        Returns:
            bool
        """

    def is_rainbow_roof(self) ->bool:
        """is rainbow roof

        Returns:
            bool
        """

    def is_shed_roof(self) ->bool:
        """is shed roof

        Returns:
            bool
        """

    def is_curved_run_stair(self) ->bool:
        """is curved run stair

        Returns:
            bool
        """

    def is_double_return_stair(self) ->bool:
        """is double return stair

        Returns:
            bool
        """

    def is_half_turn_stair(self) ->bool:
        """is half turn stair

        Returns:
            bool
        """

    def is_half_winding_stair(self) ->bool:
        """is half winding stair

        Returns:
            bool
        """

    def is_quarter_turn_stair(self) ->bool:
        """is quarter turn stair

        Returns:
            bool
        """

    def is_quarter_winding_stair(self) ->bool:
        """is quarter winding stair

        Returns:
            bool
        """

    def is_spiral_stair(self) ->bool:
        """is spiral stair

        Returns:
            bool
        """

    def is_straight_run_stair(self) ->bool:
        """is straight run stair

        Returns:
            bool
        """

    def is_three_quarter_turn_stair(self) ->bool:
        """is three quarter turn stair

        Returns:
            bool
        """

    def is_three_quarter_winding_stair(self) ->bool:
        """is three quarter winding stair

        Returns:
            bool
        """

    def is_two_curved_run_stair(self) ->bool:
        """is two curved run stair

        Returns:
            bool
        """

    def is_two_quarter_turn_stair(self) ->bool:
        """is two quarter turn stair

        Returns:
            bool
        """

    def is_two_quarter_winding_stair(self) ->bool:
        """is two quarter winding stair

        Returns:
            bool
        """

    def is_two_straight_run_stair(self) ->bool:
        """is two straight run stair

        Returns:
            bool
        """

    def is_curved(self) ->bool:
        """is curved

        Returns:
            bool
        """

    def is_spiral(self) ->bool:
        """is spiral

        Returns:
            bool
        """

    def is_straight(self) ->bool:
        """is straight

        Returns:
            bool
        """

    def is_winder(self) ->bool:
        """is winder

        Returns:
            bool
        """

    def is_elemented_wall(self) ->bool:
        """is elemented wall

        Returns:
            bool
        """

    def is_movable(self) ->bool:
        """is movable

        Returns:
            bool
        """

    def is_parapet(self) ->bool:
        """is parapet

        Returns:
            bool
        """

    def is_partitioning(self) ->bool:
        """is partitioning

        Returns:
            bool
        """

    def is_plumbing_wall(self) ->bool:
        """is plumbing wall

        Returns:
            bool
        """

    def is_polygonal(self) ->bool:
        """is polygonal

        Returns:
            bool
        """

    def is_shear(self) ->bool:
        """is shear

        Returns:
            bool
        """

    def is_solid_wall(self) ->bool:
        """is solid wall

        Returns:
            bool
        """

    def is_standard(self) ->bool:
        """is standard

        Returns:
            bool
        """

    def is_lightdome(self) ->bool:
        """is lightdome

        Returns:
            bool
        """

    def is_skylight(self) ->bool:
        """is skylight

        Returns:
            bool
        """

    def is_window(self) ->bool:
        """is window

        Returns:
            bool
        """

    def is_opening(self) ->bool:
        """is opening

        Returns:
            bool
        """

    def is_recess(self) ->bool:
        """is recess

        Returns:
            bool
        """

    def is_anchorbolt(self) ->bool:
        """is anchorbolt

        Returns:
            bool
        """

    def is_bolt(self) ->bool:
        """is bolt

        Returns:
            bool
        """

    def is_dowel(self) ->bool:
        """is dowel

        Returns:
            bool
        """

    def is_nail(self) ->bool:
        """is nail

        Returns:
            bool
        """

    def is_nail_plate(self) ->bool:
        """is nail plate

        Returns:
            bool
        """

    def is_rivet(self) ->bool:
        """is rivet

        Returns:
            bool
        """

    def is_screw(self) ->bool:
        """is screw

        Returns:
            bool
        """

    def is_shear_connector(self) ->bool:
        """is shear connector

        Returns:
            bool
        """

    def is_staple(self) ->bool:
        """is staple

        Returns:
            bool
        """

    def is_stud_shear_connector(self) ->bool:
        """is stud shear connector

        Returns:
            bool
        """

    def is_glue(self) ->bool:
        """is glue

        Returns:
            bool
        """

    def is_mortar(self) ->bool:
        """is mortar

        Returns:
            bool
        """

    def is_weld(self) ->bool:
        """is weld

        Returns:
            bool
        """

    def is_external(self) ->bool:
        """is external

        Returns:
            bool
        """

    def is_gfa(self) ->bool:
        """is gfa

        Returns:
            bool
        """

    def is_internal(self) ->bool:
        """is internal

        Returns:
            bool
        """

    def is_parking(self) ->bool:
        """is parking

        Returns:
            bool
        """

    def is_space(self) ->bool:
        """is space

        Returns:
            bool
        """

    def is_accessory_assembly(self) ->bool:
        """is accessory assembly

        Returns:
            bool
        """

    def is_arch(self) ->bool:
        """is arch

        Returns:
            bool
        """

    def is_beam_grid(self) ->bool:
        """is beam grid

        Returns:
            bool
        """

    def is_braced_frame(self) ->bool:
        """is braced frame

        Returns:
            bool
        """

    def is_girder(self) ->bool:
        """is girder

        Returns:
            bool
        """

    def is_reinforcement_unit(self) ->bool:
        """is reinforcement unit

        Returns:
            bool
        """

    def is_rigid_frame(self) ->bool:
        """is rigid frame

        Returns:
            bool
        """

    def is_slab_field(self) ->bool:
        """is slab field

        Returns:
            bool
        """

    def is_truss(self) ->bool:
        """is truss

        Returns:
            bool
        """

    def is_cable_ladder_segment(self) ->bool:
        """is cable ladder segment

        Returns:
            bool
        """

    def is_cable_tray_segment(self) ->bool:
        """is cable tray segment

        Returns:
            bool
        """

    def is_cable_trunking_segment(self) ->bool:
        """is cable trunking segment

        Returns:
            bool
        """

    def is_conduit_segment(self) ->bool:
        """is conduit segment

        Returns:
            bool
        """

    def is_busbar_segment(self) ->bool:
        """is busbar segment

        Returns:
            bool
        """

    def is_cable_segment(self) ->bool:
        """is cable segment

        Returns:
            bool
        """

    def is_conductor_segment(self) ->bool:
        """is conductor segment

        Returns:
            bool
        """

    def is_core_segment(self) ->bool:
        """is core segment

        Returns:
            bool
        """

    def is_flexible_segment(self) ->bool:
        """is flexible segment

        Returns:
            bool
        """

    def is_rigid_segment(self) ->bool:
        """is rigid segment

        Returns:
            bool
        """

    def is_culvert(self) ->bool:
        """is culvert

        Returns:
            bool
        """

    def is_gutter(self) ->bool:
        """is gutter

        Returns:
            bool
        """

    def is_spool(self) ->bool:
        """is spool

        Returns:
            bool
        """

    def is_audio_visual_outlet(self) ->bool:
        """is audio visual outlet

        Returns:
            bool
        """

    def is_communications_outlet(self) ->bool:
        """is communications outlet

        Returns:
            bool
        """

    def is_power_outlet(self) ->bool:
        """is power outlet

        Returns:
            bool
        """

    def is_data_outlet(self) ->bool:
        """is data outlet

        Returns:
            bool
        """

    def is_telephone_outlet(self) ->bool:
        """is telephone outlet

        Returns:
            bool
        """

    def is_anchoring(self) ->bool:
        """is anchoring

        Returns:
            bool
        """

    def is_edge(self) ->bool:
        """is edge

        Returns:
            bool
        """

    def is_ligature(self) ->bool:
        """is ligature

        Returns:
            bool
        """

    def is_main(self) ->bool:
        """is main

        Returns:
            bool
        """

    def is_punching(self) ->bool:
        """is punching

        Returns:
            bool
        """

    def is_ring(self) ->bool:
        """is ring

        Returns:
            bool
        """

    def set_none(self) ->None:
        """set none

        Returns:
            None
        """

    def set_ceiling(self) ->None:
        """set ceiling

        Returns:
            None
        """

    def set_cladding(self) ->None:
        """set cladding

        Returns:
            None
        """

    def set_flooring(self) ->None:
        """set flooring

        Returns:
            None
        """

    def set_insulation(self) ->None:
        """set insulation

        Returns:
            None
        """

    def set_membrane(self) ->None:
        """set membrane

        Returns:
            None
        """

    def set_roofing(self) ->None:
        """set roofing

        Returns:
            None
        """

    def set_sleeving(self) ->None:
        """set sleeving

        Returns:
            None
        """

    def set_wrapping(self) ->None:
        """set wrapping

        Returns:
            None
        """

    def set_footing_beam(self) ->None:
        """set footing beam

        Returns:
            None
        """

    def set_pad_footing(self) ->None:
        """set pad footing

        Returns:
            None
        """

    def set_pile_cap(self) ->None:
        """set pile cap

        Returns:
            None
        """

    def set_strip_footing(self) ->None:
        """set strip footing

        Returns:
            None
        """

    def set_cohesion(self) ->None:
        """set cohesion

        Returns:
            None
        """

    def set_friction(self) ->None:
        """set friction

        Returns:
            None
        """

    def set_support(self) ->None:
        """set support

        Returns:
            None
        """

    def set_balustrade(self) ->None:
        """set balustrade

        Returns:
            None
        """

    def set_guardrail(self) ->None:
        """set guardrail

        Returns:
            None
        """

    def set_handrail(self) ->None:
        """set handrail

        Returns:
            None
        """

    def set_baseslab(self) ->None:
        """set baseslab

        Returns:
            None
        """

    def set_floor(self) ->None:
        """set floor

        Returns:
            None
        """

    def set_landing(self) ->None:
        """set landing

        Returns:
            None
        """

    def set_roof(self) ->None:
        """set roof

        Returns:
            None
        """

    def set_beam(self) ->None:
        """set beam

        Returns:
            None
        """

    def set_hollowcore(self) ->None:
        """set hollowcore

        Returns:
            None
        """

    def set_joist(self) ->None:
        """set joist

        Returns:
            None
        """

    def set_lintel(self) ->None:
        """set lintel

        Returns:
            None
        """

    def set_spandrel(self) ->None:
        """set spandrel

        Returns:
            None
        """

    def set_tbeam(self) ->None:
        """set tbeam

        Returns:
            None
        """

    def set_complex(self) ->None:
        """set complex

        Returns:
            None
        """

    def set_element(self) ->None:
        """set element

        Returns:
            None
        """

    def set_partial(self) ->None:
        """set partial

        Returns:
            None
        """

    def set_provision_for_space(self) ->None:
        """set provision for space

        Returns:
            None
        """

    def set_provision_for_void(self) ->None:
        """set provision for void

        Returns:
            None
        """

    def set_column(self) ->None:
        """set column

        Returns:
            None
        """

    def set_pilaster(self) ->None:
        """set pilaster

        Returns:
            None
        """

    def set_molding(self) ->None:
        """set molding

        Returns:
            None
        """

    def set_skirtingboard(self) ->None:
        """set skirtingboard

        Returns:
            None
        """

    def set_door(self) ->None:
        """set door

        Returns:
            None
        """

    def set_gate(self) ->None:
        """set gate

        Returns:
            None
        """

    def set_trap_door(self) ->None:
        """set trap door

        Returns:
            None
        """

    def set_caisson_foundation(self) ->None:
        """set caisson foundation

        Returns:
            None
        """

    def set_brace(self) ->None:
        """set brace

        Returns:
            None
        """

    def set_chord(self) ->None:
        """set chord

        Returns:
            None
        """

    def set_collar(self) ->None:
        """set collar

        Returns:
            None
        """

    def set_member(self) ->None:
        """set member

        Returns:
            None
        """

    def set_mullion(self) ->None:
        """set mullion

        Returns:
            None
        """

    def set_plate(self) ->None:
        """set plate

        Returns:
            None
        """

    def set_post(self) ->None:
        """set post

        Returns:
            None
        """

    def set_purlin(self) ->None:
        """set purlin

        Returns:
            None
        """

    def set_rafter(self) ->None:
        """set rafter

        Returns:
            None
        """

    def set_stringer(self) ->None:
        """set stringer

        Returns:
            None
        """

    def set_strut(self) ->None:
        """set strut

        Returns:
            None
        """

    def set_stud(self) ->None:
        """set stud

        Returns:
            None
        """

    def set_bored(self) ->None:
        """set bored

        Returns:
            None
        """

    def set_driven(self) ->None:
        """set driven

        Returns:
            None
        """

    def set_jetgrouting(self) ->None:
        """set jetgrouting

        Returns:
            None
        """

    def set_curtain_panel(self) ->None:
        """set curtain panel

        Returns:
            None
        """

    def set_sheet(self) ->None:
        """set sheet

        Returns:
            None
        """

    def set_half_turn_ramp(self) ->None:
        """set half turn ramp

        Returns:
            None
        """

    def set_quarter_turn_ramp(self) ->None:
        """set quarter turn ramp

        Returns:
            None
        """

    def set_spiral_ramp(self) ->None:
        """set spiral ramp

        Returns:
            None
        """

    def set_straight_run_ramp(self) ->None:
        """set straight run ramp

        Returns:
            None
        """

    def set_two_quarter_turn_ramp(self) ->None:
        """set two quarter turn ramp

        Returns:
            None
        """

    def set_two_straight_run_ramp(self) ->None:
        """set two straight run ramp

        Returns:
            None
        """

    def set_barrel_roof(self) ->None:
        """set barrel roof

        Returns:
            None
        """

    def set_butterfly_roof(self) ->None:
        """set butterfly roof

        Returns:
            None
        """

    def set_dome_roof(self) ->None:
        """set dome roof

        Returns:
            None
        """

    def set_flat_roof(self) ->None:
        """set flat roof

        Returns:
            None
        """

    def set_freeform(self) ->None:
        """set freeform

        Returns:
            None
        """

    def set_gable_roof(self) ->None:
        """set gable roof

        Returns:
            None
        """

    def set_gambrel_roof(self) ->None:
        """set gambrel roof

        Returns:
            None
        """

    def set_hipped_gable_roof(self) ->None:
        """set hipped gable roof

        Returns:
            None
        """

    def set_hip_roof(self) ->None:
        """set hip roof

        Returns:
            None
        """

    def set_mansard_roof(self) ->None:
        """set mansard roof

        Returns:
            None
        """

    def set_pavilion_roof(self) ->None:
        """set pavilion roof

        Returns:
            None
        """

    def set_rainbow_roof(self) ->None:
        """set rainbow roof

        Returns:
            None
        """

    def set_shed_roof(self) ->None:
        """set shed roof

        Returns:
            None
        """

    def set_curved_run_stair(self) ->None:
        """set curved run stair

        Returns:
            None
        """

    def set_double_return_stair(self) ->None:
        """set double return stair

        Returns:
            None
        """

    def set_half_turn_stair(self) ->None:
        """set half turn stair

        Returns:
            None
        """

    def set_half_winding_stair(self) ->None:
        """set half winding stair

        Returns:
            None
        """

    def set_quarter_turn_stair(self) ->None:
        """set quarter turn stair

        Returns:
            None
        """

    def set_quarter_winding_stair(self) ->None:
        """set quarter winding stair

        Returns:
            None
        """

    def set_spiral_stair(self) ->None:
        """set spiral stair

        Returns:
            None
        """

    def set_straight_run_stair(self) ->None:
        """set straight run stair

        Returns:
            None
        """

    def set_three_quarter_turn_stair(self) ->None:
        """set three quarter turn stair

        Returns:
            None
        """

    def set_three_quarter_winding_stair(self) ->None:
        """set three quarter winding stair

        Returns:
            None
        """

    def set_two_curved_run_stair(self) ->None:
        """set two curved run stair

        Returns:
            None
        """

    def set_two_quarter_turn_stair(self) ->None:
        """set two quarter turn stair

        Returns:
            None
        """

    def set_two_quarter_winding_stair(self) ->None:
        """set two quarter winding stair

        Returns:
            None
        """

    def set_two_straight_run_stair(self) ->None:
        """set two straight run stair

        Returns:
            None
        """

    def set_curved(self) ->None:
        """set curved

        Returns:
            None
        """

    def set_spiral(self) ->None:
        """set spiral

        Returns:
            None
        """

    def set_straight(self) ->None:
        """set straight

        Returns:
            None
        """

    def set_winder(self) ->None:
        """set winder

        Returns:
            None
        """

    def set_elemented_wall(self) ->None:
        """set elemented wall

        Returns:
            None
        """

    def set_movable(self) ->None:
        """set movable

        Returns:
            None
        """

    def set_parapet(self) ->None:
        """set parapet

        Returns:
            None
        """

    def set_partitioning(self) ->None:
        """set partitioning

        Returns:
            None
        """

    def set_plumbing_wall(self) ->None:
        """set plumbing wall

        Returns:
            None
        """

    def set_polygonal(self) ->None:
        """set polygonal

        Returns:
            None
        """

    def set_shear(self) ->None:
        """set shear

        Returns:
            None
        """

    def set_solid_wall(self) ->None:
        """set solid wall

        Returns:
            None
        """

    def set_standard(self) ->None:
        """set standard

        Returns:
            None
        """

    def set_lightdome(self) ->None:
        """set lightdome

        Returns:
            None
        """

    def set_skylight(self) ->None:
        """set skylight

        Returns:
            None
        """

    def set_window(self) ->None:
        """set window

        Returns:
            None
        """

    def set_opening(self) ->None:
        """set opening

        Returns:
            None
        """

    def set_recess(self) ->None:
        """set recess

        Returns:
            None
        """

    def set_anchorbolt(self) ->None:
        """set anchorbolt

        Returns:
            None
        """

    def set_bolt(self) ->None:
        """set bolt

        Returns:
            None
        """

    def set_dowel(self) ->None:
        """set dowel

        Returns:
            None
        """

    def set_nail(self) ->None:
        """set nail

        Returns:
            None
        """

    def set_nailplate(self) ->None:
        """set nailplate

        Returns:
            None
        """

    def set_rivet(self) ->None:
        """set rivet

        Returns:
            None
        """

    def set_screw(self) ->None:
        """set screw

        Returns:
            None
        """

    def set_shearconnector(self) ->None:
        """set shearconnector

        Returns:
            None
        """

    def set_staple(self) ->None:
        """set staple

        Returns:
            None
        """

    def set_studshearconnector(self) ->None:
        """set studshearconnector

        Returns:
            None
        """

    def set_glue(self) ->None:
        """set glue

        Returns:
            None
        """

    def set_mortar(self) ->None:
        """set mortar

        Returns:
            None
        """

    def set_weld(self) ->None:
        """set weld

        Returns:
            None
        """

    def set_external(self) ->None:
        """set external

        Returns:
            None
        """

    def set_gfa(self) ->None:
        """set gfa

        Returns:
            None
        """

    def set_internal(self) ->None:
        """set internal

        Returns:
            None
        """

    def set_parking(self) ->None:
        """set parking

        Returns:
            None
        """

    def set_space(self) ->None:
        """set space

        Returns:
            None
        """

    def set_accessory_assembly(self) ->None:
        """set accessory assembly

        Returns:
            None
        """

    def set_arch(self) ->None:
        """set arch

        Returns:
            None
        """

    def set_beam_grid(self) ->None:
        """set beam grid

        Returns:
            None
        """

    def set_braced_frame(self) ->None:
        """set braced frame

        Returns:
            None
        """

    def set_girder(self) ->None:
        """set girder

        Returns:
            None
        """

    def set_reinforcement_unit(self) ->None:
        """set reinforcement unit

        Returns:
            None
        """

    def set_rigid_frame(self) ->None:
        """set rigid frame

        Returns:
            None
        """

    def set_slab_field(self) ->None:
        """set slab field

        Returns:
            None
        """

    def set_truss(self) ->None:
        """set truss

        Returns:
            None
        """

    def set_cable_ladder_segment(self) ->None:
        """set cable ladder segment

        Returns:
            None
        """

    def set_cable_tray_segment(self) ->None:
        """set cable tray segment

        Returns:
            None
        """

    def set_cable_trunking_segment(self) ->None:
        """set cable trunking segment

        Returns:
            None
        """

    def set_conduit_segment(self) ->None:
        """set conduit segment

        Returns:
            None
        """

    def set_busbar_segment(self) ->None:
        """set busbar segment

        Returns:
            None
        """

    def set_cable_segment(self) ->None:
        """set cable segment

        Returns:
            None
        """

    def set_conductor_segment(self) ->None:
        """set conductor segment

        Returns:
            None
        """

    def set_core_segment(self) ->None:
        """set core segment

        Returns:
            None
        """

    def set_flexible_segment(self) ->None:
        """set flexible segment

        Returns:
            None
        """

    def set_rigid_segment(self) ->None:
        """set rigid segment

        Returns:
            None
        """

    def set_culvert(self) ->None:
        """set culvert

        Returns:
            None
        """

    def set_gutter(self) ->None:
        """set gutter

        Returns:
            None
        """

    def set_spool(self) ->None:
        """set spool

        Returns:
            None
        """

    def set_audio_visual_outlet(self) ->None:
        """set audio visual outlet

        Returns:
            None
        """

    def set_communications_outlet(self) ->None:
        """set communications outlet

        Returns:
            None
        """

    def set_power_outlet(self) ->None:
        """set power outlet

        Returns:
            None
        """

    def set_data_outlet(self) ->None:
        """set data outlet

        Returns:
            None
        """

    def set_telephone_outlet(self) ->None:
        """set telephone outlet

        Returns:
            None
        """

    def set_anchoring(self) ->None:
        """set anchoring

        Returns:
            None
        """

    def set_edge(self) ->None:
        """set edge

        Returns:
            None
        """

    def set_ligature(self) ->None:
        """set ligature

        Returns:
            None
        """

    def set_main(self) ->None:
        """set main

        Returns:
            None
        """

    def set_punching(self) ->None:
        """set punching

        Returns:
            None
        """

    def set_ring(self) ->None:
        """set ring

        Returns:
            None
        """

New Items

Classes cadwork

multi_layer_type

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@unique
class multi_layer_type(IntEnum):
    """multi layer type

    Examples:
        >>> cadwork.multi_layer_type.undefined
        undefined
    """
    undefined = 0
    """"""
    structure = 1
    """"""
    panel = 2
    """"""
    lathing = 3
    """"""
    air = 4
    """"""
    covering = 5
    """"""

    def __int__(self) ->int:
        return self.value

New Items

New Items

Classes cadwork

standard_element_type

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@unique
class standard_element_type(IntEnum):
    """standard element type

    Examples:
        >>> cadwork.standard_element_type.beam
        beam
    """
    beam = 0
    """"""
    panel = 2
    """"""
    vba = 3
    """"""
    exportSolid = 4
    """"""
    container = 5
    """"""
    metal = 6
    """"""

    def __int__(self) ->int:
        return self.value

New Items

Classes cadwork

window_geometry

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
class window_geometry:


    class point:

        def __init__(self, x, y):
            self.x = x
            self.y = y

    def __init__(self):
        self.bottom_left = self.point(0, 0)
        self.bottom_right = self.point(0, 0)
        self.top_left = self.point(0, 0)
        self.top_right = self.point(0, 0)