-
Notifications
You must be signed in to change notification settings - Fork 288
/
Copy pathOCI.d.ts
2574 lines (2110 loc) · 57.9 KB
/
OCI.d.ts
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
export interface OCCCommands {
/*
2dbeziercurve name nbpole pole, [weight]
*/
_2dbeziercurve(...args: any[]);
/*
2dbsplinecurve name degree nbknots knot, umult pole, weight
*/
_2dbsplinecurve(...args: any[]);
/*
2dcvalue curvename U X Y [D1X D1Y D2X D2Y]
*/
_2dcvalue(...args: any[]);
/*
lmirror name [names...] x y dx dy
*/
_2dlmirror(...args: any[]);
/*
2dpbsplinecurve name degree nbknots knot, umult pole, weight (periodic)
*/
_2dpbsplinecurve(...args: any[]);
/*
pmirror name [names...] x y
*/
_2dpmirror(...args: any[]);
/*
2dprofile, no args to get help
*/
_2dprofile(...args: any[]);
/*
pscale name [names...] x y s
*/
_2dpscale(...args: any[]);
/*
rotate name [names...] x y dx dy angle
*/
_2drotate(...args: any[]);
/*
translate name [names...] dx dy
*/
_2dtranslate(...args: any[]);
/*
Calcul d'intersection entre face et curve : BRepIntCS curve1 [curve2 ...] shape [res] [tol]
*/
BRepIntCS(...args: any[]);
/*
Generic webcad engine command
*/
EngineCommand(...args: any[]);
/*
XProgress [+|-t] [+|-c] [+|-g]
The options are:
+|-t : switch on/off output to tcl of Progress Indicator
+|-c : switch on/off output to cout of Progress Indicator
+|-g : switch on/off graphical mode of Progress Indicator
*/
XProgress(...args: any[]);
/*
add what where
adds shape "what" to shape "where"
*/
add(...args: any[]);
/*
addpcurve edge 2dcurve face [tol (default 1.e-7)]
*/
addpcurve(...args: any[]);
/*
addpolygonnode polygon3d(2d) x y [z]
*/
addpolygonnode(...args: any[]);
/*
Adds sliding elements : addslide prism/revol/pipe edge face [edge face...]
*/
addslide(...args: any[]);
/*
addsweep wire [vertex] [-M ] [-C] [auxiilaryshape]:no args to get help
*/
addsweep(...args: any[]);
/*
approxcurve [-L] name curve1 [Surf1] [curve2d2 Surf2] [Tol [cont [maxdeg [maxseg]]]]
*/
approxcurve(...args: any[]);
/*
approxcurveonsurf name curve2d surface [Tol [cont [maxdeg [maxseg]]]]
*/
approxcurveonsurf(...args: any[]);
/*
approxplate result nbrpntoncurve nbrcurfront edge face tang (0:vif;1:tang) ... tol nmax degmax crit
*/
approxplate(...args: any[]);
/*
approxsurf name surf [Tol [CnU CnV [degU degV [nmax]]]]
*/
approxsurf(...args: any[]);
/*
appsurf result C1 C2 C3 .....:
Create a surface passing through the curves
*/
appsurf(...args: any[]);
/*
attachpcurve eold enew face
*/
attachpcurve(...args: any[]);
/*
use b2dclassifx Face Point2d [Tol]
*/
b2dclassifx(...args: any[]);
/*
use b2dclassify Face Point2d [Tol] [UseBox] [GapCheckTol]
Classify the Point Point2d with Tolerance <Tol> on the face described by <Face>.
<UseBox> == 1/0 (default <UseBox> = 0): switch on/off the use Bnd_Box in the classification.
<GapCheckTol> (default <GapCheckTol> = 0.1): this is for additional verification of
the vertex with a tolerance >= <GapCheckTol>.
*/
b2dclassify(...args: any[]);
/*
Command for adding multiple objects for Boolean/GF/Split/Cells operations grouped in one object.
Given object will be exploded on first level sub-shapes and each of these sub-shapes will act as a separate object.
The command has cumulative effect, thus can be used several times for single operation.
For new operation the objects have to be cleared by bclearobjects or bclear commands.
Usage: baddcompound c
*/
baddcompound(...args: any[]);
/*
Command for adding multiple tools for Boolean/GF/Split/Cells operations grouped in one object.
Given object will be exploded on first level sub-shapes and each of these sub-shapes will act as a separate tool.
The command has cumulative effect, thus can be used several times for single operation.
For new operation the tools have to be cleared by bcleartools or bclear commands.
Usage: baddctools c
*/
baddctools(...args: any[]);
/*
Adds objects for Boolean/GF/Split/Cells operations.
The command has cumulative effect, thus can be used several times for single operation.
For new operation the objects have to be cleared by bclearobjects or bclear commands.
Usage: baddobjects s1 s2 ...
*/
baddobjects(...args: any[]);
/*
Adds tools for Boolean/GF/Split/Cells operations.
The command has cumulative effect, thus can be used several times for single operation.
For new operation the tools have to be cleared by bcleartools or bclear commands.
Usage: baddtools s1 s2 ...
*/
baddtools(...args: any[]);
/*
Builds the result of Boolean operation using top level API.
Objects for the operation are added using commands baddobjects and baddtools.
Usage: bapibop r operation
Where:
result - name of the result shape
op - type of Boolean operation. Possible values:
- 0/common - for Common operation
- 1/fuse - for Fuse operation
- 2/cut - for Cut operation
- 3/tuc/cut21 - for Cut21 operation
- 4/section - for Section operation
*/
bapibop(...args: any[]);
/*
Builds the result of General Fuse operation using top level API.
Objects for the operation are added using commands baddobjects and baddtools.
Usage: bapibuild result
*/
bapibuild(...args: any[]);
/*
Builds the result of Split operation using top level API.
Objects for the operation are added using commands baddobjects and baddtools.
Usage: bapisplit result
*/
bapisplit(...args: any[]);
/*
Builds the result of Boolean operation. Intersection (bfillds) has to be already performed by this moment.
Usage: bbop result op [-t]
Where:
result - name of the result shape
op - type of Boolean operation. Possible values:
- 0/common - for Common operation
- 1/fuse - for Fuse operation
- 2/cut - for Cut operation
- 3/tuc/cut21 - for Cut21 operation
- 4/section - for Section operation
-t - optional parameter for enabling timer and showing elapsed time of the operation
*/
bbop(...args: any[]);
/*
Builds the result of General Fuse operation. Intersection (bfillds) has to be already performed by this moment.
Usage: bbuild result [-t]
Where:
result - name of the result shape
-t is the optional parameter for enabling timer and showing elapsed time of the operation
*/
bbuild(...args: any[]);
/*
Add parts to result. Use: bcadd r s1 (0,1) s2 (0,1) ... [-m material [-u]]
*/
bcadd(...args: any[]);
/*
Add all parts to result. Use: bcaddall r [-m material [-u]]
*/
bcaddall(...args: any[]);
/*
Cells builder. Use: bcbuild r
*/
bcbuild(...args: any[]);
/*
Enables/Disables the check of the input solids on inverted status in BOP algorithms
Usage: bcheckinverted 0 (off) / 1 (on)
*/
bcheckinverted(...args: any[]);
/*
use bclassify Solid Point [Tolerance=1.e-7]
*/
bclassify(...args: any[]);
/*
Clears both objects and tools previously added for Boolean/GF/Split/Cells operations.
Usage: bclear
*/
bclear(...args: any[]);
/*
Clears the objects previously added for Boolean/GF/Split/Cells operations.
Usage: bclearobjects
*/
bclearobjects(...args: any[]);
/*
Clears the tools previously added for Boolean/GF/Split/Cells operations.
Usage: bcleartools
*/
bcleartools(...args: any[]);
/*
Make containers from the parts added to result. Use: bcmakecontainers r
*/
bcmakecontainers(...args: any[]);
/*
use bcommon r s1 s2
*/
bcommon(...args: any[]);
/*
Remove parts from result. Use: bcremove r s1 (0,1) s2 (0,1) ...
*/
bcremove(...args: any[]);
/*
Remove all parts from result. Use: bcremoveall
*/
bcremoveall(...args: any[]);
/*
Remove internal boundaries. Use: bcremoveint r
*/
bcremoveint(...args: any[]);
/*
use bcut r s1 s2
*/
bcut(...args: any[]);
/*
bcutblend result shape1 tool radius [-d]
*/
bcutblend(...args: any[]);
/*
Enables/Disables drawing of warning shapes of BOP algorithms.
Usage: bdrawwarnshapes 0 (do not draw) / 1 (draw warning shapes)
*/
bdrawwarnshapes(...args: any[]);
/*
beziercurve name nbpole pole, [weight]
*/
beziercurve(...args: any[]);
/*
beziersurf name nbupoles nbvpoles pole, [weight]
*/
beziersurf(...args: any[]);
/*
Performs intersection of the arguments added for the operation by baddobjects and baddtools commands.
Usage: bfillds [-t]
Where: -t is the optional parameter for enabling timer and showing elapsed time of the operation
*/
bfillds(...args: any[]);
/*
use bfuse r s1 s2
*/
bfuse(...args: any[]);
/*
bfuseblend result shape1 shape2 radius [-d]
*/
bfuseblend(...args: any[]);
/*
Sets the additional tolerance for BOP algorithms.
Usage: bfuzzyvalue value
*/
bfuzzyvalue(...args: any[]);
/*
Sets the gluing mode for the BOP algorithms.
Usage: bglue [0 (off) / 1 (shift) / 2 (full)]
*/
bglue(...args: any[]);
/*
use bhaspc Edge Face [do]
*/
bhaspc(...args: any[]);
/*
alias to readbrep command
*/
binrestore(...args: any[]);
/*
binsave shape filename
*/
binsave(...args: any[]);
/*
bisec result line/circle/point line/circle/point
*/
bisec(...args: any[]);
/*
blend result object rad1 ed1 rad2 ed2 ... [R/Q/P]
*/
blend(...args: any[]);
/*
blend1 result object rad ed1 ed2 ...
*/
blend1(...args: any[]);
/*
Performs the blind hole : blindhole result shape Or.X Or.Y Or.Z Dir.X Dir.Y Dir.Z Radius Length
*/
blindhole(...args: any[]);
/*
bmirror name x y z dx dy dz
*/
bmirror(...args: any[]);
/*
bmove name1 name2 ... name, set location from name
*/
bmove(...args: any[]);
/*
Enables/Disables the safe processing mode.
Usage: bnondestructive 0/1
*/
bnondestructive(...args: any[]);
/*
use bop s1 s2
*/
bop(...args: any[]);
/*
Use >bopaddpcs Shape
*/
bopaddpcs(...args: any[]);
/*
Checks the validity of shape/pair of shapes.
Usage: bopapicheck s1 [s2] [-op common/fuse/cut/tuc] [-se] [-si]
Options:
s1, s2 - shapes for checking;
-op - specifies the type of Boolean operation, for which the validity of shapes should be checked; Should be followed by the operation;
-se - disables the check of the shapes on small edges;
-si - disables the check of the shapes on self-interference.
*/
bopapicheck(...args: any[]);
/*
use bopargcheck without parameters to get
*/
bopargcheck(...args: any[]);
/*
Splits the face by set of shared edges. Use: bopbface fr cx
*/
bopbface(...args: any[]);
/*
Build solids from set of shared faces. Use: bopbsolid sr cx
*/
bopbsolid(...args: any[]);
/*
Shows information about common blocks. Use: bopcb [#e]
*/
bopcb(...args: any[]);
/*
use bopcheck Shape [level of check: 0 - 9] [-t]
*/
bopcheck(...args: any[]);
/*
use bopcommon r
*/
bopcommon(...args: any[]);
/*
use bopcurves F1 F2 [-2d/-2d1/-2d2] [-p u1 v1 u2 v2 (to add start points] [-v (for extended output)]
*/
bopcurves(...args: any[]);
/*
use bopcut r
*/
bopcut(...args: any[]);
/*
Shows the shapes from DS. Use: bopds [v/e/w/f/sh/s/cs/c]
*/
bopds(...args: any[]);
/*
Shows information about alone vertices for the face. Use: bopfav #f
*/
bopfav(...args: any[]);
/*
Shows IN information for the face. Use: bopfin #f
*/
bopfin(...args: any[]);
/*
Shows ON information for the face. Use: bopfon #f
*/
bopfon(...args: any[]);
/*
Shows SC information for the face. Use: bopfsc #f
*/
bopfsc(...args: any[]);
/*
Shows SD faces for the face: Use: bopfsd f
*/
bopfsd(...args: any[]);
/*
use bopfuse r
*/
bopfuse(...args: any[]);
/*
Shows split parts of the shape. Use: bopimage s
*/
bopimage(...args: any[]);
/*
Gets the index of the shape in the DS. Use: bopindex s
*/
bopindex(...args: any[]);
/*
Shows interferences of given type. Use: bopinterf type1 type2
*/
bopinterf(...args: any[]);
/*
Shows the pairs of interfered shapes. Use: bopiterator [type1 type2]
*/
bopiterator(...args: any[]);
/*
Shows the newly created shapes. Use: bopnews [v,e,f]
*/
bopnews(...args: any[]);
/*
Shows the original shape for the shape. Use: boporigin s
*/
boporigin(...args: any[]);
/*
Shows information about pave blocks. Use: boppb [#e]
*/
boppb(...args: any[]);
/*
Shows the section curves. Use: bopsc [nF1 [nF2]]
*/
bopsc(...args: any[]);
/*
Gets the Same domain shape. Use: bopsd #
*/
bopsd(...args: any[]);
/*
use bopsection r
*/
bopsection(...args: any[]);
/*
Shows the splits of edges. Use: bopsp [#e]
*/
bopsp(...args: any[]);
/*
Usage: boptions [-default]
w/o arguments shows current value of BOP options
-default - allows setting all options to default values
*/
boptions(...args: any[]);
/*
use boptuc r
*/
boptuc(...args: any[]);
/*
Shows where the new shape was created. Use: bopwho #
*/
bopwho(...args: any[]);
/*
Perform fillet on top and bottom edges of dprism :bossage dprism result radtop radbottom First/LastShape (1/2)
*/
bossage(...args: any[]);
/*
bounding {shape | xmin ymin zmin xmax ymax zmax}
: [-obb] [-noTriangulation] [-optimal] [-extToler]
: [-dump] [-print] [-dumpJson] [-shape name] [-nodraw] [-finitePart]
: [-save xmin ymin zmin xmax ymax zmax]
:
: Computes a bounding box. Two types of the source data are supported:
: a shape or AABB corners (xmin, ymin, zmin, xmax, ymax, zmax).
:
: Calculation options (applicable only if input is a shape):
: -obb Compute Oriented Bounding Box (OBB) instead of AABB.
: -noTriangulation Force use of exact geometry for calculation
: even if triangulation is present.
: -optimal Force calculation of optimal (more tight) AABB.
: In case of OBB:
: - for PCA approach applies to initial AABB used in OBB calculation
: - for DiTo approach modifies the DiTo algorithm to check more axes.
: -extToler Include tolerance of the shape in the resulting box.
:
: Output options:
: -dump Prints the information about computed Bounding Box.
: -print Prints the information about computed Bounding Box.
: It is enabled by default (with plain old syntax for AABB)
: if neither -shape nor -save is specified.
: -dumpJson Prints DumpJson information about Bounding Box.
: -shape Stores computed box as solid in DRAW variable with specified name.
: -save Stores min and max coordinates of AABB in specified variables.
: -noDraw Avoid drawing resulting Bounding Box in DRAW viewer.
: -finite Return finite part of infinite box.
*/
bounding(...args: any[]);
/*
bounds S/C/C2d U1 U2 [V1 V2]
*/
bounds(...args: any[]);
/*
box name [dx dy dz] [x y z dx dy dz]
: [-min x y z] [-size dx dy dz] [-max x y z]
: [-dir x y z -xdir x y z] [-preview]
: Construct axes-aligned box and put result into 'name' variable
: -min box lower corner, origin; (0,0,0) by default
: -size box dimensions (alternative to -max)
: -max box upper corner (alternative to -size)
: -dir main direction of coordinate system (DZ by default)
: -xdir x direction of coordinate system (DX by default)
: -preview non-solid shape will be created (vertex, edge, rectangle or box);
: otherwise, return NULL shape in case of zero box dimension.
*/
box(...args: any[]);
/*
use breducetolerance Shape
*/
breducetolerance(...args: any[]);
/*
brollingball r S radius [stopf1 ..] @ [f1 f2 ..] @ [e1 ..]
*/
brollingball(...args: any[]);
/*
brotate name1 name2 ... x y z dx dy dz angle
*/
brotate(...args: any[]);
/*
Enables/Disables parallel processing mode.
Usage: brunparallel 0/1
*/
brunparallel(...args: any[]);
/*
bscale name x y z scale
*/
bscale(...args: any[]);
/*
use bsection r s1 s2 [-n2d/-n2d1/-n2d2] [-na]Builds section between shapes. Options:
-n2d/-n2d1/-n2d2 - disable the PCurve construction;
-na - disables the approximation of the section curves.
*/
bsection(...args: any[]);
/*
Enables/Disables the result simplification after BOP
Usage: bsimplify [-e 0/1] [-f 0/1] [-a tol]
-e 0/1 - enables/disables edges unification
-f 0/1 - enables/disables faces unification
-a tol - changes default angular tolerance of unification algo (accepts value in degrees).
*/
bsimplify(...args: any[]);
/*
bsplinecurve name degree nbknots knot, umult pole, weight
*/
bsplinecurve(...args: any[]);
/*
bsplineprof, no args to get help
*/
bsplineprof(...args: any[]);
/*
bsplinesurf name udegree nbuknots uknot, umult vdegree nbvknots vknot, vmult pole, weight
*/
bsplinesurf(...args: any[]);
/*
Builds the result of Split operation. Intersection (bfillds) has to be already performed by this moment.
Usage: bsplit result [-t]
Where:
result - name of the result shape
-t is the optional parameter for enabling timer and showing elapsed time of the operation
*/
bsplit(...args: any[]);
/*
use btolx Shape [minTol=1.e-7]
*/
btolx(...args: any[]);
/*
btranslate name1 name2 ... dx dy dz
*/
btranslate(...args: any[]);
/*
use btuc r s1 s2
*/
btuc(...args: any[]);
/*
build3d S [tol]
*/
build3d(...args: any[]);
/*
Builds the result of BOP basing on the GF, thus bbuild command has to be already performed
The command uses classification approach for building the result of BOP
(thus it operates on solids only and can be used on open solids):
- FUSE is built from the faces OUT of all arguments
- COMMON is built from the faces IN any of the object/tools
- CUT is built from the objects faces OUT of the tools and tools faces IN the objects.
Please note that history for solids will not be available.
Usage: buildbop result -o s1 [s2 ...] -t s3 [s4 ...] -op operation (common/fuse/cut/tuc)
Where:
result - result shape of the operation
s1 s2 s3 s4 - arguments (solids) of the GF operation
operation - type of boolean operation
*/
buildbop(...args: any[]);
/*
buildevol end of the evol fillet computation
*/
buildevol(...args: any[]);
/*
buildfaces result faceReference wire1 wire2 ...
*/
buildfaces(...args: any[]);
/*
buildpcurvesonplane shape
*/
buildpcurvesonplane(...args: any[]);
/*
builsweep [r] [option] [Tol] , no args to get help
*/
buildsweep(...args: any[]);
/*
Enables/disables the usage of OBB in BOP algorithms
Usage: buseobb 0 (off) / 1 (on)
*/
buseobb(...args: any[]);
/*
canceldenom BSpline-Surface UDirection(0/1) VDirection(0/1)
*/
canceldenom(...args: any[]);
/*
cclearrepetitions [result]
Clears all previous repetitions of the periodic shape.
*/
cclearrepetitions(...args: any[]);
/*
cfindp name view x y index
*/
cfindp(...args: any[]);
/*
for help call chamf without arguments
*/
chamf(...args: any[]);
/*
chamf_throat result shape edge throat
*/
chamf_throat(...args: any[]);
/*
chamf_throat_with_penetration result shape edge face offset throat
*/
chamf_throat_with_penetration(...args: any[]);
/*
chamfer2d result wire (or edge1 edge2) length1 length2
*/
chamfer2d(...args: any[]);
/*
check shape1 shape2 ...
*/
check(...args: any[]);
/*
use checkcurveonsurf shape
*/
checkcurveonsurf(...args: any[]);
/*
checks the validity of the diff between the shapes arg1..argn and result :
checkdiff arg1 [arg2..argn] result [closedSolid (1/0)] [geomCtrl (1/0)]
*/
checkdiff(...args: any[]);
/*
checkhist
*/
checkhist(...args: any[]);
/*
checkloc shape
*/
checkloc(...args: any[]);
/*
checks the closure of a section : checksection name [-r <RefVal>]
"-r" - allowed number of alone vertices.
*/
checksection(...args: any[]);
/*
checkshape : no args to have help
*/
checkshape(...args: any[]);
/*
chfi2d result face [edge1 edge2 (F radius/CDD d1 d2/CDA d ang) ....]
*/
chfi2d(...args: any[]);
/*
chgrange newname curve2d first last RequestedFirst RequestedLast ]
*/
chgrange(...args: any[]);
/*
circle name x y [z [dx dy dz]] [ux uy [uz]] radius
*/
circle(...args: any[]);
/*
cirtang cname [-t <Tolerance>] -c <curve> -p <point> -r <Radius>...
*/
cirtang(...args: any[]);
/*
clcurvature curvename
*/
clcurvature(...args: any[]);
/*
clearrepetitions [result]
Clears all previous repetitions of the periodic shape.
*/
clearrepetitions(...args: any[]);
/*
clintedge shape
*/
clintedge(...args: any[]);
/*
cmakeperiodic result [-x/y/z period [-trim first]]
Make the connected shape periodic in the required directions.
result - resulting periodic shape;
-x/y/z period - option to make the shape periodic in X, Y or Z
direction with the given period;
-trim first - option to trim the shape to fit the required period,
starting the period in first.
*/
cmakeperiodic(...args: any[]);
/*
cmaterialson result +/- shape
Returns the original shapes located on the required side of a shape:
'+' - on a positive side of a shape (containing the shape with orientation FORWARD)
'-' - on a negative side of a shape (containing the shape with orientation REVERSED).
*/
cmaterialson(...args: any[]);
/*
cmovep name index dx dy dz
*/
cmovep(...args: any[]);
/*
cmovepoint name u dx dy [dz index1 index2]
*/
cmovepoint(...args: any[]);
/*
cmovetangent name u x y [z] tx ty [tz constraint = 0]
*/
cmovetangent(...args: any[]);
/*
BsplSurf1 BSplSurf2
*/
compBsplSur(...args: any[]);
/*
Compare shapes. Usage: compare shape1 shape2
*/
compare(...args: any[]);
/*
complement name1 name2 ...
*/
complement(...args: any[]);
/*
compound [name1 name2 ..] compound
*/
compound(...args: any[]);
/*
computetolerance shape
*/
computetolerance(...args: any[]);
/*
concatC0wire result wire
*/
concatC0wire(...args: any[]);
/*
concatwire result wire [option](G1/C1)
*/
concatwire(...args: any[]);
/*
cone name [x y z [dx dy dz [ux uy uz]]] semi-angle radius
*/
cone(...args: any[]);
/*
continuity [tolerance] shape1 shape2 ...
*/
continuity(...args: any[]);
/*
continuityblend C0/C1/C2 [tangle]
*/
continuityblend(...args: any[]);
/*
convert result c2d/c3d/surf [qa,c1,s1,s2,s3,s4,po]
*/
convert(...args: any[]);
/*
convertfrombezier result nbu [nbv] bz1 [bz2 .... bzn] [tol]
*/
convertfrombezier(...args: any[]);
/*
coord P x y [z]: set in x y [z] the coordinates of P
*/
coord(...args: any[]);
/*
copy name1 toname1 name2 toname2 ...
*/
copy(...args: any[]);
/*
countshapes s; count of shape
*/
countshapes(...args: any[]);
/*
cperiodictwins twins shape
Returns the twins for the shape located on the opposite side of the periodic shape.
*/
cperiodictwins(...args: any[]);
/*
cprj result w s x y z: Conical projection of w (wire or edge) on s (faces).
*/
cprj(...args: any[]);
/*
crepeatshape result -x/y/z times
Repeats the periodic connected shape in periodic directions required number of times.
result - resulting shape;
-x/y/z times - direction for repetition and number of repetitions.
*/
crepeatshape(...args: any[]);
/*
crvpoints result <curve or wire> deflection
*/