kcl-lib 0.2.166

KittyCAD Language implementation and tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
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
273
274
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
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
734
735
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
863
864
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
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
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
1288
1289
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
/// Functions for working with geometric dimensioning and tolerancing (GD&T).
/// This can be used for model-based definition (MBD).

@no_std
@settings(defaultLengthUnit = mm, kclVersion = 1.0)

/// GD&T datum feature.
///
/// This is part of model-based definition (MBD).
///
/// ```kcl,no3d,legacySketch
/// width = 5
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [width, 0], tag = $side1)
///   |> line(end = [0, width], tag = $side2)
///   |> line(end = [-width, 0], tag = $side3)
///   |> line(end = [0, -width], tag = $side4)
///   |> close()
///   |> extrude(length = 5, tagStart = $bottom, tagEnd = $top)
///
/// gdt::datum(
///   face = side2,
///   name = "A",
///   framePosition = [5, 0],
///   framePlane = XZ,
/// )
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 8mm, var 0mm])
///   edge2 = line(start = [var 8mm, var 0mm], end = [var 8mm, var 5mm])
///   edge3 = line(start = [var 8mm, var 5mm], end = [var 0mm, var 5mm])
///   edge4 = line(start = [var 0mm, var 5mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [4mm, 2mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
///
/// gdt::datum(
///   face = top,
///   name = "A",
///   framePosition = [10mm, 0mm],
///   framePlane = XZ,
/// )
/// ```
@(impl = std_rust, feature_tree = true)
export fn datum(
  /// The face to be annotated.
  @(includeInSnippet = true)
  face: TaggedFace,
  /// The name of the datum.
  @(includeInSnippet = true)
  name: string,
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): GdtAnnotation {}

/// GD&T annotation specifying how flat faces should be.
///
/// This is part of model-based definition (MBD).
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0])
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagStart = $face1)
/// gdt::flatness(faces = [face1], tolerance = 0.1mm)
/// ```
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0])
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $face1)
/// gdt::flatness(faces = [face1], tolerance = 0.02mm, framePosition = [10mm, 20mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0])
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0], tag = $face1)
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5)
/// gdt::flatness(faces = [face1], tolerance = 0.02mm, framePosition = [10mm, 20mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// gdt::flatness(faces = [top], tolerance = 0.05mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn flatness(
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces: [TaggedFace; 1+],
  /// The amount of deviation from a perfect plane that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T annotation specifying how straight a feature must be.
///
/// This is part of model-based definition (MBD).
///
/// Straightness is a form tolerance. When applied to a planar face, every
/// line element of the face must lie between two parallel lines separated by
/// the given `tolerance`. When applied to an edge, the edge itself must lie
/// within that zone.
///
/// Straightness should usually be applied to edges. But depending on the view,
/// a face normal may appear like an edge.
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// blockSketch = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 24mm])
///   edge3 = line(start = [var 10mm, var 24mm], end = [var 0mm, var 24mm])
///   edge4 = line(start = [var 0mm, var 24mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// blockRegion = region(point = [5mm, 3mm], sketch = blockSketch)
/// hide(blockSketch)
/// block = extrude(blockRegion, length = 10mm)
/// gdt::straightness(edges = [blockRegion.tags.edge2], tolerance = 0.05mm)
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// gdt::straightness(faces = [top], tolerance = 0.02mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// sideEdge = getCommonEdge(faces = [block.sketch.tags.edge1, top])
/// gdt::straightness(edges = [sideEdge], tolerance = 0.05mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn straightness(
  /// The amount of deviation from perfectly straight that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T annotation specifying how circular (round) a feature must be.
