Skip to content
Open
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Added `allow_undercut` flag in `Pocket.from_volume_and_element`
* Added `back_plane` attribute to `ButtJoint`.
* Added `KMiterJoint`
* Added `parse_cross_beams_and_main_beams_from_cluster` in `compas_timber.connections.utilities`.
* Added `parse_cross_beams_and_main_beams_from_cluster` in `compas_timber.connections.utilites`.
* Added `KButtJoint`
* Added `force_pocket` and `conical_tool` flags to `TButtJoint`
* Added `force_pocket` and `conical_tool` flags to `LButtJoint`

Expand Down
12 changes: 12 additions & 0 deletions docs/contribution/class_diagrams.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,17 @@ classDiagram
+promote_cluster()
+beam_relative_side_to_beam()
}

class KButtJoint{
+cross_beam: Beam
+main_beams: list[Beam]
+mill_depth: float
+force_pocket: bool
+conical_tool: bool
+are_beams_coplanar()
+promote_cluster()
+beam_relative_side_to_beam()
}

%% Inheritance relationships
Interaction <|-- Joint
Expand All @@ -390,6 +401,7 @@ classDiagram
Joint <|-- YButtJoint
Joint <|-- PlateJoint
Joint <|-- KMiterJoint
Joint <|-- KButtJoint

PlateJoint <|-- PanelJoint

Expand Down
2 changes: 2 additions & 0 deletions src/compas_timber/connections/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
from .panel_butt_joint import PanelTButtJoint
from .panel_miter_joint import PanelMiterJoint
from .k_miter import KMiterJoint
from .k_butt import KButtJoint
from .cluster import Cluster
from .cluster import get_clusters_from_joint_candidates

Expand Down Expand Up @@ -86,6 +87,7 @@
"PanelTButtJoint",
"PanelMiterJoint",
"KMiterJoint",
"KButtJoint",
"Cluster",
"get_clusters_from_joint_candidates",
]
Loading