draftwright 0.4.18__tar.gz → 0.4.20__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (540) hide show
  1. {draftwright-0.4.18 → draftwright-0.4.20}/CHANGELOG.md +18 -1
  2. {draftwright-0.4.18 → draftwright-0.4.20}/PKG-INFO +4 -4
  3. {draftwright-0.4.18 → draftwright-0.4.20}/README.md +2 -2
  4. {draftwright-0.4.18 → draftwright-0.4.20}/docs/reference/recogniser-capabilities.md +95 -89
  5. {draftwright-0.4.18 → draftwright-0.4.20}/docs/reference/sheet.md +74 -0
  6. {draftwright-0.4.18 → draftwright-0.4.20}/pyproject.toml +3 -2
  7. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/_core.py +3 -4
  8. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/_geometry.py +51 -3
  9. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/analysis.py +26 -20
  10. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/from_model.py +160 -19
  11. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/orchestrator.py +11 -5
  12. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/blend_contract.py +1 -1
  13. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/builder.py +57 -0
  14. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/compose.py +20 -0
  15. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/drawing.py +43 -15
  16. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/evaluation/step_analysis.py +151 -82
  17. draftwright-0.4.20/src/draftwright/feature_identity.py +26 -0
  18. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/inspection.py +1 -1
  19. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/inspection_contract.py +5 -5
  20. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/__init__.py +4 -1
  21. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/blend_coverage.py +96 -1
  22. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/chamfer_coverage.py +1 -1
  23. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/channel_coverage.py +24 -8
  24. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/circular_blind_step_coverage.py +1 -1
  25. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/coverage.py +124 -117
  26. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/fillet_coverage.py +1 -1
  27. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/flat_coverage.py +1 -1
  28. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/groove_coverage.py +1 -1
  29. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/hole_coverage.py +1 -1
  30. draftwright-0.4.20/src/draftwright/linting/oriented_slot_coverage.py +299 -0
  31. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/pad_coverage.py +1 -1
  32. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/paired_ramp_step_coverage.py +1 -1
  33. draftwright-0.4.20/src/draftwright/linting/passage_coverage.py +16 -0
  34. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/plate_coverage.py +2 -2
  35. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/pocket_coverage.py +30 -7
  36. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/pocket_pattern_coverage.py +67 -33
  37. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/polygonal_boss_coverage.py +1 -1
  38. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/polygonal_stock_coverage.py +1 -1
  39. draftwright-0.4.20/src/draftwright/linting/prismatic_pocket_coverage.py +16 -0
  40. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/profiled_bore_coverage.py +1 -1
  41. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/quality.py +20 -17
  42. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/rectangular_blind_slot_coverage.py +32 -14
  43. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/requirements.py +6 -0
  44. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/round_bottom_blind_slot_coverage.py +34 -16
  45. draftwright-0.4.20/src/draftwright/linting/section_recess_coverage.py +102 -0
  46. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/slot_coverage.py +1 -1
  47. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/through_step_coverage.py +1 -1
  48. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/turned_step_coverage.py +1 -1
  49. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/__init__.py +6 -0
  50. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/compiled.py +7 -0
  51. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/declare.py +65 -10
  52. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/detect.py +259 -248
  53. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/ir.py +345 -1
  54. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/planner.py +60 -3
  55. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/pmi_lowering.py +19 -4
  56. draftwright-0.4.20/src/draftwright/oriented_slot_contract.py +384 -0
  57. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/pmi.py +1 -1
  58. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/recogniser_contract.py +67 -222
  59. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/recogniser_policy.py +1 -33
  60. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/recogniser_schema.py +40 -36
  61. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/recognition/__init__.py +3 -3
  62. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/recognition_cache.py +3 -3
  63. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/recognition_frame.py +49 -13
  64. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/recognition_ownership.py +216 -13
  65. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/reporting.py +23 -5
  66. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/score.py +2 -2
  67. draftwright-0.4.20/src/draftwright/section_recess_contract.py +518 -0
  68. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/sheet.py +124 -6
  69. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/sheet_emit.py +44 -3
  70. {draftwright-0.4.18 → draftwright-0.4.20}/tests/_recogniser_public_contract.py +16 -2
  71. draftwright-0.4.20/tests/_section_recess_cases.py +36 -0
  72. {draftwright-0.4.18 → draftwright-0.4.20}/tests/conftest.py +2 -2
  73. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_add_dimension.py +19 -0
  74. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_compiled_plan_boundary.py +1 -0
  75. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_counting_calls.py +1 -1
  76. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_declare.py +41 -24
  77. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_declared_recognition_gate.py +3 -3
  78. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_detect_once.py +1 -1
  79. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_detect_registry.py +18 -7
  80. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_e2e_standards.py +5 -1
  81. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_external_recognition_boundary.py +10 -11
  82. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_fillets_adjacency.py +1 -1
  83. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_flat_completeness.py +1 -1
  84. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_flat_stock_identity.py +1 -1
  85. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_flat_stock_opposition.py +1 -1
  86. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_geometry_graph_spike.py +5 -5
  87. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_grid_lattice_convention.py +3 -3
  88. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_import_boundaries.py +51 -47
  89. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_inspection_contract.py +5 -5
  90. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1058_wheel_profile.py +5 -5
  91. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1073_cross_body_patterns.py +26 -28
  92. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1082_polygonal_stock.py +2 -2
  93. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1143_hole_completeness.py +4 -2
  94. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1146_scale_completeness.py +1 -0
  95. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1166_cross_pass_feature_leaders.py +24 -0
  96. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1202_observed_drawing_consumer.py +2 -2
  97. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1204_multiscale_view_issues.py +3 -3
  98. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1229_ledger_member_keying.py +3 -3
  99. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1245_passage_disposition.py +31 -49
  100. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1246_prismatic_pocket_disposition.py +43 -28
  101. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1247_angled_step_disposition.py +2 -2
  102. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1254_turned_chamfers.py +1 -1
  103. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1281_turned_fillets.py +1 -1
  104. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1308_machined_leader_analytics.py +34 -4
  105. draftwright-0.4.20/tests/test_issue_1325_nominal_agreement.py +107 -0
  106. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1351_structured_note_coverage.py +1 -1
  107. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1357_framed_activation.py +1 -1
  108. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1357_framed_boundary.py +2 -2
  109. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1357_plural_turned_profiles.py +7 -8
  110. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1357_pmi_frame.py +1 -1
  111. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1369_hole_completeness_evidence.py +2 -2
  112. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1370_countersink_completeness_evidence.py +5 -5
  113. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1370_double_d_completeness_evidence.py +10 -10
  114. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1370_hole_pattern_completeness_evidence.py +1 -1
  115. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1371_flat_completeness_evidence.py +1 -1
  116. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1371_polygonal_stock_completeness_evidence.py +13 -13
  117. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1372_groove_completeness_evidence.py +10 -7
  118. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1372_pad_completeness_evidence.py +1 -1
  119. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1372_pocket_completeness_evidence.py +56 -11
  120. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1372_pocket_pattern_completeness_evidence.py +74 -35
  121. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1372_polygonal_boss_completeness_evidence.py +2 -2
  122. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1373_plate_completeness_evidence.py +6 -6
  123. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1374_chamfer_completeness_evidence.py +3 -3
  124. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1374_fillet_completeness_evidence.py +3 -3
  125. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1374_turned_step_completeness_evidence.py +24 -16
  126. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1382_046_step_inventory.py +1 -1
  127. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1382_circular_blind_step_semantics.py +3 -3
  128. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1382_paired_ramp_semantics.py +1 -1
  129. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1382_through_step_semantics.py +49 -29
  130. draftwright-0.4.20/tests/test_issue_1390_sheet_registration.py +62 -0
  131. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1392_recognisers_048.py +8 -8
  132. draftwright-0.4.20/tests/test_issue_1396_layout_advisories.py +134 -0
  133. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1397_unverifiable_requirement_message.py +12 -5
  134. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1421_rectangular_blind_slot_completeness.py +41 -32
  135. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1421_rectangular_blind_slot_semantics.py +73 -61
  136. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1421_round_bottom_blind_slot_completeness.py +41 -32
  137. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1421_round_bottom_blind_slot_semantics.py +67 -61
  138. draftwright-0.4.20/tests/test_issue_1432_adoption.py +257 -0
  139. draftwright-0.4.20/tests/test_issue_1432_boundary_failures.py +168 -0
  140. draftwright-0.4.20/tests/test_issue_1432_oriented_slot_semantics.py +1249 -0
  141. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1433_blend_semantics.py +20 -11
  142. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_boss_ownership.py +1 -1
  143. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_channel_ownership.py +34 -20
  144. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_generation_snapshot.py +1 -1
  145. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_nested_ownership.py +1 -1
  146. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_occurrence_ownership.py +12 -6
  147. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_pattern_ownership.py +4 -4
  148. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_plate_ownership.py +1 -1
  149. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_policy_dispositions.py +26 -16
  150. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_report_projection.py +50 -8
  151. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_through_step_ownership.py +5 -3
  152. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_turned_step_ownership.py +1 -1
  153. draftwright-0.4.20/tests/test_issue_1450_boss_blend_ownership.py +345 -0
  154. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1460_step_inspection.py +4 -3
  155. draftwright-0.4.20/tests/test_issue_1466_dimension_options.py +304 -0
  156. draftwright-0.4.20/tests/test_issue_1471_boundary_failures.py +237 -0
  157. draftwright-0.4.20/tests/test_issue_1471_evidence_schema.py +37 -0
  158. draftwright-0.4.20/tests/test_issue_1471_groove_profile.py +179 -0
  159. draftwright-0.4.20/tests/test_issue_1471_section_recess_contract.py +251 -0
  160. draftwright-0.4.20/tests/test_issue_1471_section_recess_pockets.py +360 -0
  161. draftwright-0.4.20/tests/test_issue_1479_radius_leader_targets.py +262 -0
  162. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_676_polygonal_boss.py +2 -2
  163. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_740_leader_assignment.py +1 -0
  164. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_798_silhouette_lint.py +30 -8
  165. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_885_prismatic_coverage.py +2 -2
  166. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_909_sloped_profile.py +1 -1
  167. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_915_dense_case.py +24 -5
  168. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_917_open_channel.py +81 -26
  169. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_958_cross_solid_recognition.py +32 -17
  170. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_make_drawing.py +85 -56
  171. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_parameter_id.py +28 -0
  172. draftwright-0.4.20/tests/test_pocket_pattern_recognition.py +214 -0
  173. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_quality_components.py +42 -29
  174. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_recogniser_adoption.py +2 -2
  175. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_recogniser_capabilities.py +188 -427
  176. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_recogniser_contract.py +46 -47
  177. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_recognition.py +29 -29
  178. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_recognition_result.py +6 -7
  179. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_score.py +11 -4
  180. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_sheet_emit.py +41 -9
  181. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_sheet_identity_invariant.py +1 -0
  182. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_slanted_blind_step.py +8 -8
  183. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_slot_completeness.py +1 -1
  184. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_slot_pattern_recognition.py +2 -2
  185. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_strip_layout.py +5 -0
  186. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_turned_steps.py +1 -1
  187. draftwright-0.4.18/src/draftwright/linting/passage_coverage.py +0 -38
  188. draftwright-0.4.18/src/draftwright/linting/prismatic_pocket_coverage.py +0 -38
  189. draftwright-0.4.18/tests/test_pocket_pattern_recognition.py +0 -223
  190. {draftwright-0.4.18 → draftwright-0.4.20}/.gitignore +0 -0
  191. {draftwright-0.4.18 → draftwright-0.4.20}/LICENSE +0 -0
  192. {draftwright-0.4.18 → draftwright-0.4.20}/docs/adr/README.md +0 -0
  193. {draftwright-0.4.18 → draftwright-0.4.20}/docs/research/1062-repeating-radial-profile-evidence.md +0 -0
  194. {draftwright-0.4.18 → draftwright-0.4.20}/skills/SKILL.md +0 -0
  195. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/__init__.py +0 -0
  196. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/_build_profile.py +0 -0
  197. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/_pmi_part21.py +0 -0
  198. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/_warnings.py +0 -0
  199. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotate.py +0 -0
  200. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/__init__.py +0 -0
  201. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/_common.py +0 -0
  202. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/balloons.py +0 -0
  203. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/gears.py +0 -0
  204. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/holes.py +0 -0
  205. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/leaders.py +0 -0
  206. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/annotations/sections.py +0 -0
  207. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/audit.py +0 -0
  208. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/cli.py +0 -0
  209. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/evaluation/__init__.py +0 -0
  210. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/export.py +0 -0
  211. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/fits.py +0 -0
  212. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/fonts/IBMPlexMono-Regular.ttf +0 -0
  213. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/fonts/IBMPlexSansCondensed-Regular.ttf +0 -0
  214. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/fonts/LICENSE-IBMPlexMono-OFL.txt +0 -0
  215. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/fonts/LICENSE-IBMPlexSansCondensed-OFL.txt +0 -0
  216. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/fonts/__init__.py +0 -0
  217. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/intents.py +0 -0
  218. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/layout.py +0 -0
  219. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/_registry.py +0 -0
  220. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/angled_step_coverage.py +0 -0
  221. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/evidence.py +0 -0
  222. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/gear_coverage.py +0 -0
  223. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/ink_overlap.py +0 -0
  224. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/issues.py +0 -0
  225. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/pmi_coverage.py +0 -0
  226. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/structural.py +0 -0
  227. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/linting/suggest.py +0 -0
  228. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/make_drawing.py +0 -0
  229. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/model/callout.py +0 -0
  230. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/plate_correspondence.py +0 -0
  231. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/projection.py +0 -0
  232. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/py.typed +0 -0
  233. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/registry.py +0 -0
  234. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/repair.py +0 -0
  235. {draftwright-0.4.18 → draftwright-0.4.20}/src/draftwright/view_plan.py +0 -0
  236. {draftwright-0.4.18 → draftwright-0.4.20}/tests/_kernel.py +0 -0
  237. {draftwright-0.4.18 → draftwright-0.4.20}/tests/_layout_sig.py +0 -0
  238. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/ap242_single_cylinder_diameter.step +0 -0
  239. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/README.md +0 -0
  240. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/ambiguous-open-semicircle.step +0 -0
  241. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/blind-hole.step +0 -0
  242. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-asymmetric.step +0 -0
  243. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-compound.step +0 -0
  244. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-overlap.step +0 -0
  245. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-plain.step +0 -0
  246. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-planar-x.step +0 -0
  247. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-planar-y.step +0 -0
  248. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-planar-z.step +0 -0
  249. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-topology-a.step +0 -0
  250. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-topology-b.step +0 -0
  251. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/chamfer-turned.step +0 -0
  252. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-chamfers-v1.json +0 -0
  253. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-countersinks-v1.json +0 -0
  254. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-double-d-bores-v1.json +0 -0
  255. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-fillets-v1.json +0 -0
  256. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-flats-v1.json +0 -0
  257. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-grooves-v1.json +0 -0
  258. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-hole-patterns-v1.json +0 -0
  259. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-plates-v1.json +0 -0
  260. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-pocket-patterns-v1.json +0 -0
  261. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-pockets-v1.json +0 -0
  262. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-polygonal-bosses-v1.json +0 -0
  263. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-polygonal-stock-v1.json +0 -0
  264. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-rectangular-pads-v1.json +0 -0
  265. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-turned-steps-v1.json +0 -0
  266. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/corpus-v1.json +0 -0
  267. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/countersink-deburr.step +0 -0
  268. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/countersink-external-cone.step +0 -0
  269. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/countersink-mixed-pair.step +0 -0
  270. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/countersink-single.step +0 -0
  271. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/countersink-topology-a.step +0 -0
  272. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/countersink-topology-b.step +0 -0
  273. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-axis-x.step +0 -0
  274. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-axis-y.step +0 -0
  275. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-blind.step +0 -0
  276. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-coaxial-compound.step +0 -0
  277. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-opposed-blind.step +0 -0
  278. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-roll-30.step +0 -0
  279. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-round-bore.step +0 -0
  280. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-single-z.step +0 -0
  281. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-topology-a.step +0 -0
  282. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/double-d-topology-b.step +0 -0
  283. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-compound.step +0 -0
  284. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-overlap.step +0 -0
  285. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-plain.step +0 -0
  286. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-planar-x.step +0 -0
  287. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-planar-y.step +0 -0
  288. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-planar-z.step +0 -0
  289. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-repeated.step +0 -0
  290. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-topology-a.step +0 -0
  291. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-topology-b.step +0 -0
  292. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/fillet-turned.step +0 -0
  293. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/flat-coaxial.step +0 -0
  294. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/flat-double-d.step +0 -0
  295. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/flat-lone-d.step +0 -0
  296. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/flat-nonround.step +0 -0
  297. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/flat-slanted-double-d.step +0 -0
  298. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/flat-topology-a.step +0 -0
  299. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/flat-topology-b.step +0 -0
  300. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-compound.step +0 -0
  301. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-lone-x.step +0 -0
  302. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-lone-y.step +0 -0
  303. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-lone-z.step +0 -0
  304. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-monotonic-negative.step +0 -0
  305. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-narrow.step +0 -0
  306. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-topology-a.step +0 -0
  307. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/groove-topology-b.step +0 -0
  308. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-compound-equal.step +0 -0
  309. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-detached-body-negative.step +0 -0
  310. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-full-span-ledge-negative.step +0 -0
  311. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-nested-staircase-negative.step +0 -0
  312. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-topology-a.step +0 -0
  313. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-topology-b.step +0 -0
  314. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-x-negative.step +0 -0
  315. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-x-positive.step +0 -0
  316. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-y-negative.step +0 -0
  317. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-y-positive.step +0 -0
  318. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-z-negative.step +0 -0
  319. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pad-z-positive.step +0 -0
  320. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pattern-ambiguous.step +0 -0
  321. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pattern-grid.step +0 -0
  322. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pattern-topology-a.step +0 -0
  323. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pattern-topology-b.step +0 -0
  324. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plain-block.step +0 -0
  325. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-compound-equal.step +0 -0
  326. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-cross-topology-a.step +0 -0
  327. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-cross-topology-b.step +0 -0
  328. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-detached-negative.step +0 -0
  329. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-rotational-negative.step +0 -0
  330. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-single-negative.step +0 -0
  331. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-t-xz.step +0 -0
  332. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-t-yz.step +0 -0
  333. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-thick-negative.step +0 -0
  334. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-u-additive.step +0 -0
  335. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/plate-u-cut.step +0 -0
  336. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-compound.step +0 -0
  337. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-edge-anchored.step +0 -0
  338. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-lone.step +0 -0
  339. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-opposed.step +0 -0
  340. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-pattern-ambiguous.step +0 -0
  341. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-pattern-grid.step +0 -0
  342. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-pattern-linear.step +0 -0
  343. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-pattern-pair.step +0 -0
  344. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-pattern-topology-a.step +0 -0
  345. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-pattern-topology-b.step +0 -0
  346. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-prismatic-negative.step +0 -0
  347. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-side.step +0 -0
  348. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-through-negative.step +0 -0
  349. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-topology-a.step +0 -0
  350. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-topology-b.step +0 -0
  351. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/pocket-two-equal.step +0 -0
  352. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-compound-equal.step +0 -0
  353. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-detached-negative.step +0 -0
  354. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-in-plane-rotated.step +0 -0
  355. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-other-protrusions-negative.step +0 -0
  356. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-recess-negative.step +0 -0
  357. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-stock-negative.step +0 -0
  358. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-topology-a.step +0 -0
  359. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-topology-b.step +0 -0
  360. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-x.step +0 -0
  361. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-y.step +0 -0
  362. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-boss-z.step +0 -0
  363. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-compound-negative.step +0 -0
  364. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-cylinder-negative.step +0 -0
  365. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-irregular-negative.step +0 -0
  366. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-octagon-negative.step +0 -0
  367. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-recess-negative.step +0 -0
  368. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-roll17.step +0 -0
  369. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-topology-a.step +0 -0
  370. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-topology-b.step +0 -0
  371. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-translated.step +0 -0
  372. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-x.step +0 -0
  373. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/polygonal-stock-y.step +0 -0
  374. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/topology-a.step +0 -0
  375. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/topology-b.step +0 -0
  376. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-axis-x.step +0 -0
  377. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-axis-y.step +0 -0
  378. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-axis-z.step +0 -0
  379. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-compound.step +0 -0
  380. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-repeated-lengths.step +0 -0
  381. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-through-bore.step +0 -0
  382. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-topology-a.step +0 -0
  383. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-topology-b.step +0 -0
  384. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/evaluation/turned-step-translated-blind-bore.step +0 -0
  385. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/grm03_thumbwheel_drive_screw.step +0 -0
  386. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/grm03_thumbwheel_drive_screw_ap242_pmi.step +0 -0
  387. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/grm04_drive_plate.step +0 -0
  388. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/if_step_flat_across_cylinder.step +0 -0
  389. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/issue_1058_wheel_rh.step +0 -0
  390. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/issue_1247_angled_blind_step.step +0 -0
  391. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/issue_909_basic_part_design_017_body.step +0 -0
  392. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/issue_915_case_study_2.step +0 -0
  393. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_01_asme1_ap203.stp +0 -0
  394. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_01_asme1_ap242.stp +0 -0
  395. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_02_asme1_ap203.stp +0 -0
  396. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_02_asme1_ap242.stp +0 -0
  397. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_03_asme1_ap203.stp +0 -0
  398. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_03_asme1_ap242.stp +0 -0
  399. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_04_asme1_ap203.stp +0 -0
  400. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_04_asme1_ap242.stp +0 -0
  401. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_05_asme1_ap203.stp +0 -0
  402. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/nist_ctc_05_asme1_ap242.stp +0 -0
  403. {draftwright-0.4.18 → draftwright-0.4.20}/tests/fixtures/tuner_jig_blind_obround_pockets.step +0 -0
  404. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/bracket_section.json +0 -0
  405. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/centered_rebate.json +0 -0
  406. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/chamfered.json +0 -0
  407. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/filleted.json +0 -0
  408. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/flange_dense.json +0 -0
  409. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/grid_plate.json +0 -0
  410. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/grooved_shaft.json +0 -0
  411. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/hex_bar.json +0 -0
  412. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/holed_slot.json +0 -0
  413. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/pocketed.json +0 -0
  414. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/prismatic_ladder.json +0 -0
  415. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/scattered_plate.json +0 -0
  416. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/side_drilled.json +0 -0
  417. {draftwright-0.4.18 → draftwright-0.4.20}/tests/refactor_golden/turned_stepped.json +0 -0
  418. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_adr0018_arrangement_gate.py +0 -0
  419. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_adr0018_view_routing.py +0 -0
  420. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_adr0018_view_selection.py +0 -0
  421. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_adr_corpus.py +0 -0
  422. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_agents_guide.py +0 -0
  423. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_api_docs.py +0 -0
  424. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_architecture_docs.py +0 -0
  425. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_audit_differential.py +0 -0
  426. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_balloon_ring_standoff.py +0 -0
  427. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_build_profile_harness.py +0 -0
  428. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_carve_free_position_callers.py +0 -0
  429. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_dense_sheet_canary.py +0 -0
  430. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_deprecation_dates.py +0 -0
  431. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_dimension_role_vocabulary.py +0 -0
  432. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_drawing_encapsulation.py +0 -0
  433. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_e2e_slice.py +0 -0
  434. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_export_dxf_curves.py +0 -0
  435. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_export_dxf_zoom.py +0 -0
  436. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_export_reproducible.py +0 -0
  437. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_fits.py +0 -0
  438. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_gdt_placement.py +0 -0
  439. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_iso_nts_caption_placement.py +0 -0
  440. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1000_envelope_reuse.py +0 -0
  441. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1086_declared_gears.py +0 -0
  442. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1116_ap242_hole_tolerance_lowering.py +0 -0
  443. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1130_view_planning_evidence.py +0 -0
  444. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1142_hole_leader_labels.py +0 -0
  445. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1144_transactional_hole_table.py +0 -0
  446. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1147_legibility_pair_aggregation.py +0 -0
  447. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1153_contradictory_dimensions.py +0 -0
  448. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1154_one_owner_per_measurement.py +0 -0
  449. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1155_grm04_sheet_use.py +0 -0
  450. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1176_quality_fidelity.py +0 -0
  451. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1177_angular_dimensions.py +0 -0
  452. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1187_unroutable_leaders.py +0 -0
  453. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1188_per_view_assignment.py +0 -0
  454. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1190_section_decision.py +0 -0
  455. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1196_deterministic_view_names.py +0 -0
  456. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1209_linear_pmi_witnesses.py +0 -0
  457. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1215_envelope_tolerance.py +0 -0
  458. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1215_no_approved_tolerance_is_dropped.py +0 -0
  459. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1216_callout_reservation_measures_ink.py +0 -0
  460. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1216_pairwise_across_scale_groups.py +0 -0
  461. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1217_claimed_representations.py +0 -0
  462. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1217_the_facility_is_shared.py +0 -0
  463. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1219_location_claims_its_own_axis.py +0 -0
  464. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1240_iso_above_strip_visibility.py +0 -0
  465. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1260_view_constraints.py +0 -0
  466. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1262_automatic_turned_views.py +0 -0
  467. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1276_turned_leader_targets.py +0 -0
  468. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1296_cylindrical_diameter_pmi.py +0 -0
  469. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1298_manufacturing_requirements.py +0 -0
  470. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1299_page_escalation.py +0 -0
  471. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1312_engine_costs.py +0 -0
  472. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1332_overlap_remedy.py +0 -0
  473. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1332_zone_labels.py +0 -0
  474. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1334_prevent_ink.py +0 -0
  475. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1336_grm03_ap242_pmi_fixture.py +0 -0
  476. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1338_scale_before_page_escalation.py +0 -0
  477. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1349_precision_display.py +0 -0
  478. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1350_detected_takeover.py +0 -0
  479. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1352_searchable_pdf_text.py +0 -0
  480. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1353_cnc_authoritative_workflow.py +0 -0
  481. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1360_thread_depth.py +0 -0
  482. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1382_framed_step_family_evidence.py +0 -0
  483. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1395_degenerate_iso_region.py +0 -0
  484. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_cli_report_sidecar.py +0 -0
  485. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_1438_report_writer.py +0 -0
  486. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_367_leader_ink.py +0 -0
  487. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_443_grm03_axial_coverage.py +0 -0
  488. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_563_placement_intent.py +0 -0
  489. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_676_polygonal_boss_declare.py +0 -0
  490. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_798_floor_cardinality.py +0 -0
  491. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_798_material_field.py +0 -0
  492. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_916_pocket_leader.py +0 -0
  493. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_924_zero_length_shoulders.py +0 -0
  494. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_issue_955_height_contingency.py +0 -0
  495. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_label_provenance.py +0 -0
  496. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_layout.py +0 -0
  497. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_layout_cleanliness.py +0 -0
  498. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_layout_hypothesis.py +0 -0
  499. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_layout_property.py +0 -0
  500. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_leader_footprint.py +0 -0
  501. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_lint_box_cache.py +0 -0
  502. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_lint_ink_overlap.py +0 -0
  503. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_lint_reconciliation.py +0 -0
  504. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_lint_structural.py +0 -0
  505. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_linting.py +0 -0
  506. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_location_vocabulary.py +0 -0
  507. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_note_verb.py +0 -0
  508. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_object_aspects.py +0 -0
  509. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_occupancy_boxes.py +0 -0
  510. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_part_model.py +0 -0
  511. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_pitch_dim_footprint.py +0 -0
  512. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_pmi.py +0 -0
  513. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_pmi_datum_lowering.py +0 -0
  514. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_pmi_gtol_lowering.py +0 -0
  515. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_pmi_part21.py +0 -0
  516. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_pocket_pattern.py +0 -0
  517. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_principal_profile_classifier.py +0 -0
  518. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_private_test_attr_reads.py +0 -0
  519. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_private_test_imports.py +0 -0
  520. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_refactor_golden.py +0 -0
  521. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_registry.py +0 -0
  522. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_render_seam.py +0 -0
  523. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_repack_geometry_seam.py +0 -0
  524. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_script_detail_parity.py +0 -0
  525. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_shared_box_memo.py +0 -0
  526. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_sheet_gdt.py +0 -0
  527. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_sheet_notes.py +0 -0
  528. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_sheet_of.py +0 -0
  529. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_sheet_section.py +0 -0
  530. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_sheet_tables.py +0 -0
  531. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_slot_pattern.py +0 -0
  532. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_soft_deprecation.py +0 -0
  533. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_solve_trace.py +0 -0
  534. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_step_analysis_evaluation.py +0 -0
  535. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_suppression_ledger.py +0 -0
  536. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_suppression_marks.py +0 -0
  537. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_tolerances.py +0 -0
  538. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_view_plan.py +0 -0
  539. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_witness_label_reconciliation.py +0 -0
  540. {draftwright-0.4.18 → draftwright-0.4.20}/tests/test_workflows.py +0 -0