///
/// This is part of model-based definition (MBD).
///
/// Circularity is a form tolerance. It controls how much a feature of
/// revolution may deviate from a perfect circle. When applied to a circular
/// edge, every point of the edge must lie between two concentric circles whose
/// radii differ by the given `tolerance`. When applied to a round face, such as
/// the wall of a cylinder or cone, every cross-section perpendicular to the
/// axis must meet that same requirement.
///
/// Circularity is a form tolerance, so it does not reference datums.
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinderRegion = region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch)
/// hide(cylinderSketch)
/// cylinder = extrude(cylinderRegion, length = 10mm)
/// gdt::circularity(edges = [cylinderRegion.tags.perimeter], tolerance = 0.05mm, framePosition = [-12mm, 8mm])
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinder = extrude(region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch), length = 10mm)
/// gdt::circularity(faces = [cylinder.sketch.tags.perimeter], tolerance = 0.02mm, framePosition = [-12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinder = extrude(region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch), length = 10mm, tagEnd = $top)
/// topEdge = getCommonEdge(faces = [cylinder.sketch.tags.perimeter, top])
/// gdt::circularity(edges = [topEdge], tolerance = 0.05mm, framePosition = [-12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn circularity(
  /// The amount of deviation from a perfect circle that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T annotation specifying how closely a feature must conform to a perfect cylinder.
///
/// This is part of model-based definition (MBD).
///
/// Cylindricity is a form tolerance. It controls how much a cylindrical
/// surface may deviate from a perfect cylinder, combining roundness,
/// straightness, and taper into a single requirement. Every point on the
/// surface must lie between two coaxial cylinders whose radii differ by the
/// given `tolerance`. When applied to a round face, such as the wall of a
/// cylinder, the whole surface must meet that requirement. When applied to a
/// circular edge, that edge must lie within the same zone.
///
/// Cylindricity is a form tolerance, so it does not reference datums.
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinder = extrude(region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch), length = 10mm)
/// gdt::cylindricity(faces = [cylinder.sketch.tags.perimeter], tolerance = 0.02mm, framePosition = [-12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinderRegion = region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch)
/// hide(cylinderSketch)
/// cylinder = extrude(cylinderRegion, length = 10mm)
/// gdt::cylindricity(edges = [cylinderRegion.tags.perimeter], tolerance = 0.05mm, framePosition = [-12mm, 8mm])
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinder = extrude(region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch), length = 10mm, tagEnd = $top)
/// topEdge = getCommonEdge(faces = [cylinder.sketch.tags.perimeter, top])
/// gdt::cylindricity(edges = [topEdge], tolerance = 0.05mm, framePosition = [-12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn cylindricity(
  /// The amount of deviation from a perfect cylinder that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T concentricity annotation specifying how closely a feature's median axis must align with datum references.
