Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cwapi3d"
version = "32.298.0"
version = "32.299.0"
authors = [{ name = "Cadwork", email = "it@cadwork.ca" }]
requires-python = ">= 3.12"
description = 'Python bindings for CwAPI3D'
Expand Down
4 changes: 2 additions & 2 deletions src/element_controller/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -618,12 +618,12 @@ def clear_errors() -> None:
"""Clears all errors.
"""

def glide_elements(element_id_list: List[ElementId], glide_point: point_3d) -> None:
def glide_elements(element_id_list: List[ElementId], glide_origin_point: point_3d) -> None:
"""Glides elements to a specified point.

Parameters:
element_id_list: The elements to glide.
glide_point: The glide destination point.
glide_origin_point: The glide origin point.
"""

def cut_elements_with_miter(first_id: ElementId, second_id: ElementId) -> bool:
Expand Down
Loading