feat: 完善 Edge 一级编辑与 CAD 建模语义

This commit is contained in:
2026-08-05 18:06:15 +08:00
parent ed1faf51d8
commit 57d75541c3
19 changed files with 2365 additions and 367 deletions
@@ -9,6 +9,7 @@ if str(PROJECT_ROOT) not in sys.path:
from step_editor.model import StepModel
from step_editor.window_state import WindowStateMixin, _feature_dimension_keys
from scripts.verify_large_stepped_cap_push_pull import _large_multi_boundary_cap_face, _large_stepped_cap_face
MODEL_PATH = PROJECT_ROOT / "assets" / "models" / "geom_extract.step"
@@ -26,7 +27,7 @@ class _Probe(WindowStateMixin):
pass
def _feature_rows(model: StepModel, face_id: int) -> tuple[str, ...]:
def _feature_context(model: StepModel, face_id: int) -> dict[str, object]:
info = model.quick_face_info(face_id)
probe = object.__new__(_Probe)
probe.model = model
@@ -41,7 +42,24 @@ def _feature_rows(model: StepModel, face_id: int) -> tuple[str, ...]:
probe.feature_detection_level = "current-only"
probe.manual_bottom_face_id = None
probe.manual_slot_pair_face_id = None
context = probe._feature_context_info(face_id)
return probe._feature_context_info(face_id)
def _feature_rows(model: StepModel, face_id: int) -> tuple[str, ...]:
context = _feature_context(model, face_id)
probe = object.__new__(_Probe)
probe.model = model
probe.operation_in_progress = False
probe.scan_in_progress = False
probe.load_in_progress = False
probe.selected_face_id = face_id
probe.selected_edge_id = None
probe.selected_kind = "feature"
probe.selected_part_id = int(context["part_id"])
probe.selected_solid_id = int(context["solid_id"])
probe.feature_detection_level = "current-only"
probe.manual_bottom_face_id = None
probe.manual_slot_pair_face_id = None
specs, _used = probe._editable_property_specs(context)
rows = probe._feature_context_property_specs(specs, context)
return tuple(str(row.get("key")) for row in rows if row.get("parameter_role") == "dimension")
@@ -53,6 +71,47 @@ def _assert_contains(keys: tuple[str, ...], expected: tuple[str, ...], label: st
raise AssertionError(f"{label} missing {missing}, got {keys}")
def _assert_face_594_stays_stable_after_remote_cap_edit() -> None:
model = StepModel.load(MODEL_PATH)
source_face_id = _large_stepped_cap_face(model)
target_face_id = _large_multi_boundary_cap_face(model)
if target_face_id != FACE_ID:
raise AssertionError(f"expected large multi-boundary cap to be Face {FACE_ID}, got {target_face_id}")
target_logical_id = model.face_region_logical_id(target_face_id)
before_rows = _feature_rows(model, target_face_id)
before_info = model.quick_face_info(target_face_id)
model.push_pull_face(source_face_id, 89.0)
resolved_face_id = model.resolve_face_selection_id(target_logical_id)
if resolved_face_id is None:
raise AssertionError(f"remote cap edit lost logical Face {target_logical_id}")
after_info = model.quick_face_info(resolved_face_id)
if after_info.get("surface") != "plane":
raise AssertionError(
f"logical Face {target_logical_id} should still point to the multi-boundary plane, "
f"got Face {resolved_face_id}: {after_info}"
)
if int(after_info.get("inner_boundary_wires", 0) or 0) < int(before_info.get("inner_boundary_wires", 0) or 0):
raise AssertionError(
f"logical Face {target_logical_id} lost inner boundary wires after remote edit: "
f"before={before_info}, after={after_info}"
)
after_rows = _feature_rows(model, resolved_face_id)
if after_rows != before_rows:
raise AssertionError(
"Face 594 current-only feature rows changed after editing a remote cylindrical cap: "
f"before={before_rows}, after={after_rows}, resolved={resolved_face_id}"
)
context = _feature_context(model, resolved_face_id)
if context.get("selection_display_id") != target_logical_id:
raise AssertionError(f"feature context should keep logical Face ID {target_logical_id}: {context}")
if context.get("selection_topological_face_id") != resolved_face_id:
raise AssertionError(f"feature context should expose current topological Face {resolved_face_id}: {context}")
def main() -> int:
model = StepModel.load(MODEL_PATH)
if FACE_ID >= len(model.faces):
@@ -80,6 +139,8 @@ def main() -> int:
f"before={before_cached_rows}, after={after_cached_rows}"
)
_assert_face_594_stays_stable_after_remote_cap_edit()
print("Face feature parameter consistency ok")
return 0