///
/// This is part of MBD.
///
/// Concentricity is a location tolerance for features of size. It controls the
/// derived median points of the annotated feature relative to a datum axis. The
/// tolerance zone is cylindrical, with a diameter equal to `tolerance`. Datum
/// references are required.
///
/// In American Society of Mechanical Engineers (ASME) Y14.5, concentricity is
/// applied regardless of feature size (RFS) and does not use maximum material
/// condition (MMC) or least material condition (LMC) modifiers. ASME Y14.5-2018
/// removed concentricity in favor of other controls such as position or runout
/// where appropriate. ISO standards use the name coaxiality for this concept.
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// datumSketch = sketch(on = XY) {
///   diameter = line(start = [var -6mm, var 0mm], end = [var 6mm, var 0mm])
///   perimeter = arc(start = [var 6mm, var 0mm], end = [var -6mm, var 0mm], center = [var 0mm, var 0mm])
///   coincident([diameter.end, perimeter.start])
///   coincident([diameter.start, perimeter.end])
/// }
///
/// datumCylinder = extrude(region(point = [0mm, 1mm], sketch = datumSketch), length = 10mm)
///
/// controlledSketch = sketch(on = XY) {
///   diameter = line(start = [var -3mm, var 0mm], end = [var 3mm, var 0mm])
///   perimeter = arc(start = [var -3mm, var 0mm], end = [var 3mm, var 0mm], center = [var 0mm, var 0mm])
///   coincident([diameter.start, perimeter.start])
///   coincident([diameter.end, perimeter.end])
/// }
///
/// controlledCylinder = extrude(region(point = [0mm, -1mm], sketch = controlledSketch), length = 10mm)
///
/// gdt::datum(face = datumCylinder.sketch.tags.perimeter, name = "A", framePosition = [-14mm, 8mm], framePlane = XZ)
/// gdt::concentricity(faces = [controlledCylinder.sketch.tags.perimeter], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// datumSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 6mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// datumCylinder = extrude(region(point = datumSketch.perimeter.center, sketch = datumSketch), length = 10mm)
///
/// controlledSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 3mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// controlledCylinder = extrude(region(point = controlledSketch.perimeter.center, sketch = controlledSketch), length = 10mm, tagEnd = $top)
/// topEdge = getCommonEdge(faces = [controlledCylinder.sketch.tags.perimeter, top])
///
/// gdt::datum(face = datumCylinder.sketch.tags.perimeter, name = "A", framePosition = [-14mm, 8mm], framePlane = XZ)
/// gdt::concentricity(edges = [topEdge], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn concentricity(
  /// The diameter of the cylindrical tolerance zone.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums: [string; 1+],
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T symmetry annotation specifying how closely a feature's median plane must align with datum references.
///
/// This is part of model-based definition (MBD).
///
/// Symmetry is a location tolerance for features of size. It controls the
/// derived median points of opposing feature surfaces relative to a datum
/// center plane. The tolerance zone is bounded by two parallel planes equally
/// disposed about the datum plane, with a total width equal to `tolerance`.
/// Datum references are required.
///
/// Symmetry is the non-circular counterpart to concentricity. It is typically
/// used where mass balance or form distribution about a datum plane matters,
/// but it is difficult to inspect and is often replaced by position or profile
/// controls where appropriate.
///
/// In American Society of Mechanical Engineers (ASME) Y14.5, symmetry is
/// applied regardless of feature size (RFS) and does not use maximum material
/// condition (MMC) or least material condition (LMC) modifiers.
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// latchProfile = sketch(on = XZ) {
///   bottom = line(start = [var -20mm, var -10mm], end = [var 20mm, var -10mm])
///   datumWidthFace = line(start = [var 20mm, var -10mm], end = [var 20mm, var 10mm])
///   topRight = line(start = [var 20mm, var 10mm], end = [var 5mm, var 10mm])
///   rightGrooveWall = line(start = [var 5mm, var 10mm], end = [var 5mm, var 3mm])
///   grooveFloor = line(start = [var 5mm, var 3mm], end = [var -5mm, var 3mm])
///   leftGrooveWall = line(start = [var -5mm, var 3mm], end = [var -5mm, var 10mm])
///   topLeft = line(start = [var -5mm, var 10mm], end = [var -20mm, var 10mm])
///   leftSide = line(start = [var -20mm, var 10mm], end = [var -20mm, var -10mm])
///   coincident([bottom.end, datumWidthFace.start])
///   coincident([datumWidthFace.end, topRight.start])
///   coincident([topRight.end, rightGrooveWall.start])
///   coincident([rightGrooveWall.end, grooveFloor.start])
///   coincident([grooveFloor.end, leftGrooveWall.start])
///   coincident([leftGrooveWall.end, topLeft.start])
///   coincident([topLeft.end, leftSide.start])
///   coincident([leftSide.end, bottom.start])
///   horizontal(bottom)
///   vertical(datumWidthFace)
///   horizontal(topRight)
///   vertical(rightGrooveWall)
///   horizontal(grooveFloor)
///   vertical(leftGrooveWall)
///   horizontal(topLeft)
///   vertical(leftSide)
/// }
///
/// latchBlockRegion = region(point = [0mm, 0mm], sketch = latchProfile)
/// latchBlock = extrude(latchBlockRegion, length = 12mm)
///
/// gdt::datum(face = latchBlock.sketch.tags.bottom, name = "A", framePosition = [0mm, -16mm], framePlane = XZ)
/// gdt::symmetry(faces = [latchBlock.sketch.tags.grooveFloor], tolerance = 0.2mm, datums = ["A"], framePosition = [-24mm, 14mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// latchProfile = sketch(on = XZ) {
///   bottom = line(start = [var -20mm, var -10mm], end = [var 20mm, var -10mm])
///   datumWidthFace = line(start = [var 20mm, var -10mm], end = [var 20mm, var 10mm])
///   topRight = line(start = [var 20mm, var 10mm], end = [var 5mm, var 10mm])
///   rightGrooveWall = line(start = [var 5mm, var 10mm], end = [var 5mm, var 3mm])
///   grooveFloor = line(start = [var 5mm, var 3mm], end = [var -5mm, var 3mm])
///   leftGrooveWall = line(start = [var -5mm, var 3mm], end = [var -5mm, var 10mm])
///   topLeft = line(start = [var -5mm, var 10mm], end = [var -20mm, var 10mm])
///   leftSide = line(start = [var -20mm, var 10mm], end = [var -20mm, var -10mm])
///   coincident([bottom.end, datumWidthFace.start])
///   coincident([datumWidthFace.end, topRight.start])
///   coincident([topRight.end, rightGrooveWall.start])
///   coincident([rightGrooveWall.end, grooveFloor.start])
///   coincident([grooveFloor.end, leftGrooveWall.start])
///   coincident([leftGrooveWall.end, topLeft.start])
///   coincident([topLeft.end, leftSide.start])
///   coincident([leftSide.end, bottom.start])
///   horizontal(bottom)
///   vertical(datumWidthFace)
///   horizontal(topRight)
///   vertical(rightGrooveWall)
///   horizontal(grooveFloor)
///   vertical(leftGrooveWall)
///   horizontal(topLeft)
///   vertical(leftSide)
/// }
///
/// latchBlockRegion = region(point = [0mm, 0mm], sketch = latchProfile)
/// latchBlock = extrude(latchBlockRegion, length = 12mm, tagEnd = $frontFace)
/// grooveFloorFrontEdge = getCommonEdge(faces = [latchBlock.sketch.tags.grooveFloor, frontFace])
///
/// gdt::datum(face = latchBlock.sketch.tags.bottom, name = "A", framePosition = [0mm, -16mm], framePlane = XZ)
/// gdt::symmetry(edges = [grooveFloorFrontEdge], tolerance = 0.2mm, datums = ["A"], framePosition = [-24mm, 14mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn symmetry(
  /// The total width of the tolerance zone between two parallel planes.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums: [string; 1+],
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T annotation specifying circular runout relative to a datum axis.
///
/// This is part of model-based definition (MBD).
///
/// Runout controls how much a round feature may vary as it rotates around a
/// referenced datum axis. It may be applied to circular edges or round faces,
/// such as the wall of a cylinder. Datum references are required.
///
/// Runout is applied regardless of feature size and does not use MMC or LMC.
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// annotationPlane = offsetPlane(XZ, offset = 24mm)
///
/// controlledSketch = sketch(on = YZ) {
///   upperPerimeter = arc(start = [var 10mm, var 0mm], end = [var -10mm, var 0mm], center = [var 0mm, var 0mm])
///   lowerPerimeter = arc(start = [var -10mm, var 0mm], end = [var 10mm, var 0mm], center = [var 0mm, var 0mm])
///   coincident([upperPerimeter.end, lowerPerimeter.start])
///   coincident([lowerPerimeter.end, upperPerimeter.start])
/// }
///
/// controlledShaft = extrude(
///   region(point = [0mm, 1mm], sketch = controlledSketch),
///   length = -58mm,
///   tagStart = $controlledShoulder,
///   tagEnd = $controlledFreeEnd
/// )
///
/// controlledUpperShoulderEdge = getCommonEdge(faces = [
///   controlledShaft.sketch.tags.upperPerimeter,
///   controlledShoulder
/// ])
///
/// datumSketch = sketch(on = YZ) {
///   perimeter = circle(start = [var 18mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// datumShaft = extrude(
///   region(point = datumSketch.perimeter.center, sketch = datumSketch),
///   length = 36mm,
///   tagEnd = $datumEnd
/// )
///
/// gdt::datum(
///   face = datumShaft.sketch.tags.perimeter,
///   name = "A",
///   framePosition = [18mm, -28mm],
///   framePlane = annotationPlane,
///   leaderScale = 1.15,
///   fontSize = 6mm
/// )
///
/// gdt::runout(
///   edges = [controlledUpperShoulderEdge],
///   tolerance = 0.2mm,
///   datums = ["A"],
///   precision = 1,
///   framePosition = [12mm, 48mm],
///   framePlane = annotationPlane,
///   leaderScale = 1.15,
///   fontSize = 6mm
/// )
/// ```
@(impl = std_rust, feature_tree = true)
export fn runout(
  /// The circular runout relative to the datum axis that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums: [string; 1+],
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T angularity annotation specifying how much faces or edges may deviate from an orientation at a basic angle relative to datum references.
///
/// This is part of model-based definition (MBD).
///
/// Angularity is an orientation tolerance. The specified angle is a basic
/// dimension in the drawing or model geometry. The `tolerance` is a length
/// controlling the size of the zone, not an angular plus-or-minus value.
/// Provide at least one of `faces` or `edges`. Supplying both is allowed, but
/// omitting both is an error.
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// basicAngle = 30deg
/// thickness = 3.5mm
/// flangeLength = 24mm
/// bendStartX = 5mm
/// legLength = 30mm
/// legRun = legLength * cos(basicAngle)
/// legRise = legLength * sin(basicAngle)
/// normalRun = thickness * sin(basicAngle)
/// normalRise = thickness * cos(basicAngle)
/// annotationFont = 2mm
///
/// stampedProfile = sketch(on = XY) {
///   datumFace = line(start = [var 0mm, var 0mm], end = [var 24mm, var 0mm])
///   flangeEnd = line(start = [var 24mm, var 0mm], end = [var 24mm, var 3.5mm])
///   innerFlange = line(start = [var 24mm, var 3.5mm], end = [var 5mm, var 3.5mm])
///   controlledSurface = line(start = [var 5mm, var 3.5mm], end = [var 30.98mm, var 18.5mm])
///   tabEnd = line(start = [var 30.98mm, var 18.5mm], end = [var 29.23mm, var 21.53mm])
///   outerSurface = line(start = [var 29.23mm, var 21.53mm], end = [var 3.25mm, var 6.53mm])
///   outsideBend = line(start = [var 3.25mm, var 6.53mm], end = [var 0mm, var 0mm])
///   coincident([datumFace.end, flangeEnd.start])
///   coincident([flangeEnd.end, innerFlange.start])
///   coincident([innerFlange.end, controlledSurface.start])
///   coincident([controlledSurface.end, tabEnd.start])
///   coincident([tabEnd.end, outerSurface.start])
///   coincident([outerSurface.end, outsideBend.start])
///   coincident([outsideBend.end, datumFace.start])
///   coincident([datumFace.start, ORIGIN])
///   horizontal(datumFace)
///   horizontal(innerFlange)
///   vertical(flangeEnd)
///   distance([datumFace.start, datumFace.end]) == flangeLength
///   distance([flangeEnd.start, flangeEnd.end]) == thickness
///   distance([innerFlange.start, innerFlange.end]) == flangeLength - bendStartX
///   distance([controlledSurface.start, controlledSurface.end]) == legLength
///   distance([tabEnd.start, tabEnd.end]) == thickness
///   distance([outerSurface.start, outerSurface.end]) == legLength
///   parallel([controlledSurface, outerSurface])
///   perpendicular([controlledSurface, tabEnd])
///   angle([datumFace, controlledSurface]) == basicAngle
/// }
///
/// stampedPart = extrude(region(point = [12mm, 2mm], sketch = stampedProfile), length = 0.8mm)
///
/// gdt::datum(face = stampedPart.sketch.tags.datumFace, name = "A", framePosition = [6mm, -4mm], framePlane = XY, fontSize = annotationFont)
/// gdt::angularity(faces = [stampedPart.sketch.tags.controlledSurface], tolerance = 0.1mm, datums = ["A"], framePosition = [-12mm, 11mm], framePlane = XZ, fontSize = annotationFont)
/// ```
///
/// ```kcl,no3d,sketchSolve
/// @settings(kclVersion = 2.0)
///
/// basicAngle = 30deg
/// thickness = 3.5mm
/// flangeLength = 24mm
/// bendStartX = 5mm
/// legLength = 30mm
/// legRun = legLength * cos(basicAngle)
/// legRise = legLength * sin(basicAngle)
/// normalRun = thickness * sin(basicAngle)
/// normalRise = thickness * cos(basicAngle)
/// annotationFont = 2mm
///
/// stampedProfile = sketch(on = XY) {
///   datumFace = line(start = [var 0mm, var 0mm], end = [var 24mm, var 0mm])
///   flangeEnd = line(start = [var 24mm, var 0mm], end = [var 24mm, var 3.5mm])
///   innerFlange = line(start = [var 24mm, var 3.5mm], end = [var 5mm, var 3.5mm])
///   controlledSurface = line(start = [var 5mm, var 3.5mm], end = [var 30.98mm, var 18.5mm])
///   tabEnd = line(start = [var 30.98mm, var 18.5mm], end = [var 29.23mm, var 21.53mm])
///   outerSurface = line(start = [var 29.23mm, var 21.53mm], end = [var 3.25mm, var 6.53mm])
///   outsideBend = line(start = [var 3.25mm, var 6.53mm], end = [var 0mm, var 0mm])
///   coincident([datumFace.end, flangeEnd.start])
///   coincident([flangeEnd.end, innerFlange.start])
///   coincident([innerFlange.end, controlledSurface.start])
///   coincident([controlledSurface.end, tabEnd.start])
///   coincident([tabEnd.end, outerSurface.start])
///   coincident([outerSurface.end, outsideBend.start])
///   coincident([outsideBend.end, datumFace.start])
///   coincident([datumFace.start, ORIGIN])
///   horizontal(datumFace)
///   horizontal(innerFlange)
///   vertical(flangeEnd)
///   distance([datumFace.start, datumFace.end]) == flangeLength
///   distance([flangeEnd.start, flangeEnd.end]) == thickness
///   distance([innerFlange.start, innerFlange.end]) == flangeLength - bendStartX
///   distance([controlledSurface.start, controlledSurface.end]) == legLength
///   distance([tabEnd.start, tabEnd.end]) == thickness
///   distance([outerSurface.start, outerSurface.end]) == legLength
///   parallel([controlledSurface, outerSurface])
///   perpendicular([controlledSurface, tabEnd])
///   angle([datumFace, controlledSurface]) == basicAngle
/// }
///
/// stampedRegion = region(point = [12mm, 2mm], sketch = stampedProfile)
/// hide(stampedProfile)
/// stampedPart = extrude(stampedRegion, length = 0.8mm)
///
/// gdt::datum(face = stampedPart.sketch.tags.datumFace, name = "A", framePosition = [6mm, -4mm], framePlane = XY, fontSize = annotationFont)
/// gdt::angularity(edges = [stampedRegion.tags.controlledSurface], tolerance = 0.1mm, datums = ["A"], framePosition = [-12mm, 11mm], framePlane = XZ, fontSize = annotationFont)
/// ```
@(impl = std_rust, feature_tree = true)
export fn angularity(
  /// The tolerance zone size for orientation at a basic angle.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The faces to be annotated. At least one of `faces` or `edges` must be supplied.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. At least one of `faces` or `edges` must be supplied. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums?: [string; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T perpendicularity annotation specifying how much faces or edges may deviate from perpendicular orientation relative to datum references.
///
/// This is part of model-based definition (MBD).
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0], tag = $side)
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $top)
///
/// gdt::datum(face = top, name = "A", framePosition = [8mm, 0mm], framePlane = XZ)
/// gdt::perpendicularity(faces = [side], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// sideEdge = getCommonEdge(faces = [block.sketch.tags.edge2, top])
/// gdt::perpendicularity(edges = [sideEdge], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn perpendicularity(
  /// The tolerance zone size for perpendicular orientation.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums?: [string; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T parallelism annotation specifying how much faces or edges may deviate from parallel orientation relative to datum references.
