feat: 增强一级关系识别与保持关系策略
This commit is contained in:
@@ -79,6 +79,29 @@ INFO_GROUPS: list[tuple[str, list[str]]] = [
|
||||
"first_level_fact_ignored_relation_depths",
|
||||
"first_level_fact_ignored_relation_note",
|
||||
"first_level_fact_summary",
|
||||
"first_level_planar_relation_status",
|
||||
"first_level_planar_relation_scope",
|
||||
"first_level_planar_relation_count",
|
||||
"first_level_planar_relation_parallel_count",
|
||||
"first_level_planar_relation_perpendicular_count",
|
||||
"first_level_planar_relation_angled_count",
|
||||
"first_level_planar_relation_face_face_count",
|
||||
"first_level_planar_relation_edge_axis_count",
|
||||
"first_level_planar_relation_rows",
|
||||
"first_level_planar_relation_observed_modes",
|
||||
"first_level_planar_relation_summary",
|
||||
"first_level_planar_relation_note",
|
||||
"edge_length_planar_relation_constraint_requested",
|
||||
"edge_length_planar_relation_constraint_label",
|
||||
"edge_length_planar_constraint_status",
|
||||
"edge_length_planar_constraint_summary",
|
||||
"edge_length_planar_constraint_side_face_count",
|
||||
"edge_length_planar_constraint_parallel_count",
|
||||
"edge_length_planar_constraint_perpendicular_count",
|
||||
"edge_length_planar_constraint_angled_count",
|
||||
"edge_length_planar_constraint_observed_modes",
|
||||
"edge_length_planar_constraint_blockers",
|
||||
"edge_length_planar_constraint_warnings",
|
||||
"selected_edge_ids",
|
||||
"selected_edge_count",
|
||||
"first_level_vertex_points",
|
||||
@@ -146,6 +169,11 @@ INFO_GROUPS: list[tuple[str, list[str]]] = [
|
||||
"existing_fillet_radius_estimate",
|
||||
"existing_fillet_angular_span",
|
||||
"existing_fillet_arc_length_estimate",
|
||||
"existing_chamfer_distance_estimate",
|
||||
"existing_chamfer_cross_edge_length_estimate",
|
||||
"existing_chamfer_long_edge_length_estimate",
|
||||
"existing_chamfer_support_angle_degrees",
|
||||
"existing_chamfer_face_angle_degrees",
|
||||
"current_depth",
|
||||
"target_depth",
|
||||
"delta_depth",
|
||||
@@ -219,6 +247,25 @@ INFO_GROUPS: list[tuple[str, list[str]]] = [
|
||||
"shell_movement_alignment",
|
||||
"shell_note",
|
||||
"shell_region_note",
|
||||
"open_shell_context_status",
|
||||
"open_shell_kind",
|
||||
"open_shell_axis",
|
||||
"open_shell_side",
|
||||
"open_shell_open_direction",
|
||||
"open_shell_wall_thickness_estimate",
|
||||
"open_shell_open_side_area_ratio",
|
||||
"open_shell_closed_side_area_ratio",
|
||||
"open_shell_current_face_role",
|
||||
"open_shell_current_face_id",
|
||||
"open_shell_rim_face_ids",
|
||||
"open_shell_closed_side_face_ids",
|
||||
"open_shell_inner_face_ids",
|
||||
"open_shell_thin_wall_face_ids",
|
||||
"open_shell_related_face_ids",
|
||||
"open_shell_highlight_face_ids",
|
||||
"open_shell_limited_action",
|
||||
"open_shell_blockers",
|
||||
"open_shell_note",
|
||||
],
|
||||
),
|
||||
(
|
||||
@@ -293,6 +340,17 @@ INFO_GROUPS: list[tuple[str, list[str]]] = [
|
||||
"existing_fillet_kind",
|
||||
"existing_fillet_status",
|
||||
"existing_fillet_note",
|
||||
"feature_existing_chamfer_face_ids",
|
||||
"feature_existing_chamfer_support_face_ids",
|
||||
"feature_existing_chamfer_end_face_ids",
|
||||
"feature_existing_chamfer_short_edge_ids",
|
||||
"feature_existing_chamfer_long_edge_ids",
|
||||
"existing_chamfer_kind",
|
||||
"existing_chamfer_status",
|
||||
"existing_chamfer_risk",
|
||||
"existing_chamfer_warnings",
|
||||
"existing_chamfer_blockers",
|
||||
"existing_chamfer_note",
|
||||
"feature_edit_actions",
|
||||
"resize_status",
|
||||
"resize_strategy",
|
||||
@@ -496,6 +554,29 @@ INFO_LABELS = {
|
||||
"first_level_fact_ignored_relation_depths": "暂不传播层级",
|
||||
"first_level_fact_ignored_relation_note": "暂不传播说明",
|
||||
"first_level_fact_summary": "一级事实摘要",
|
||||
"first_level_planar_relation_status": "一级平面关系状态",
|
||||
"first_level_planar_relation_scope": "一级平面关系范围",
|
||||
"first_level_planar_relation_count": "一级平面关系数",
|
||||
"first_level_planar_relation_parallel_count": "一级平行关系数",
|
||||
"first_level_planar_relation_perpendicular_count": "一级垂直关系数",
|
||||
"first_level_planar_relation_angled_count": "一级斜交关系数",
|
||||
"first_level_planar_relation_face_face_count": "Face-Face 平面关系数",
|
||||
"first_level_planar_relation_edge_axis_count": "Face-Edge 方向关系数",
|
||||
"first_level_planar_relation_rows": "一级平面关系列表",
|
||||
"first_level_planar_relation_observed_modes": "已识别平面关系",
|
||||
"first_level_planar_relation_summary": "一级平面关系摘要",
|
||||
"first_level_planar_relation_note": "一级平面关系说明",
|
||||
"edge_length_planar_relation_constraint_requested": "已请求保持一级平面关系",
|
||||
"edge_length_planar_relation_constraint_label": "一级平面关系约束",
|
||||
"edge_length_planar_constraint_status": "端面推拉约束状态",
|
||||
"edge_length_planar_constraint_summary": "端面推拉约束摘要",
|
||||
"edge_length_planar_constraint_side_face_count": "端面推拉侧面数",
|
||||
"edge_length_planar_constraint_parallel_count": "端面推拉平行关系数",
|
||||
"edge_length_planar_constraint_perpendicular_count": "端面推拉垂直关系数",
|
||||
"edge_length_planar_constraint_angled_count": "端面推拉斜交关系数",
|
||||
"edge_length_planar_constraint_observed_modes": "端面推拉已识别关系",
|
||||
"edge_length_planar_constraint_blockers": "端面推拉阻止原因",
|
||||
"edge_length_planar_constraint_warnings": "端面推拉警告",
|
||||
"selected_edge_ids": "当前 Edge",
|
||||
"selected_edge_count": "当前 Edge 数",
|
||||
"first_level_vertex_points": "一级端点 Vertex",
|
||||
@@ -671,6 +752,25 @@ INFO_LABELS = {
|
||||
"shell_movement_alignment": "壳体移动方向匹配度",
|
||||
"shell_note": "壳体识别说明",
|
||||
"shell_region_note": "壳体识别说明",
|
||||
"open_shell_context_status": "开口壳体上下文状态",
|
||||
"open_shell_kind": "开口壳体类型",
|
||||
"open_shell_axis": "开口方向轴",
|
||||
"open_shell_side": "开口侧",
|
||||
"open_shell_open_direction": "开口方向",
|
||||
"open_shell_wall_thickness_estimate": "开口壳体壁厚估算",
|
||||
"open_shell_open_side_area_ratio": "开口侧面积占比",
|
||||
"open_shell_closed_side_area_ratio": "封闭侧面积占比",
|
||||
"open_shell_current_face_role": "当前 Face 壳体角色",
|
||||
"open_shell_current_face_id": "当前开口壳体 Face",
|
||||
"open_shell_rim_face_ids": "开口边界 Face",
|
||||
"open_shell_closed_side_face_ids": "封闭侧 Face",
|
||||
"open_shell_inner_face_ids": "内壁/内底 Face",
|
||||
"open_shell_thin_wall_face_ids": "薄壁 Face",
|
||||
"open_shell_related_face_ids": "开口壳体相关 Face",
|
||||
"open_shell_highlight_face_ids": "开口壳体高亮 Face",
|
||||
"open_shell_limited_action": "受限壳体操作",
|
||||
"open_shell_blockers": "开口壳体限制原因",
|
||||
"open_shell_note": "开口壳体说明",
|
||||
"u_range": "U 参数范围",
|
||||
"v_range": "V 参数范围",
|
||||
"first_parameter": "起始参数",
|
||||
@@ -723,6 +823,22 @@ INFO_LABELS = {
|
||||
"existing_fillet_kind": "已有圆角类型",
|
||||
"existing_fillet_status": "已有圆角识别状态",
|
||||
"existing_fillet_radius_estimate": "已有圆角半径估算",
|
||||
"feature_existing_chamfer_face_ids": "已有倒角 Face",
|
||||
"feature_existing_chamfer_support_face_ids": "已有倒角支撑 Face",
|
||||
"feature_existing_chamfer_end_face_ids": "已有倒角端面 Face",
|
||||
"feature_existing_chamfer_short_edge_ids": "已有倒角短边 Edge",
|
||||
"feature_existing_chamfer_long_edge_ids": "已有倒角长边 Edge",
|
||||
"existing_chamfer_kind": "已有倒角类型",
|
||||
"existing_chamfer_status": "已有倒角识别状态",
|
||||
"existing_chamfer_risk": "已有倒角风险",
|
||||
"existing_chamfer_warnings": "已有倒角警告",
|
||||
"existing_chamfer_blockers": "已有倒角阻止原因",
|
||||
"existing_chamfer_distance_estimate": "已有倒角距离估算",
|
||||
"existing_chamfer_cross_edge_length_estimate": "已有倒角截面边长估算",
|
||||
"existing_chamfer_long_edge_length_estimate": "已有倒角长度估算",
|
||||
"existing_chamfer_support_angle_degrees": "已有倒角支撑面夹角",
|
||||
"existing_chamfer_face_angle_degrees": "已有倒角面角度",
|
||||
"existing_chamfer_note": "已有倒角识别说明",
|
||||
"feature_reference_radius": "特征参考半径",
|
||||
"feature_reference_diameter": "特征参考直径",
|
||||
"feature_cone_small_radius": "锥孔小端半径",
|
||||
|
||||
Reference in New Issue
Block a user