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.443.2"
version = "32.443.3"
authors = [{ name = "Cadwork", email = "it@cadwork.ca" }]
requires-python = ">= 3.12"
description = 'Python bindings for CwAPI3D'
Expand Down
12 changes: 9 additions & 3 deletions src/cadwork/display_attribute.pyi
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
class display_attribute:
"""
A wrapper class for managing element display states.
These methods update the internal state of the attribute
object without requiring external parameters.
A wrapper class for managing element display states for WebGL hierarchy display settings (not in Cadwork 3d).
These methods update the internal state of the attribute object without requiring external parameters.

Used exclusively with `set_webgl_hierarchy` to define visibility and display
properties for elements in the WebGL.

.. deprecated::
This class supports legacy local WebGL workflows.
It will be deprecated.
"""

def __init__(self) -> None:
Expand Down
Loading