///
/// This is part of model-based definition (MBD).
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0], tag = $side)
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $top)
///
/// gdt::datum(face = top, name = "A", framePosition = [8mm, 0mm], framePlane = XZ)
/// gdt::parallelism(faces = [side], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// sideEdge = getCommonEdge(faces = [block.sketch.tags.edge1, top])
/// gdt::parallelism(edges = [sideEdge], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn parallelism(
  /// The tolerance zone size for parallel orientation.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums?: [string; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T position annotation specifying how much faces or edges may deviate from their ideal location.
///
/// This is part of model-based definition (MBD).
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0], tag = $side)
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $top)
///
/// gdt::datum(face = top, name = "A", framePosition = [8mm, 0mm], framePlane = XZ)
/// gdt::position(faces = [side], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// sideEdge = getCommonEdge(faces = [block.sketch.tags.edge2, top])
/// gdt::position(edges = [sideEdge], tolerance = 0.05mm, datums = ["A"], framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn position(
  /// The positional tolerance that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums?: [string; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T annotation for attaching manufacturing text to faces or edges.
///
/// This is part of model-based definition (MBD).
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0], tag = $side)
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $top)
///
/// gdt::annotation(faces = [top], annotation = "Break all sharp edges", framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// sideEdge = getCommonEdge(faces = [block.sketch.tags.edge1, top])
/// gdt::annotation(edges = [sideEdge], annotation = "Deburr edge", framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn annotation(
  /// The annotation text to display.
  @(includeInSnippet = true)
  annotation: string,
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces?: [TaggedFace; 1+],
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The position of the annotation relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the annotation. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The annotation may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T distance annotation for displaying measured edge lengths or distances between two entities.
///
/// This is part of model-based definition (MBD).
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0], tag = $side1)
///   |> line(end = [0, 10])
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $top)
///
/// lengthEdge = getCommonEdge(faces = [side1, top])
/// gdt::distance(edges = [lengthEdge], tolerance = 0.05mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// lengthEdge = getCommonEdge(faces = [block.sketch.tags.edge1, top])
/// gdt::distance(edges = [lengthEdge], tolerance = 0.05mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn distance(
  /// The acceptable distance tolerance.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The face or edge to measure from. Must be used with `to`. The default position is the entity center. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  from?: Face | TaggedFace | Edge | any,
  /// The face or edge to measure to. Must be used with `from`. The default position is the entity center. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  to?: Face | TaggedFace | Edge | any,
  /// The edges whose lengths are annotated. Cannot be combined with `from` or `to`. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the distance label relative to the measured geometry. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the distance. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The distance may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Scale of the distance arrows. The default is `1.0`. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T profile annotation specifying how much edges or faces may deviate from their ideal shape.
