solidworks_mcp.adapters.solidworks.features¶
solidworks_mcp.adapters.solidworks.features ¶
Feature-domain mixin for PyWin32 SolidWorks operations.
Attributes¶
_TREE_WALK_MEMBERS
module-attribute
¶
Classes¶
AdapterResult
dataclass
¶
AdapterResult(status: AdapterResultStatus, data: T | None = None, error: str | None = None, execution_time: float | None = None, metadata: dict[str, Any] | None = None)
Bases: Generic[T]
Result wrapper for adapter operations.
Attributes:
| Name | Type | Description |
|---|---|---|
data |
T | None
|
The data value. |
error |
str | None
|
The error value. |
execution_time |
float | None
|
The execution time value. |
metadata |
dict[str, Any] | None
|
The metadata value. |
status |
AdapterResultStatus
|
The status value. |
AdapterResultStatus ¶
Bases: StrEnum
Result status for adapter operations.
Attributes:
| Name | Type | Description |
|---|---|---|
ERROR |
Any
|
The error value. |
SUCCESS |
Any
|
The success value. |
TIMEOUT |
Any
|
The timeout value. |
WARNING |
Any
|
The warning value. |
ExtrusionParameters ¶
Bases: BaseModel
Parameters for extrusion operations.
Attributes:
| Name | Type | Description |
|---|---|---|
auto_select |
bool
|
The auto select value. |
both_directions |
bool
|
The both directions value. |
depth |
float
|
The depth value. |
draft_angle |
float
|
The draft angle value. |
end_condition |
str
|
The end condition value. |
feature_scope |
bool
|
The feature scope value. |
merge_result |
bool
|
The merge result value. |
reverse_direction |
bool
|
The reverse direction value. |
thin_feature |
bool
|
The thin feature value. |
thin_thickness |
float | None
|
The thin thickness value. |
up_to_surface |
str | None
|
The up to surface value. |
LoftParameters ¶
Bases: BaseModel
Parameters for loft operations.
Attributes:
| Name | Type | Description |
|---|---|---|
end_tangent |
str | None
|
The end tangent value. |
guide_curves |
list[str] | None
|
The guide curves value. |
merge_result |
bool
|
The merge result value. |
profiles |
list[str]
|
The profiles value. |
start_tangent |
str | None
|
The start tangent value. |
RevolveParameters ¶
Bases: BaseModel
Parameters for revolve operations.
Attributes:
| Name | Type | Description |
|---|---|---|
angle |
float
|
The angle value. |
both_directions |
bool
|
The both directions value. |
merge_result |
bool
|
The merge result value. |
reverse_direction |
bool
|
The reverse direction value. |
thin_feature |
bool
|
The thin feature value. |
thin_thickness |
float | None
|
The thin thickness value. |
SolidWorksFeature ¶
Bases: BaseModel
SolidWorks feature information.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str | None
|
The id value. |
name |
str
|
The name value. |
parameters |
dict[str, Any] | None
|
The parameters value. |
parent |
str | None
|
The parent value. |
properties |
dict[str, Any] | None
|
The properties value. |
type |
str
|
The type value. |
SolidWorksFeaturesMixin ¶
Expose SolidWorks feature methods via mixin-local implementation helpers.
SweepParameters ¶
Bases: BaseModel
Parameters for sweep operations.
Attributes:
| Name | Type | Description |
|---|---|---|
merge_result |
bool
|
The merge result value. |
path |
str
|
The path value. |
twist_along_path |
bool
|
The twist along path value. |
twist_angle |
float
|
The twist angle value. |
Functions:¶
_add_chamfer_impl ¶
_add_chamfer_impl(adapter: Any, distance: float, edge_names: list[str]) -> AdapterResult[SolidWorksFeature]
Create an equal-distance chamfer on one or more named edges.
Each edge in edge_names is selected by name using
Extension.SelectByID2 with entity type "EDGE". After all edges
are in the selection set, FeatureChamfer is called in
equal-distance mode (type 1).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A fully connected |
required |
distance
|
float
|
Chamfer distance in millimetres. Converted to metres internally. |
required |
edge_names
|
list[str]
|
List of SolidWorks edge entity names, e.g.
|
required |
Returns:
| Type | Description |
|---|---|
AdapterResult[SolidWorksFeature]
|
AdapterResult[SolidWorksFeature]: On success, |
AdapterResult[SolidWorksFeature]
|
|
AdapterResult[SolidWorksFeature]
|
|
Raises:
| Type | Description |
|---|---|
Exception
|
Propagated through |
Example::
result = pywin32_feature_ops.add_chamfer(
adapter, distance=2.0, edge_names=["Edge<2>"]
)
print(result.data.name) # e.g. "Chamfer1"
Source code in src/solidworks_mcp/adapters/solidworks/features.py
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 | |
_add_fillet_impl ¶
_add_fillet_impl(adapter: Any, radius: float, edge_names: list[str]) -> AdapterResult[SolidWorksFeature]
Create a constant-radius fillet on one or more named edges.
Each edge in edge_names is selected by name using
Extension.SelectByID2 with entity type "EDGE". After all edges
are in the selection set, FeatureFillet3 is called to build the
feature.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A fully connected |
required |
radius
|
float
|
Fillet radius in millimetres. Converted to metres internally before the COM call. |
required |
edge_names
|
list[str]
|
List of SolidWorks edge entity names to fillet, e.g.
|
required |
Returns:
| Type | Description |
|---|---|
AdapterResult[SolidWorksFeature]
|
AdapterResult[SolidWorksFeature]: On success, |
AdapterResult[SolidWorksFeature]
|
|
AdapterResult[SolidWorksFeature]
|
|
Raises:
| Type | Description |
|---|---|
Exception
|
Propagated through |
Example::
result = pywin32_feature_ops.add_fillet(
adapter, radius=3.0, edge_names=["Edge<1>", "Edge<3>"]
)
print(result.data.name) # e.g. "Fillet1"
Source code in src/solidworks_mcp/adapters/solidworks/features.py
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 | |
_create_cut_extrude_impl ¶
_create_cut_extrude_impl(adapter: Any, params: ExtrusionParameters) -> AdapterResult[SolidWorksFeature]
Create a cut-extrude feature from the active sketch profile.
The function first attempts to locate and select the sketch profile that
should be cut. It walks the feature tree looking for the most recent
ProfileFeature; if that fails, it falls back to the _last_sketch_name
tracker and then to an enumerated Sketch<N> name search.
Three COM API variants are attempted in order of preference:
FeatureCut4ΓÇö most modern (SolidWorks 2015+).FeatureCut3modern signature ΓÇö SolidWorks 2010ΓÇô2014.FeatureCut3legacy argument order ΓÇö older installs.
All depth values are in millimetres and converted to metres internally.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A fully connected |
required |
params
|
ExtrusionParameters
|
Extrusion parameter bag reused for cut parameters:
- |
required |
Returns:
| Type | Description |
|---|---|
AdapterResult[SolidWorksFeature]
|
AdapterResult[SolidWorksFeature]: On success, |
AdapterResult[SolidWorksFeature]
|
|
AdapterResult[SolidWorksFeature]
|
failure, |
AdapterResult[SolidWorksFeature]
|
variant that was tried. |
Raises:
| Type | Description |
|---|---|
Exception
|
Propagated through |
Example::
from solidworks_mcp.adapters.base import ExtrusionParameters
from solidworks_mcp.adapters import pywin32_feature_ops
params = ExtrusionParameters(depth=10.0, end_condition="ThroughAll")
result = pywin32_feature_ops.create_cut_extrude(adapter, params)
print(result.data.name) # e.g. "Cut-Extrude1"
Source code in src/solidworks_mcp/adapters/solidworks/features.py
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 | |
_create_extrusion_impl ¶
_create_extrusion_impl(adapter: Any, params: ExtrusionParameters) -> AdapterResult[SolidWorksFeature]
Create a boss-extrude feature from the active sketch profile.
Attempts the modern FeatureExtrusion3 COM call first; falls back to the
legacy FeatureExtrusion2 signature when the newer overload is absent.
When params.thin_feature is truthy, the thin-wall variants
(FeatureExtrusionThin2 / FeatureExtruThin2) are used instead.
All depth and thickness values are provided in millimetres and converted to metres internally.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A fully connected |
required |
params
|
ExtrusionParameters
|
Extrusion parameter bag. Relevant fields:
- |
required |
Returns:
| Type | Description |
|---|---|
AdapterResult[SolidWorksFeature]
|
AdapterResult[SolidWorksFeature]: On success, |
AdapterResult[SolidWorksFeature]
|
|
AdapterResult[SolidWorksFeature]
|
|
Raises:
| Type | Description |
|---|---|
Exception
|
Propagated through |
Example::
from solidworks_mcp.adapters.base import ExtrusionParameters
from solidworks_mcp.adapters import pywin32_feature_ops
params = ExtrusionParameters(depth=25.0, draft_angle=2.0)
result = pywin32_feature_ops.create_extrusion(adapter, params)
print(result.data.name) # e.g. "Boss-Extrude1"
Source code in src/solidworks_mcp/adapters/solidworks/features.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | |
_create_loft_impl ¶
Create a lofted boss/protrusion between two or more profile sketches.
Uses IFeatureManager::InsertProtrusionBlend2. Each profile named in
params.profiles is selected under mark 1 (in order — the selection
order determines the loft direction), and any params.guide_curves are
selected under mark 2. Because a solid is produced, every profile must be
a closed contour.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A fully connected |
required |
params
|
LoftParameters
|
Loft parameter bag. Relevant fields:
- |
required |
Returns:
| Type | Description |
|---|---|
AdapterResult[SolidWorksFeature]
|
AdapterResult[SolidWorksFeature]: On success, |
AdapterResult[SolidWorksFeature]
|
|
AdapterResult[SolidWorksFeature]
|
|
Raises:
| Type | Description |
|---|---|
Exception
|
Propagated through |
Example::
from solidworks_mcp.adapters.base import LoftParameters
params = LoftParameters(profiles=["Sketch1", "Sketch2"])
result = await adapter.create_loft(params)
print(result.data.name) # e.g. "Loft1"
Source code in src/solidworks_mcp/adapters/solidworks/features.py
736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 | |
_create_revolve_impl ¶
Create a revolve feature from the active sketch profile around a centre axis.
Uses FeatureRevolve2 from the SolidWorks COM API. The sketch must
already contain a centre-line that SolidWorks will use as the rotation axis.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A fully connected |
required |
params
|
RevolveParameters
|
Revolve parameter bag. Relevant fields:
- |
required |
Returns:
| Type | Description |
|---|---|
AdapterResult[SolidWorksFeature]
|
AdapterResult[SolidWorksFeature]: On success, |
AdapterResult[SolidWorksFeature]
|
|
AdapterResult[SolidWorksFeature]
|
|
Raises:
| Type | Description |
|---|---|
Exception
|
Propagated through |
Example::
from solidworks_mcp.adapters.base import RevolveParameters
from solidworks_mcp.adapters import pywin32_feature_ops
params = RevolveParameters(angle=360.0, merge_result=True)
result = pywin32_feature_ops.create_revolve(adapter, params)
print(result.data.name) # e.g. "Revolve1"
Source code in src/solidworks_mcp/adapters/solidworks/features.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | |
_create_sweep_impl ¶
Create a swept boss/protrusion from a profile sketch along a path sketch.
Uses IFeatureManager::InsertProtrusionSwept4. Two sketches are
required in the active part: a closed profile sketch and an open
path sketch named by params.path. The path is selected under
mark 4 and the profile under mark 1, per the SolidWorks selection-mark
contract for sweeps.
Because :class:SweepParameters only names the path, the profile is
inferred as the first ProfileFeature sketch in the feature tree whose
name is not the path. In the common "draw profile, draw path, sweep"
workflow this is unambiguous (exactly two sketches exist).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A fully connected |
required |
params
|
SweepParameters
|
Sweep parameter bag. Relevant fields:
- |
required |
Returns:
| Type | Description |
|---|---|
AdapterResult[SolidWorksFeature]
|
AdapterResult[SolidWorksFeature]: On success, |
AdapterResult[SolidWorksFeature]
|
|
AdapterResult[SolidWorksFeature]
|
|
Raises:
| Type | Description |
|---|---|
Exception
|
Propagated through |
Example::
from solidworks_mcp.adapters.base import SweepParameters
params = SweepParameters(path="Sketch2", merge_result=True)
result = await adapter.create_sweep(params)
print(result.data.name) # e.g. "Sweep1"
Source code in src/solidworks_mcp/adapters/solidworks/features.py
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 | |
_flag_feature_members ¶
Flag only the named members on obj.
Cheaper than :func:_flag_feature_methods inside a loop: flagging a
whole interface (IFeature is ~100 names, ~27 ms) costs a fixed price
per object, and sw_type_info's flag cache is keyed by id(obj), so
a walk over fresh dispatches — one per feature — never hits it. Flagging
just the handful of members about to be read avoids that cost.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
obj
|
Any
|
The COM object (or test double) to flag. |
required |
*names
|
str
|
Member names about to be read. |
()
|
Source code in src/solidworks_mcp/adapters/solidworks/features.py
_flag_feature_methods ¶
Best-effort method flagging for a COM object via sw_type_info.
Flagging tells pywin32 late binding to resolve names like GetTypeName2
/ GetNextFeature / FirstFeature as methods. No-ops on plain test
doubles (and any environment without the gen_py wrapper).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
obj
|
Any
|
The COM object (or test double) to flag. |
required |
interface
|
str
|
SolidWorks interface name (e.g. |
required |
Source code in src/solidworks_mcp/adapters/solidworks/features.py
_parse_edge_spec ¶
Parse an edge specification string into (SelectByID2 name, x, y, z).
Supports two formats:
- "Edge<1>" — name-based selection (x=y=z=0.0, SW looks up by topology name)
- "x,y,z" — coordinate-based selection (name="", coordinate hint in metres)
Source code in src/solidworks_mcp/adapters/solidworks/features.py
_profile_feature_names ¶
Return sketch (ProfileFeature) names in feature-tree order.
Walks FirstFeature -> GetNextFeature reading GetTypeName2 and
collecting features whose type is "ProfileFeature" (a 2D/3D sketch).
Mirrors the tree walk used by :func:_create_cut_extrude_impl, but flags
each feature for IFeature and reads members through
:func:_read_member so it is robust to pywin32's method-vs-property
late-binding ambiguity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A connected adapter with a valid |
required |
Returns:
| Type | Description |
|---|---|
list[str]
|
list[str]: Bare sketch names, earliest first. Empty when the walk |
list[str]
|
finds no sketches or the tree is inaccessible. |
Source code in src/solidworks_mcp/adapters/solidworks/features.py
_read_member ¶
Read a COM member that pywin32 may expose as a property or a method.
Late-bound pywin32 dispatches are inconsistent: an unflagged zero-arg
accessor may come back as a bound method (needing a call) or as the
already-resolved value — and when that value is itself a COM object it is
also callable, so a naive "call if callable" check wrongly invokes its
default dispatch (Member not found). This helper calls the member and
falls back to the raw member if the call raises, so it yields the value in
every case (flagged method, unflagged method, property-returning-object,
or plain test double).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
obj
|
Any
|
The COM object (or test double) to read from. |
required |
name
|
str
|
Member name. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Any
|
The member's value, or |
Source code in src/solidworks_mcp/adapters/solidworks/features.py
_select_edge_by_coord ¶
_select_edge_by_coord(adapter: Any, x: float, y: float, z: float, append: bool, mark: int = 0) -> bool
Select the edge nearest to (x, y, z) in metres via SelectByID2.
Calls ForceRebuild3 on the first edge in the selection set so that
recent features are fully tessellated and their edges are selectable.
Tries the primary coordinate and several small radial/Y offsets to
improve hit probability on curved edges.
The Callout parameter of SelectByID2 requires a VT_DISPATCH null
VARIANT — passing plain Python None triggers DISP_E_TYPEMISMATCH.
Returns True if an edge was successfully selected; False otherwise.
Source code in src/solidworks_mcp/adapters/solidworks/features.py
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 | |
_select_named_feature ¶
Select a named feature under a specific selection mark via Select2.
Sweep and loft rely on selection marks to tell SolidWorks which selection
is the profile (1), guide curve (2), or sweep path (4). We resolve the
feature with IModelDoc2::FeatureByName and select it with
IFeature::Select2(append, mark) — the same proven path the rest of the
adapter uses for plane/sketch selection. IModelDocExtension::SelectByID2
is avoided deliberately: late-bound SelectByID2 raises
Type mismatch on some SolidWorks builds, whereas FeatureByName +
Select2 is reliable, works for sketches and reference curves such as
a helix, and needs no entity-type string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adapter
|
Any
|
A connected adapter with a valid |
required |
name
|
str
|
Feature name (e.g. |
required |
mark
|
int
|
Selection mark — 1=profile, 2=guide curve, 4=sweep path. |
required |
append
|
bool
|
|
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
|