@@ -154,6 +154,23 @@
154
154
 
155
155
  ### Changed
156
156
 
157
+ - Production recognition now consumes published `quiddity==0.2.2`. Unified section-recess
158
+ occurrences and their same-run patterns feed the existing pocket, channel and blind-slot
159
+ drawing grammar. Original occurrence ownership, independent completeness and explicit
160
+ unsupported/refusal outcomes follow that single aggregate (#1471).
161
+ - Machine-readable reports and STEP inspection documents advance to schema v2 because their
162
+ closed producer object now names `quiddity`. The schema-v1 documents remain available for
163
+ existing files; readers must select the schema using `schema_version` (#1471).
164
+ - Groove membership now retains Quiddity's body-local profile identity. Generated declarations
165
+ use `profile_group` to associate coaxial grooves and steps without copying provider keys.
166
+ Omitted steps do not cause a groove to attach to another body (#1471).
167
+ - Known limitations in Quiddity 0.2.2: some mixed-profile/nested pockets, bore-intersected channels
168
+ and edge-open recesses, and pockets in cylindrical stock can lose automatic annotations.
169
+ Refusals remain visible in lint and evidence. Regression cases are retained as strict expected
170
+ failures while upstream [#536](https://github.com/pzfreo/quiddity/issues/536),
171
+ [#538](https://github.com/pzfreo/quiddity/issues/538) and
172
+ [#541](https://github.com/pzfreo/quiddity/issues/541) are open.
173
+
157
174
  - Accepted schema-v3 straight or circular `Blend` chains, including concave occurrences, now cross
158
175
  a dedicated end-to-end consumer path:
159
176
  `BlendFeature`, explicit `Sheet.blend(...)`, executable generated declarations, one
@@ -167,7 +184,7 @@
167
184
  also retains circular paths, while raw arbitrarily rotated circular recognition remains an
168
185
  upstream limitation (b123d-recognisers#491) (#1433; ADRs 0011, 0013–0017, 0020).
169
186
 
170
- - Draftwright now exactly pins the immutable `b123d-recognisers` 0.4.14 release and advances its
187
+ - The preceding recognition update pinned the immutable `b123d-recognisers` 0.4.14 release and advanced its
171
188
  fail-closed capability and inspection joins. `Blend` schema v3 replaces the old flat cylindrical
172
189
  fields with exact `StraightBlendPath` and `CircularBlendPath` records and admits proved concave
173
190
  and toroidal occurrences; Draftwright preserves those semantics through IR, `Sheet.blend(...)`,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: draftwright
3
- Version: 0.4.18
3
+ Version: 0.4.20
4
4
  Summary: Automated technical-drawing generation for build123d
5
5
  Project-URL: Homepage, https://github.com/pzfreo/draftwright
6
6
  Project-URL: Repository, https://github.com/pzfreo/draftwright
@@ -684,13 +684,13 @@ Classifier: Programming Language :: Python :: 3.14
684
684
  Classifier: Topic :: Scientific/Engineering
685
685
  Requires-Python: <3.15,>=3.10
686
686
  Requires-Dist: antlr4-python3-runtime<4.10
687
- Requires-Dist: b123d-recognisers==0.4.14
688
687
  Requires-Dist: build123d-drafting-helpers>=0.14.2
689
688
  Requires-Dist: build123d<0.11,>=0.9.0; python_full_version < '3.13'
690
689
  Requires-Dist: build123d<0.12,>=0.11; python_full_version >= '3.13'
691
690
  Requires-Dist: numpy>=1.24
692
691
  Requires-Dist: pillow>=10
693
692
  Requires-Dist: pypdfium2>=4
693
+ Requires-Dist: quiddity==0.2.2
694
694
  Requires-Dist: reportlab>=4.0
695
695
  Requires-Dist: steputils==0.1
696
696
  Requires-Dist: svglib>=1.5
@@ -1001,12 +1001,12 @@ builds on three libraries:
1001
1001
 
1002
1002
  ```
1003
1003
  draftwright
1004
- └── b123d-recognisers — deterministic geometry recognition
1004
+ └── quiddity — deterministic geometry recognition
1005
1005
  └── build123d-drafting-helpers — Dimension, Leader, HoleCallout, …
1006
1006
  └── build123d — CAD kernel
1007
1007
  ```
1008
1008
 
1009
- Geometry recognition lives in the Apache-2.0 `b123d-recognisers` package. Draftwright owns
1009
+ Geometry recognition lives in the Apache-2.0 `quiddity` package. Draftwright owns
1010
1010
  the per-build recognition cache, record→IR conversion, drafting policy, and linting
1011
1011
  (`linting/`); annotation primitives (`Dimension`, `Leader`, etc.) live in
1012
1012
  `build123d-drafting-helpers` and can be used independently. The compiler is largely converged
@@ -301,12 +301,12 @@ builds on three libraries:
301
301
 
302
302
  ```
303
303
  draftwright
304
- └── b123d-recognisers — deterministic geometry recognition
304
+ └── quiddity — deterministic geometry recognition
305
305
  └── build123d-drafting-helpers — Dimension, Leader, HoleCallout, …
306
306
  └── build123d — CAD kernel
307
307
  ```
308
308
 
309
- Geometry recognition lives in the Apache-2.0 `b123d-recognisers` package. Draftwright owns
309
+ Geometry recognition lives in the Apache-2.0 `quiddity` package. Draftwright owns
310
310
  the per-build recognition cache, record→IR conversion, drafting policy, and linting
311
311
  (`linting/`); annotation primitives (`Dimension`, `Leader`, etc.) live in
312
312
  `build123d-drafting-helpers` and can be used independently. The compiler is largely converged
@@ -1,6 +1,6 @@
1
1
  # Recogniser capability contract
2
2
 
3
- Draftwright consumes the public capability manifest installed with `b123d-recognisers`; it never
3
+ Draftwright consumes the public capability manifest installed with `quiddity`; it never
4
4
  reads a sibling checkout or a package-private file. The matching Draftwright-owned declaration is
5
5
  implemented in `draftwright.recogniser_contract` and validated in CI.
6
6
 
@@ -14,7 +14,7 @@ library.
14
14
  Declared-feature geometry reads use a different public boundary. The installed package's
15
15
  inspection manifest format 1 is joined to the separate Draftwright-owned declaration in
16
16
  `draftwright.inspection_contract`. That contract admits inspection API major 1 and exactly the
17
- consumed `b123d_recognisers.inspection` symbol schemas: the five geometry readers, their public
17
+ consumed `quiddity.inspection` symbol schemas: the five geometry readers, their public
18
18
  result/error types, the cylindrical surface parameter layout, bevel rejection reasons, and the
19
19
  semantic names and units of the Double-D tuple. It also checks the exact installed package
20
20
  version. Recognition-family policy does not leak into this smaller measurement contract, and an
@@ -59,7 +59,7 @@ Validation fails closed and names the family and boundary whenever possible:
59
59
  ## Adding or changing a recogniser
60
60
 
61
61
  For an additive field that increments an existing record schema, update the relevant Draftwright
62
- adapter and declaration when advancing the exact `b123d-recognisers` dependency pin. Tests must
62
+ adapter and declaration when advancing the exact `quiddity` dependency pin. Tests must
63
63
  prove the installed schema is accepted while later schemas still fail. The package version belongs
64
64
  only in `pyproject.toml` and `uv.lock`; the capability declaration derives runtime identities from
65
65
  installed package metadata.
@@ -70,9 +70,51 @@ issue. The contract test derives package record outputs, converter registries, l
70
70
  and emitter branches independently, so copying a new name into the declaration alone cannot make CI
71
71
  pass.
72
72
 
73
- `bosses` is the fully consumed reference family. `repeating-radial-profiles` is the opposite
74
- reference: it remains geometry-only critique evidence for a separately authored gear declaration,
75
- with no inferred gear feature added to fill the table.
73
+ ### Quiddity 0.2.2 runtime contract
74
+
75
+ [#1471](https://github.com/pzfreo/draftwright/issues/1471) moves production recognition to the
76
+ published `quiddity==0.2.2` package. Its public `quiddity`, `quiddity.evidence` and
77
+ `quiddity.inspection` surfaces supply recognition, exact occurrence evidence and declared geometry
78
+ reads. There is one recognition aggregate per build; consumers project that result rather than
79
+ calling the document builder to obtain another run.
80
+
81
+ The manifest has 27 families. One `section-recesses` family replaces the former pockets, pocket
82
+ patterns, channels, rectangular and round-bottom blind slots, passages and prismatic pockets.
83
+ `RecognitionResult.section_recesses` contains the immutable occurrences;
84
+ `section_recess_patterns` relates them by run-local occurrence indices; `section_recess_refusals`
85
+ retains the provider's explicit reasons for refusing candidate geometry. The public document
86
+ builder is a serialization front door, not another feature family or a production rescan.
87
+
88
+ The shared adapter reads the published frame, profile, run interval and ends and lowers supported
89
+ principal-axis geometry to the existing pocket, channel and blind-slot IR. It preserves the opening
90
+ direction and edge anchoring and rejects malformed records. Unsupported profiles and sloped ends
91
+ remain explicit unsupported outcomes; they receive no invented dimensions. Pattern members resolve
92
+ to the original records in the same aggregate before they share a drawing owner. Missing members,
93
+ duplicate indices, cross-body grouping and inconsistent lattice geometry fail closed.
94
+
95
+ Independent pocket and pattern corpora, channel ownership tests and both blind-slot corpora check
96
+ measurements, public declarations, executed generated code and the placed requirement ledger.
97
+ Recognition refusals retain source provenance and contribute an unsupported outcome without a
98
+ fabricated position. Report and inspection schema v2 name `producer.quiddity`; their v1 schemas
99
+ remain available for existing documents.
100
+
101
+ The 0.4.20 release includes these known Quiddity 0.2.2 limitations:
102
+
103
+ - Some mixed line/arc and nested pockets, including the tuner-jig and dense #915 STEP fixtures,
104
+ are refused: [Quiddity #536](https://github.com/pzfreo/quiddity/issues/536).
105
+ - Bores intersecting channel walls, floors or an edge-open recess can prevent recognition:
106
+ [Quiddity #538](https://github.com/pzfreo/quiddity/issues/538).
107
+ - A pocket cut into cylindrical stock can be refused:
108
+ [Quiddity #541](https://github.com/pzfreo/quiddity/issues/541).
109
+
110
+ These cases can lose automatic annotations that the previous provider emitted. Check recognition
111
+ refusals and lint when using affected geometry. An explicit refusal makes the limitation visible;
112
+ it does not establish drawing completeness. The regression cases remain in the suite as strict
113
+ expected failures linked to the upstream issues. Other recognition, declaration, placement,
114
+ reporting and coverage checks remain release gates.
115
+
116
+ `bosses` remains a fully consumed reference family. `repeating-radial-profiles` remains geometry-only
117
+ critique evidence for a separately authored gear declaration, with no inferred gear feature.
76
118
 
77
119
  ## Hole completeness evidence
78
120
 
@@ -175,11 +217,11 @@ independent score.
175
217
 
176
218
  ## Pocket completeness evidence
177
219
 
178
- The lone `pockets` completeness boundary is independently `supported` from
220
+ The lone-pocket grammar within `section-recesses` is independently `supported` from
179
221
  `tests/fixtures/evaluation/corpus-pockets-v1.json`. Ten construction-authored cases contribute 13
180
222
  physical pockets, 52 parameter checks and 52 downstream checks. The corpus covers a through-slot
181
223
  negative, one off-centre pocket, an edge-anchored corner interruption, equal independent pockets,
182
- opposite openings, a principal side opening, a PrismaticPocket ownership negative, separate
224
+ opposite openings, a principal side opening, an unsupported polygonal-pocket ownership negative, separate
183
225
  compound bodies and a reverse-serialized topology pair.
184
226
 
185
227
  Identity uses width/long/depth axes, opening sign and physical location; width, length, depth and
@@ -193,7 +235,7 @@ single public `location` authoring unit.
193
235
 
194
236
  ## Pocket-pattern completeness evidence
195
237
 
196
- The `pocket-patterns` completeness boundary is independently `supported` from
238
+ The pocket-pattern grammar within `section-recesses` is independently `supported` from
197
239
  `tests/fixtures/evaluation/corpus-pocket-patterns-v1.json`. Seven construction-authored cases
198
240
  cover 30° linear and rectangular-grid positives, the two-member threshold, unequal-spacing
199
241
  ambiguity, a plain negative, an axis-aligned underside compound case and a reverse-serialized
@@ -230,6 +272,14 @@ its diameter is drafted once. Removing provider grooves, changing width/diameter
230
272
  corrupting declaration or generated code, or severing either measurement claim reduces the
231
273
  corresponding independent layer.
232
274
 
275
+ Quiddity's optional `Groove.profile` key now identifies the exact body-local turned profile.
276
+ The compiler and independent axial/step ledgers use that key and still cross-check the published
277
+ axis line and axial band. Missing profile identity retains the geometric ambiguity refusal;
278
+ a missing profile in an authored subset cannot redirect the groove to another coaxial body.
279
+ Generated declarations replace the provider key with the same `profile_group` token used for the
280
+ owning steps. The keyed nested-body and omission checks live in
281
+ `tests/test_issue_1471_groove_profile.py`; they supplement the unchanged authored groove corpus.
282
+
233
283
  ## Rectangular-pad completeness evidence
234
284
 
235
285
  The `rectangular-pads` completeness boundary is independently `supported` from
@@ -505,27 +555,10 @@ position. Removing any one of those five physical facts produces
505
555
  independently authored rectangular-pad detection/parameter/downstream benchmark corpus required
506
556
  before claiming family-level completeness.
507
557
 
508
- ## Recognisers 0.4.10 adoption and blind-slot boundary
509
-
510
- Draftwright exactly pins `b123d-recognisers==0.4.10`. The 28 family record schemas already
511
- consumed from 0.4.9 are unchanged. The inspection namespace remains format 1 / API major 1;
512
- Draftwright advances its exact package join without widening the set of inspection symbols it
513
- consumes. The additive `b123d_recognisers.evidence` API is public provider capability, but this
514
- adoption does not consume it before a concrete correspondence slice demonstrates that need.
515
-
516
- Unchanged record schemas do not mean byte-identical recognition output. The 0.4.10 provider closes
517
- slot-depth, subdivided paired-ramp/AngledStep, and noisy stubby-pocket gaps and fixes Double-D/Hole
518
- ownership, external-cone countersink false positives, Plate tie covariance, and turned-step
519
- translation covariance. Draftwright accepts those public aggregate outcomes: its consumer tests pin
520
- that an external cone no longer creates a countersink requirement and that an edge-open rectangular
521
- recess now yields to the dedicated blind-slot owner instead of retaining a false `Pocket` callout.
522
- The provider's immutable
523
- [0.4.10 release](https://github.com/pzfreo/b123d-recognisers/releases/tag/v0.4.10) owns the lower-level
524
- recognition predicates and counterexamples; Draftwright does not duplicate private provider
525
- algorithms to restate them.
526
-
527
- The release adds `rectangular-blind-slots` and `round-bottom-blind-slots` to the one aggregate.
528
- Both now have dedicated Draftwright feature types and public Sheet words. The rectangular family
558
+ ## Blind-slot drawing grammar
559
+
560
+ Quiddity publishes both blind-slot shapes as `SectionRecess` occurrences in the unified inventory.
561
+ Their consumer contracts remain distinct. Both now have dedicated Draftwright feature types and public Sheet words. The rectangular family
529
562
  uses `RectangularBlindSlotFeature` and
530
563
  `Sheet.rectangular_blind_slot(...)` declaration, generated-code round trip and solver-owned
531
564
  `OPEN SLOT width × capped-run × depth DEEP` callout. Its axes and opening signs remain structural
@@ -553,14 +586,11 @@ with exact full-record correspondence and parameter/outcome provenance under the
553
586
  rules as the rectangular family. It now participates independently in `audited_score`; ordinary
554
587
  slots, pockets, channels and rectangular blind slots do not share ownership.
555
588
 
556
- ## Recognisers 0.4.14 adoption and path-complete Blends
589
+ ## Path-complete Blend drawing grammar
557
590
 
558
- Draftwright exactly pins `b123d-recognisers==0.4.14`; the provider family count remains 33 and
559
- the inspection API remains format 1 / major 1. The fail-closed record join now accepts `Blend`
560
- schema v3 with nested `StraightBlendPath` and `CircularBlendPath` schema-v1 records. It also
561
- accepts `PassageEnds`, `PassageSection`, and `SectionPassage` schema v2. Passage remains explicitly
562
- unsupported under #1245: accepting its released structural schema does not invent an IR feature,
563
- Sheet declaration, or completeness credit.
591
+ Quiddity 0.2.2 retains `Blend` schema v3 with nested `StraightBlendPath` and
592
+ `CircularBlendPath` schema-v1 records. The installed manifest and the independently declared
593
+ consumer schemas must agree before these records can reach drawing generation.
564
594
 
565
595
  The supported Blend adapter preserves the complete discriminated path. Straight occurrences keep
566
596
  their canonical line direction and anchor; circular occurrences keep their centre, canonical
@@ -588,12 +618,13 @@ the complete canonical `axis_direction`; `Sheet.blend(...)`, generated replay an
588
618
  solver-owned `n× R` leader preserve it without pretending it is a legacy Fillet. Exact occurrence
589
619
  and measurement provenance place Blend in `audited_score`.
590
620
 
591
- `oriented_slots` and `oriented_slot_patterns` remain separately registered as undecided under
592
- #1430. Their real occurrences are visible in `unscored_recognized_families`, but contribute no
593
- invented requirement. The free-axis slot record retains vector width/long directions and its
594
- authoritative `SectionPassage` source; array/grid records retain those member identities and their
595
- vector lattice. Coercing either into principal-axis `SlotFeature` / `SlotPatternFeature` would
596
- discard that contract, so no Sheet word or completeness claim exists for them on main.
621
+ Standalone `oriented_slots` are supported through dedicated vector-valued IR, the public
622
+ `Sheet.oriented_slot(...)` declaration, executable generated code, two compiler-approved width/length
623
+ requirements, and solver-owned leaders. Exact run-local identity binds each accepted record to its
624
+ IR owner. Array/grid members are excluded by exact provider-record membership and retain the
625
+ still-deferred `oriented-slot-patterns` policy; they are not emitted as competing singletons.
626
+ The shared requirement ledger feeds both lint and reports. Malformed or copied pattern authority
627
+ is refused rather than reconstructed from equal geometry.
597
628
 
598
629
  The existing schema-v1 `PairedRampStep` record is unchanged, while 0.4.12 expands provider
599
630
  recognition to shallow nonzero ramp pairs. A released shallow specimen now crosses the already
@@ -627,7 +658,7 @@ height/shoulder projection. The aggregate face-level and riser families remain s
627
658
  outcome says only that each raw evidence record is not itself an independent inferred feature or
628
659
  completeness requirement. It adds no Sheet word, IR adapter, drawing ink, or provider API.
629
660
 
630
- ## Recognisers 0.4.9 prepared frame boundary
661
+ ## Historical: recognisers 0.4.9 prepared frame boundary
631
662
 
632
663
  Draftwright's 0.4.9 boundary accepted `RiserEvidence` v2,
633
664
  `TurnedStep`/`TurnedProfile` v2, and the nested `TurnedProfileKey` v1. These records preserve
@@ -675,51 +706,26 @@ Sheet declaration, generated code or annotation, and emits
675
706
  occurrence contributes one `unsupported` completeness requirement. Issue #1247 records this
676
707
  consumer decision.
677
708
 
678
- ## Prismatic-pocket boundary
679
-
680
- The installed aggregate reconciles the two pocket inventories before Draftwright sees them. A
681
- candidate reported by both direct recognisers yields to the supported `Pocket` record;
682
- `RecognitionResult.prismatic_pockets` therefore contains occurrences not owned by `Pocket`.
683
- Draftwright consumes that aggregate policy and does not repeat provider reconciliation. This is an
684
- ownership statement, not a shape classification: for example, a rotated four-sided recess can
685
- remain a `PrismaticPocket` when the axis-paired `Pocket` recogniser does not accept it.
686
-
687
- The remaining `PrismaticPocket.section` may be any planar polygon. The rectangular pocket grammar
688
- `W × L × D DEEP` is false for a triangle, while an across-flats callout applies only to selected
689
- regular polygons and cannot represent the general record. Draftwright therefore retains the family
690
- disposition as `unsupported`: it creates no inferred IR feature, Sheet declaration, generated code,
691
- or drawing annotation. Each aggregate occurrence instead emits
692
- `prismatic_pocket_requirement_unsupported` at warning severity and contributes one `unsupported`
693
- completeness requirement. Exact mouth-to-section correlation replaces the generic unsupported-
694
- profile warning only for that occurrence, so an unrelated unrecognised profile remains visible.
695
-
696
- ## Passage compatibility boundary
697
-
698
- The installed `b123d-recognisers==0.4.14` release contains the `passages` family introduced
699
- in 0.2.6. Version 0.4.0 made `SectionPassage` the authoritative physical output; 0.4.14 publishes
700
- its nested schema v2 and retains `Passage` as a compatibility projection. Draftwright declares all
701
- six public and nested record schemas exhaustively but deliberately keeps the family `unsupported`,
702
- with the drafting decision recorded by issue #1245. This is a truthful consumer disposition: both
703
- aggregate inventories remain visible, but only authoritative `section_passages` contributes an explicitly
704
- `unsupported` completeness requirement. Draftwright does not invent an IR feature, DSL
705
- declaration, generated code, or drawing annotation for either inventory.
706
-
707
- The 0.4 contract is explicit:
708
-
709
- - `SectionPassage` will be the authoritative physical output and aggregate census source;
710
- - legacy `Passage` values will be an accepted-only compatibility projection;
711
- - `recognise_passages(..., ledger=...)` will be a fail-loud unavailable compatibility operation;
712
- - the writer-free `recognise_passages` name will remain public but non-authoritative; and
713
- - rich split-junction passages can supersede a Slot claim, moving physical ownership to the
714
- unsupported Passage family through `SLOT_SUPERSEDED_BY_PASSAGE`.
715
-
716
- The exact 0.4.14 pin, manifest-v2 validator and explicit unsupported inventories make that limitation
717
- fail-visible rather than silently treating rich passages as supported. Draftwright deliberately
718
- does not claim that a regular-polygon `HEX … A/F THRU` callout covers the complete line/arc section
719
- schema. Each authoritative `RecognitionResult.section_passages` occurrence therefore emits
720
- `passage_requirement_unsupported` at warning severity and contributes an `unsupported` requirement
721
- to the completeness component. The accepted-only legacy `.passages` projection contributes neither
722
- a second issue nor a second requirement. Issue #1245 records this consumer decision.
709
+ ## Unsupported polygonal-pocket and passage grammar
710
+
711
+ Quiddity's unified `SectionRecess` inventory carries both supported and unsupported profile
712
+ geometry. Draftwright selects its existing drawing grammar from the exact public section and ends;
713
+ it does not rerun provider recognition or retain a second legacy pocket/passage inventory.
714
+
715
+ A general polygonal recess has no truthful rectangular `W × L × D DEEP` callout. A general line/arc
716
+ through-opening likewise cannot be represented by a regular-polygon `HEX A/F THRU` callout.
717
+ These occurrences retain the decisions recorded by #1246 and #1245: no inferred IR feature, public
718
+ declaration, generated feature or annotation is invented. Each occurrence instead contributes one
719
+ `unsupported` completeness outcome and its corresponding `prismatic_pocket_requirement_unsupported`
720
+ or `passage_requirement_unsupported` warning. Exact mouth-to-section correlation can replace a
721
+ generic unsupported-profile warning for that occurrence; unrelated unrecognised geometry remains
722
+ visible. The old accepted-only Passage projection no longer exists and cannot add another count.
723
+
724
+ Provider refusals are distinct from accepted geometry outside the drawing grammar. Each exact
725
+ `SectionRecessRefusal` is retained with its reason and original evidence, emits
726
+ `section_recess_recognition_refused`, and carries no fabricated feature position. A valid unmatched
727
+ supported recess still contributes its full independent requirement count. A malformed recess
728
+ cannot establish a trustworthy family or denominator and is rejected at intake.
723
729
 
724
730
  ## Step families introduced in recognisers 0.4.6
725
731
 
@@ -4,6 +4,49 @@
4
4
  are documented here because they are part of normal use even though their Python names begin
5
5
  with an underscore.
6
6
 
7
+ ## Grooves on coaxial bodies
8
+
9
+ When different turned bodies share an axis line, give their steps distinct `profile_group`
10
+ values and use the owning body's value on `s.groove(..., profile_group="outer")`.
11
+ The token associates features; it does not specify an annotation position or add a measurement.
12
+ Generated scripts preserve this association using Draftwright-owned tokens instead of provider
13
+ keys. A groove can still be declared when the authored set omits all of that body's steps.
14
+
15
+ ## Checking dimension placement rules
16
+
17
+ Call `handle.dimension_ids()` to find the measurements a declared feature exposes, then
18
+ query a measurement before choosing its placement controls:
19
+
20
+ ```python
21
+ options = s.dimension_options(hole, "bore.diameter")
22
+ # options["placements"] contains pairs accepted by the planner's placement rules.
23
+ # None means leave that override unspecified.
24
+
25
+ check = s.validate_dimension(hole, "bore.diameter", view="plan", side="left")
26
+ if check["supported"]:
27
+ s.dimension(hole, "bore.diameter", view="plan", side="left")
28
+ else:
29
+ print(check["issues"], check["options"])
30
+ ```
31
+
32
+ Both queries return versioned JSON-ready dictionaries without recording intent, preparing the
33
+ Sheet, recognising geometry or rendering. Use complete view/side pairs: a side supported in one
34
+ view may be unavailable in another. The `axis` argument follows `dimension()`'s parameter-variant
35
+ rules; full parameter ids already name their variant. Location intent currently admits no view
36
+ or side override. Invalid references, unsupported controls and unsupported placement pairs have
37
+ separate structured refusal codes in `validate_dimension()`; `dimension_options()` raises on an
38
+ invalid reference.
39
+
40
+ The explicit `single_dimension_placement_rules` scope means `supported` reports acceptance by
41
+ the current planner placement rules. Both documents set `requires_build_validation: true`:
42
+ whole-part classification can select a different renderer, so this query does not prove actual
43
+ rendered support. For example, a boss on a turned part can use a different diameter renderer
44
+ from a boss on a prismatic part. Agreement with other authored dimensions, visibility in an
45
+ authored view set, available space, completeness and collision-free placement also require a
46
+ build. Build and lint still assess the resulting Sheet. A
47
+ query never replaces an existing dimension request. Keep the original feature handle for edits;
48
+ these reports do not introduce persistent feature identities or new lane, route or pin controls.
49
+
7
50
  ## Sheet
8
51
 
9
52
  ::: draftwright.sheet.Sheet
@@ -40,6 +83,14 @@ refused at declaration and constraints are never silently relaxed. The immutable
40
83
  snapshot is available as `sheet.view_constraints`, while `drawing.view_plan` is the distinct
41
84
  resolved result.
42
85
 
86
+ Layout advisories are also available as structured findings from `Drawing.lint()` and
87
+ `lint(physical=False)`. `legibility_floor_breached` reports an explicit scale below the
88
+ legibility floor when a legible automatic fit exists; `page_fit_uncertain` reports an
89
+ unsuccessful layout fit; `layout_repack_stalled` reports unresolved measured-repack
90
+ triggers; and `scale_fallback_applied` reports a computed scale or a completeness-driven
91
+ scale fallback. These warnings contribute to the legibility component of `lint_summary()`.
92
+ A successful measured fit replaces the earlier estimated fit warning.
93
+
43
94
  ### Taking over a detected baseline
44
95
 
45
96
  `Sheet.from_part(part)` retains the detector's feature set and starts with implicit automatic
@@ -148,6 +199,13 @@ explicit declaration has the same exact occurrence identity and view routing as
148
199
  record.
149
200
  Generated Sheet code preserves every field.
150
201
 
202
+ Straight-path radius leaders target curved boundaries of the physical cylindrical patch.
203
+ Their `at` value locates the analytic axis, not the arrow tip. If a declared support is missing
204
+ or ambiguous, the engine reports `blend_dropped`. Physical lint reports
205
+ `radius_leader_target_mismatch` when a placed tip misses its trimmed boundary, or
206
+ `radius_leader_target_unverifiable` when that boundary cannot be established; these findings
207
+ lower fidelity. Circular-path toroidal blends retain their separate tangency selection.
208
+
151
209
  These are part-space feature coordinates, never page positions. The annotation placement solve
152
210
  owns the final leader and label coordinates. The word is explicit-only because detached surface
153
211
  geometry cannot prove a complete chain or the provider aggregate's Fillet precedence.
@@ -289,3 +347,19 @@ drop, or missing ink is not hidden by the ownership choice.
289
347
  ::: draftwright.sheet._Control
290
348
  options:
291
349
  filters: public
350
+
351
+ Imported AP242 nominal-diameter ownership requires absolute agreement within `1e-6`
352
+ with the canonical feature diameter, using the same rule as planning. A larger mismatch
353
+ keeps the original source value and identity in a blocked dimension; it does not replace
354
+ the canonical value or crash planning. Generated Sheet scripts retain the blocker, and
355
+ `authored_dim_source_unresolved` reports the withheld source dimension through lint.
356
+
357
+ ### Oriented through-slots
358
+
359
+ `Sheet.oriented_slot(...)` declares a rectangular through-slot with explicit width, long and
360
+ run directions and its retained passage geometry. Its two independently addressable
361
+ measurements are `oriented_slot_width.length` and `oriented_slot_length.length`; generated
362
+ Sheet scripts preserve those directions and the passage. The current drawing grammar requires
363
+ both run ends to be open and perpendicular to the run. Automatic conversion rejects a source
364
+ with a nonzero end-plane gradient, because the IR cannot retain that slope and a flat opening
365
+ would put the leader on the wrong physical rim.
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "draftwright"
7
- version = "0.4.18"
7
+ version = "0.4.20"
8
8
  description = "Automated technical-drawing generation for build123d"
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -18,7 +18,7 @@ dependencies = [
18
18
  "build123d>=0.9.0,<0.11 ; python_full_version < '3.13'",
19
19
  "build123d>=0.11,<0.12 ; python_full_version >= '3.13'",
20
20
  "build123d-drafting-helpers>=0.14.2",
21
- "b123d-recognisers==0.4.14",
21
+ "quiddity==0.2.2",
22
22
  "numpy>=1.24",
23
23
  # PNG raster export (SVG→PDF→PNG). Both permissively licensed (Pillow HPND; pypdfium2
24
24
  # Apache-2.0 wrapping Google PDFium BSD-3) and ship pre-built wheels with NO native system
@@ -169,6 +169,7 @@ dev = [
169
169
  "pytest-split>=0.8",
170
170
  "pytest-timeout>=2",
171
171
  "pytest-xdist>=3",
172
+ # Released provider used by the migration parity tests; production remains on 0.4.14.
172
173
  "ruff>=0.4",
173
174
  "tomli>=2; python_version < '3.11'",
174
175
  ]
@@ -25,8 +25,8 @@ from types import SimpleNamespace
25
25
  from typing import TYPE_CHECKING, Literal
26
26
 
27
27
  if TYPE_CHECKING:
28
- from b123d_recognisers import RecognitionResult, TurnedProfile
29
- from b123d_recognisers.evidence import RecognitionEvidence
28
+ from quiddity import RecognitionResult, TurnedProfile
29
+ from quiddity.evidence import RecognitionEvidence
30
30
 
31
31
  from draftwright.compose import StripDepths
32
32
  from draftwright.recognition_ownership import RecognitionOwnership
@@ -1135,8 +1135,6 @@ class Analysis:
1135
1135
  patterns: list
1136
1136
  bosses: list # external bosses (recognise_bosses), detected once — the one inventory (#244)
1137
1137
  slots: list
1138
- pockets: list
1139
- pocket_patterns: list
1140
1138
  pads: list # geometry-derived rectangular-pad coverage inventory (#885)
1141
1139
  z_diams: list[float]
1142
1140
  cross_diams: list[float]
@@ -1202,6 +1200,7 @@ class Analysis:
1202
1200
  # Standing ISO 7200 title-block fields (#766) — defaulted, so they sit after the
1203
1201
  # non-default fields above. Defaults preserve the prior output: revision "A", the rest
1204
1202
  # blank (the TitleBlock helper's own defaults).
1203
+ layout_advisories: tuple[tuple[str, str], ...] = ()
1205
1204
  material: str = ""
1206
1205
  date: str = ""
1207
1206
  revision: str = "A"
@@ -18,8 +18,8 @@ from dataclasses import dataclass
18
18
  from decimal import Decimal
19
19
  from inspect import signature
20
20
 
21
- from b123d_recognisers import full_cylinders
22
- from build123d import Compound, Shape
21
+ from build123d import Compound, GeomType, Shape
22
+ from quiddity import full_cylinders
23
23
 
24
24
  _log = logging.getLogger(__name__)
25
25
 
@@ -53,7 +53,7 @@ _OD_FILL_MIN = 0.8
53
53
  _OD_AXIS_TOL = 0.05
54
54
  _COAXIAL_TOL = 1e-3
55
55
 
56
- # ``b123d-recognisers`` publishes independently quantised public measurements at six
56
+ # ``quiddity`` publishes independently quantised public measurements at six
57
57
  # significant figures. These model-neutral bounds reconstruct the possible geometry from the
58
58
  # published decimal cells without coupling either the IR waist or linting to provider internals.
59
59
  _PROVIDER_SIGNIFICANT_FIGURES = 6
@@ -1181,3 +1181,51 @@ def _segments_cross_or_overlap(a1, a2, b1, b2) -> bool:
1181
1181
  if on_segment(point, first, second) and not (same(point, first) or same(point, second)):
1182
1182
  return True
1183
1183
  return False
1184
+
1185
+
1186
+ def _straight_blend_faces(blend, cylinders, radius, *, defining_faces=None):
1187
+ """Use exact occurrence faces, or one unambiguous declared cylinder support."""
1188
+ if defining_faces is not None:
1189
+ return tuple(defining_faces)
1190
+ origin = blend.frame.origin
1191
+ direction = blend.axis_direction
1192
+ length = math.hypot(*direction)
1193
+ normal = tuple(value / length for value in direction)
1194
+ matches = []
1195
+ for family in cylinders:
1196
+ for cylinder in family:
1197
+ if abs(cylinder["diameter"] / 2 - radius) > 2e-3:
1198
+ continue
1199
+ if cylinder["external"] != (blend.side == "convex"):
1200
+ continue
1201
+ axis = cylinder["dir_xyz"]
1202
+ alignment = abs(sum(normal[i] * axis[i] for i in range(3)))
1203
+ delta = tuple(origin[i] - cylinder["axis_xyz"][i] for i in range(3))
1204
+ along = sum(delta[i] * axis[i] for i in range(3))
1205
+ radial = math.hypot(*(delta[i] - along * axis[i] for i in range(3)))
1206
+ station = sum(origin[i] * axis[i] for i in range(3))
1207
+ if (
1208
+ abs(alignment - 1) <= 2e-6
1209
+ and radial <= 2e-3
1210
+ and cylinder["s_lo"] - 2e-3 <= station <= cylinder["s_hi"] + 2e-3
1211
+ ):
1212
+ matches.append(cylinder["face"])
1213
+ return tuple(matches) if len(matches) == 1 else ()
1214
+
1215
+
1216
+ def _blend_profile_arcs(faces, radius):
1217
+ """Curved boundaries of the physical cylindrical patch carrying this radius.
1218
+
1219
+ An oblique end trim can be a spline in 3-D while its end-on profile is still a radius
1220
+ arc. Validate the cylinder's radius and retain the actual boundary curve, never rebuild
1221
+ an untrimmed mathematical circle. Straight generatrices are not radius targets.
1222
+ """
1223
+ return tuple(
1224
+ edge
1225
+ for face in faces
1226
+ if face.geom_type == GeomType.CYLINDER
1227
+ and face.radius is not None
1228
+ and abs(face.radius - radius) <= 2e-3
1229
+ for edge in face.edges()
1230
+ if edge.geom_type != GeomType.LINE
1231
+ )