///
/// This is part of model-based definition (MBD).
///
/// `gdt::profile` is kept for backwards compatibility with existing KCL programs.
/// For new code, prefer `gdt::profileLine` when annotating edges and
/// `gdt::profileSurface` when annotating faces.
///
/// Provide exactly one of `edges` or `faces`. Passing `edges` delegates to
/// `profileLine`; passing `faces` delegates to `profileSurface`. Passing both,
/// or neither, is a KCL error.
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0], tag = $side1)
///   |> line(end = [0, 10], tag = $side2)
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $top)
///
/// profileEdge = getCommonEdge(faces = [side1, top])
///
/// gdt::profile(
///   edges = [profileEdge],
///   tolerance = 0.1mm,
///   datums = ["A"],
///   framePosition = [10mm, 20mm],
///   framePlane = XZ,
/// )
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinder = extrude(region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch), length = 10mm, tagEnd = $top)
/// gdt::profile(faces = [top], tolerance = 0.05mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn profile(
  /// The amount of deviation from an ideal profile that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The edges to be annotated with profile of a line. Provide either `edges` or `faces`, but not both. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges?: [Edge | any; 1+],
  /// The faces to be annotated with profile of a surface. Provide either `edges` or `faces`, but not both.
  faces?: [TaggedFace; 1+],
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums?: [string; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T profile-of-a-line annotation specifying how much edges may deviate from their ideal shape.
///
/// This is part of model-based definition (MBD).
///
/// Profile of a line is a two-dimensional tolerance zone for a cross-section or edge-like profile.
///
/// ```kcl,no3d,legacySketch
///
/// startSketchOn(XY)
///   |> startProfile(at = [0, 0])
///   |> line(end = [10, 0], tag = $side1)
///   |> line(end = [0, 10], tag = $side2)
///   |> line(end = [-10, 0])
///   |> line(end = [0, -10])
///   |> close()
///   |> extrude(length = 5, tagEnd = $top)
///
/// profileEdge = getCommonEdge(faces = [side1, top])
///
/// gdt::profileLine(
///   edges = [profileEdge],
///   tolerance = 0.1mm,
///   datums = ["A"],
///   framePosition = [10mm, 20mm],
///   framePlane = XZ,
/// )
/// ```
///
/// ```kcl,no3d,sketchSolve
///
/// blockProfile = sketch(on = XY) {
///   edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
///   edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 6mm])
///   edge3 = line(start = [var 10mm, var 6mm], end = [var 0mm, var 6mm])
///   edge4 = line(start = [var 0mm, var 6mm], end = [var 0mm, var 0mm])
///   coincident([edge1.end, edge2.start])
///   coincident([edge2.end, edge3.start])
///   coincident([edge3.end, edge4.start])
///   coincident([edge4.end, edge1.start])
///   horizontal(edge1)
///   vertical(edge2)
///   horizontal(edge3)
///   vertical(edge4)
/// }
///
/// block = extrude(region(point = [5mm, 3mm], sketch = blockProfile), length = 4mm, tagEnd = $top)
/// profileEdge = getCommonEdge(faces = [block.sketch.tags.edge1, top])
/// gdt::profileLine(edges = [profileEdge], tolerance = 0.05mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn profileLine(
  /// The edges to be annotated. Edge specifier objects (`{ sideFaces = [...], endFaces? = [...], index? = 0 }`) are experimental; do not use them in generated or user-facing KCL yet.
  @(includeInSnippet = true)
  edges: [Edge | any; 1+],
  /// The amount of deviation from an ideal profile that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums?: [string; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}

/// GD&T profile-of-a-surface annotation specifying how much faces may deviate from their ideal shape.
///
/// This is part of model-based definition (MBD).
///
/// Profile of a surface is a three-dimensional tolerance zone that applies across the whole annotated surface.
///
/// ```kcl,no3d,sketchSolve
///
/// cylinderSketch = sketch(on = XY) {
///   perimeter = circle(start = [var 5mm, var 0mm], center = [var 0mm, var 0mm])
/// }
///
/// cylinder = extrude(region(point = cylinderSketch.perimeter.center, sketch = cylinderSketch), length = 10mm, tagEnd = $top)
/// gdt::profileSurface(faces = [top], tolerance = 0.05mm, framePosition = [12mm, 8mm], framePlane = XZ)
/// ```
@(impl = std_rust, feature_tree = true)
export fn profileSurface(
  /// The faces to be annotated.
  @(includeInSnippet = true)
  faces: [TaggedFace; 1+],
  /// The amount of deviation from an ideal profile that is acceptable.
  @(includeInSnippet = true)
  tolerance: number(Length),
  /// The datum references to display in the feature control frame. Supports up to primary, secondary, and tertiary datums.
  @(includeInSnippet = true)
  datums?: [string; 1+],
  /// The number of decimal places to display. The default is `3`. Must be greater than or equal to `0` and less than or equal to `9`.
  @(includeInSnippet = true)
  precision?: number(Count),
  /// The position of the feature control frame relative to the leader arrow. The default is `[100mm, 100mm]`.
  @(snippetArray = ["100", "100"])
  framePosition?: Point2d,
  /// The plane in which to display the feature control frame. The default is `XY`. Other standard planes like `XZ` and `YZ` can also be used. The frame may be displayed in a plane parallel to the given plane.
  @(includeInSnippet = true)
  framePlane?: Plane,
  /// Visual scale of the leader dot. The default is `1.0`, which maps to the calibrated normal dot size. The value is normalized against `fontSize` so the dot stays consistent as text size changes. Must be greater than `0`.
  leaderScale?: number(Count),
  /// The model-space height to use for annotation text. The default is `10mm`. Explicit units are supported; bare numbers use the file's default length unit.
  /// This changes the scene size, not the internal raster texture quality.
  fontSize?: number(Length),
): [GdtAnnotation; 1+] {}