kumiki.joints.workshop.compound_joints¶
Flat import path
kumiki/__init__.py re-exports everything on this page via from kumiki import *, so every name below is also available directly as kumiki.cut_multi_cross_lap_joint_on_plane_aligned_timbers -- you do not need to import from the submodule path shown in the heading above.
kumiki.joints.workshop.compound_joints
¶
Kumiki - Compound joint construction functions Contains functions for creating complex joints that combine multiple joint types.
cut_multi_cross_lap_joint_on_plane_aligned_timbers
¶
cut_multi_cross_lap_joint_on_plane_aligned_timbers(timbers: List[TimberLike], starting_face_on_first_timber: TimberFace, cut_distance_ratios: List[Numeric] = []) -> Joint
Weave a chain of N timbers together with N-1 cross-lap joints, cut in order between timbers[n] and timbers[n+1].
All timbers must share a common "stacking axis": a long-face axis that is parallel across every timber in the list. starting_face_on_first_timber names one of these faces on timbers[0] called the "starting" face and the opposing face on timbers[-1] is called the "finish" face.
cut_distance_ratios places the N-1 cut boundaries (one per pair of adjacent timbers) along that start-to-finish axis, as fractions of the total distance between the starting face and the finish face: 0.0 is at the starting face, 1.0 is at the finish face, and ratios must be strictly increasing. If fewer than N-1 ratios are given, the remaining boundaries are spaced uniformly between the last explicit ratio (or the starting face, if none were given) and the finish face.
Each of these ratios is relative to the starting and finish face, NOT the local cut_ratio parameter of the underlying cut_plain_cross_lap_joint call.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timbers
|
List[TimberLike]
|
Ordered chain of at least 2 timbers to weave together. |
required |
starting_face_on_first_timber
|
TimberFace
|
The long face on timbers[0] marking the start of the shared stacking axis (e.g. the global-bottom face shared by all timbers). |
required |
cut_distance_ratios
|
List[Numeric]
|
Strictly increasing global position ratios in (0, 1) for the first len(cut_distance_ratios) boundaries; any remaining boundaries are filled in uniformly up to the finish face. |
[]
|
Returns:
| Type | Description |
|---|---|
Joint
|
Joint combining the N-1 pairwise cross-lap joints between adjacent timbers, plus any |
Joint
|
extra "fill" cuts needed so non-adjacent timbers in the stack don't collide outside |
Joint
|
their pairwise cut boundary. The whole assembly is treated as rigid (no single-timber |
Joint
|
escape freedom). |
Source code in kumiki/joints/workshop/compound_joints.py
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 | |
cut_cross_lap_beam_assembly_on_post_with_stepped_mortise_and_tenon
¶
cut_cross_lap_beam_assembly_on_post_with_stepped_mortise_and_tenon(arrangement: CrossCapJointTimberArrangement, tenon_size_in_cross_timber_1: V2, tenon_size_in_cross_timber_2: V2, tenon_length: Optional[Numeric] = None, mortise_depth: Optional[Numeric] = None, cross_lap_cut_ratio: Numeric = scalar(1, 2))