forked from tpaviot/pythonocc-core
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBRepFilletAPI.i
More file actions
1254 lines (1116 loc) · 55 KB
/
Copy pathBRepFilletAPI.i
File metadata and controls
1254 lines (1116 loc) · 55 KB
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
/*
Copyright 2008-2017 Thomas Paviot (tpaviot@gmail.com)
This file is part of pythonOCC.
pythonOCC is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
pythonOCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with pythonOCC. If not, see <http://www.gnu.org/licenses/>.
*/
%define BREPFILLETAPIDOCSTRING
""
%enddef
%module (package="OCC.Core", docstring=BREPFILLETAPIDOCSTRING) BRepFilletAPI
#pragma SWIG nowarn=504,325,503
%{
#ifdef WNT
#pragma warning(disable : 4716)
#endif
%}
%include ../common/CommonIncludes.i
%include ../common/ExceptionCatcher.i
%include ../common/FunctionTransformers.i
%include ../common/Operators.i
%include ../common/OccHandle.i
%include BRepFilletAPI_headers.i
/* typedefs */
/* end typedefs declaration */
/* public enums */
/* end public enums declaration */
%nodefaultctor BRepFilletAPI_LocalOperation;
class BRepFilletAPI_LocalOperation : public BRepBuilderAPI_MakeShape {
public:
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds a contour in the builder (builds a contour of tangent edges).
:param E:
:type E: TopoDS_Edge &
:rtype: void
") Add;
virtual void Add (const TopoDS_Edge & E);
%feature("compactdefaultargs") ResetContour;
%feature("autodoc", " * Reset the contour of index IC, there is nomore information in the contour.
:param IC:
:type IC: int
:rtype: void
") ResetContour;
virtual void ResetContour (const Standard_Integer IC);
%feature("compactdefaultargs") NbContours;
%feature("autodoc", " * Number of contours.
:rtype: int
") NbContours;
virtual Standard_Integer NbContours ();
%feature("compactdefaultargs") Contour;
%feature("autodoc", " * Returns the index of the contour containing the edge E, returns 0 if E doesn't belong to any contour.
:param E:
:type E: TopoDS_Edge &
:rtype: int
") Contour;
virtual Standard_Integer Contour (const TopoDS_Edge & E);
%feature("compactdefaultargs") NbEdges;
%feature("autodoc", " * Number of Edges in the contour I.
:param I:
:type I: int
:rtype: int
") NbEdges;
virtual Standard_Integer NbEdges (const Standard_Integer I);
%feature("compactdefaultargs") Edge;
%feature("autodoc", " * Returns the Edge J in the contour I.
:param I:
:type I: int
:param J:
:type J: int
:rtype: TopoDS_Edge
") Edge;
virtual const TopoDS_Edge Edge (const Standard_Integer I,const Standard_Integer J);
%feature("compactdefaultargs") Remove;
%feature("autodoc", " * remove the contour containing the Edge E.
:param E:
:type E: TopoDS_Edge &
:rtype: void
") Remove;
virtual void Remove (const TopoDS_Edge & E);
%feature("compactdefaultargs") Length;
%feature("autodoc", " * returns the length the contour of index IC.
:param IC:
:type IC: int
:rtype: float
") Length;
virtual Standard_Real Length (const Standard_Integer IC);
%feature("compactdefaultargs") FirstVertex;
%feature("autodoc", " * Returns the first Vertex of the contour of index IC.
:param IC:
:type IC: int
:rtype: TopoDS_Vertex
") FirstVertex;
virtual TopoDS_Vertex FirstVertex (const Standard_Integer IC);
%feature("compactdefaultargs") LastVertex;
%feature("autodoc", " * Returns the last Vertex of the contour of index IC.
:param IC:
:type IC: int
:rtype: TopoDS_Vertex
") LastVertex;
virtual TopoDS_Vertex LastVertex (const Standard_Integer IC);
%feature("compactdefaultargs") Abscissa;
%feature("autodoc", " * returns the abscissa of the vertex V on the contour of index IC.
:param IC:
:type IC: int
:param V:
:type V: TopoDS_Vertex &
:rtype: float
") Abscissa;
virtual Standard_Real Abscissa (const Standard_Integer IC,const TopoDS_Vertex & V);
%feature("compactdefaultargs") RelativeAbscissa;
%feature("autodoc", " * returns the relative abscissa([0.,1.]) of the vertex V on the contour of index IC.
:param IC:
:type IC: int
:param V:
:type V: TopoDS_Vertex &
:rtype: float
") RelativeAbscissa;
virtual Standard_Real RelativeAbscissa (const Standard_Integer IC,const TopoDS_Vertex & V);
%feature("compactdefaultargs") ClosedAndTangent;
%feature("autodoc", " * returns true if the contour of index IC is closed an tangent.
:param IC:
:type IC: int
:rtype: bool
") ClosedAndTangent;
virtual Standard_Boolean ClosedAndTangent (const Standard_Integer IC);
%feature("compactdefaultargs") Closed;
%feature("autodoc", " * returns true if the contour of index IC is closed
:param IC:
:type IC: int
:rtype: bool
") Closed;
virtual Standard_Boolean Closed (const Standard_Integer IC);
%feature("compactdefaultargs") Reset;
%feature("autodoc", " * Reset all the fields updated by Build operation and leave the algorithm in the same state than before build call. It allows contours and radius modifications to build the result another time.
:rtype: void
") Reset;
virtual void Reset ();
%feature("compactdefaultargs") Simulate;
%feature("autodoc", " :param IC:
:type IC: int
:rtype: void
") Simulate;
virtual void Simulate (const Standard_Integer IC);
%feature("compactdefaultargs") NbSurf;
%feature("autodoc", " :param IC:
:type IC: int
:rtype: int
") NbSurf;
virtual Standard_Integer NbSurf (const Standard_Integer IC);
%feature("compactdefaultargs") Sect;
%feature("autodoc", " :param IC:
:type IC: int
:param IS:
:type IS: int
:rtype: Handle_ChFiDS_SecHArray1
") Sect;
virtual Handle_ChFiDS_SecHArray1 Sect (const Standard_Integer IC,const Standard_Integer IS);
};
%extend BRepFilletAPI_LocalOperation {
%pythoncode {
__repr__ = _dumps_object
}
};
%nodefaultctor BRepFilletAPI_MakeFillet2d;
class BRepFilletAPI_MakeFillet2d : public BRepBuilderAPI_MakeShape {
public:
%feature("compactdefaultargs") BRepFilletAPI_MakeFillet2d;
%feature("autodoc", " * Initializes an empty algorithm for computing fillets and chamfers. The face on which the fillets and chamfers are built is defined using the Init function. The vertices on which fillets or chamfers are built are defined using the AddFillet or AddChamfer function. Warning The status of the initialization, as given by the Status function, can be one of the following: - ChFi2d_Ready if the initialization is correct, - ChFi2d_NotPlanar if F is not planar, - ChFi2d_NoFace if F is a null face.
:rtype: None
") BRepFilletAPI_MakeFillet2d;
BRepFilletAPI_MakeFillet2d ();
%feature("compactdefaultargs") BRepFilletAPI_MakeFillet2d;
%feature("autodoc", " * Initializes an algorithm for computing fillets and chamfers on the face F. The vertices on which fillets or chamfers are built are defined using the AddFillet or AddChamfer function. Warning The status of the initialization, as given by the Status function, can be one of the following: - ChFi2d_Ready if the initialization is correct, - ChFi2d_NotPlanar if F is not planar, - ChFi2d_NoFace if F is a null face.
:param F:
:type F: TopoDS_Face &
:rtype: None
") BRepFilletAPI_MakeFillet2d;
BRepFilletAPI_MakeFillet2d (const TopoDS_Face & F);
%feature("compactdefaultargs") Init;
%feature("autodoc", " * Initializes this algorithm for constructing fillets or chamfers with the face F. Warning The status of the initialization, as given by the Status function, can be one of the following: - ChFi2d_Ready if the initialization is correct, - ChFi2d_NotPlanar if F is not planar, - ChFi2d_NoFace if F is a null face.
:param F:
:type F: TopoDS_Face &
:rtype: None
") Init;
void Init (const TopoDS_Face & F);
%feature("compactdefaultargs") Init;
%feature("autodoc", " * This initialize method allow to init the builder from a face <RefFace> and another face <ModFace> which derive from <RefFace>. This is usefull to modify a fillet or a chamfer already created on <ModFace> .
:param RefFace:
:type RefFace: TopoDS_Face &
:param ModFace:
:type ModFace: TopoDS_Face &
:rtype: None
") Init;
void Init (const TopoDS_Face & RefFace,const TopoDS_Face & ModFace);
%feature("compactdefaultargs") AddFillet;
%feature("autodoc", " * Adds a fillet of radius Radius between the two edges adjacent to the vertex V on the face modified by this algorithm. The two edges do not need to be rectilinear. This function returns the fillet and builds the resulting face. Warning The status of the construction, as given by the Status function, can be one of the following: - ChFi2d_IsDone if the fillet is built, - ChFi2d_ConnexionError if V does not belong to the initial face, - ChFi2d_ComputationError if Radius is too large to build a fillet between the two adjacent edges, - ChFi2d_NotAuthorized - if one of the two edges connected to V is a fillet or chamfer, or - if a curve other than a straight line or an arc of a circle is used as E, E1 or E2. Do not use the returned fillet if the status of the construction is not ChFi2d_IsDone. Exceptions Standard_NegativeValue if Radius is less than or equal to zero.
:param V:
:type V: TopoDS_Vertex &
:param Radius:
:type Radius: float
:rtype: TopoDS_Edge
") AddFillet;
TopoDS_Edge AddFillet (const TopoDS_Vertex & V,const Standard_Real Radius);
%feature("compactdefaultargs") ModifyFillet;
%feature("autodoc", " * Assigns the radius Radius to the fillet Fillet already built on the face modified by this algorithm. This function returns the new fillet and modifies the existing face. Warning The status of the construction, as given by the Status function, can be one of the following: - ChFi2d_IsDone if the new fillet is built, - ChFi2d_ConnexionError if Fillet does not belong to the existing face, - ChFi2d_ComputationError if Radius is too large to build a fillet between the two adjacent edges. Do not use the returned fillet if the status of the construction is not ChFi2d_IsDone. Exceptions Standard_NegativeValue if Radius is less than or equal to zero.
:param Fillet:
:type Fillet: TopoDS_Edge &
:param Radius:
:type Radius: float
:rtype: TopoDS_Edge
") ModifyFillet;
TopoDS_Edge ModifyFillet (const TopoDS_Edge & Fillet,const Standard_Real Radius);
%feature("compactdefaultargs") RemoveFillet;
%feature("autodoc", " * Removes the fillet Fillet already built on the face modified by this algorithm. This function returns the vertex connecting the two adjacent edges of Fillet and modifies the existing face. Warning - The returned vertex is only valid if the Status function returns ChFi2d_IsDone. - A null vertex is returned if the edge Fillet does not belong to the initial face.
:param Fillet:
:type Fillet: TopoDS_Edge &
:rtype: TopoDS_Vertex
") RemoveFillet;
TopoDS_Vertex RemoveFillet (const TopoDS_Edge & Fillet);
%feature("compactdefaultargs") AddChamfer;
%feature("autodoc", " * Adds a chamfer on the face modified by this algorithm between the two adjacent edges E1 and E2, where the extremities of the chamfer are on E1 and E2 at distances D1 and D2 respectively In cases where the edges are not rectilinear, distances are measured using the curvilinear abscissa of the edges and the angle is measured with respect to the tangent at the corresponding point. The angle Ang is given in radians. This function returns the chamfer and builds the resulting face.
:param E1:
:type E1: TopoDS_Edge &
:param E2:
:type E2: TopoDS_Edge &
:param D1:
:type D1: float
:param D2:
:type D2: float
:rtype: TopoDS_Edge
") AddChamfer;
TopoDS_Edge AddChamfer (const TopoDS_Edge & E1,const TopoDS_Edge & E2,const Standard_Real D1,const Standard_Real D2);
%feature("compactdefaultargs") AddChamfer;
%feature("autodoc", " * Adds a chamfer on the face modified by this algorithm between the two edges connected by the vertex V, where E is one of the two edges. The chamfer makes an angle Ang with E and one of its extremities is on E at distance D from V. In cases where the edges are not rectilinear, distances are measured using the curvilinear abscissa of the edges and the angle is measured with respect to the tangent at the corresponding point. The angle Ang is given in radians. This function returns the chamfer and builds the resulting face. Warning The status of the construction, as given by the Status function, can be one of the following: - ChFi2d_IsDone if the chamfer is built, - ChFi2d_ParametersError if D1, D2, D or Ang is less than or equal to zero, - ChFi2d_ConnexionError if: - the edge E, E1 or E2 does not belong to the initial face, or - the edges E1 and E2 are not adjacent, or - the vertex V is not one of the limit points of the edge E, - ChFi2d_ComputationError if the parameters of the chamfer are too large to build a chamfer between the two adjacent edges, - ChFi2d_NotAuthorized if: - the edge E1, E2 or one of the two edges connected to V is a fillet or chamfer, or - a curve other than a straight line or an arc of a circle is used as E, E1 or E2. Do not use the returned chamfer if the status of the construction is not ChFi2d_IsDone.
:param E:
:type E: TopoDS_Edge &
:param V:
:type V: TopoDS_Vertex &
:param D:
:type D: float
:param Ang:
:type Ang: float
:rtype: TopoDS_Edge
") AddChamfer;
TopoDS_Edge AddChamfer (const TopoDS_Edge & E,const TopoDS_Vertex & V,const Standard_Real D,const Standard_Real Ang);
%feature("compactdefaultargs") ModifyChamfer;
%feature("autodoc", " * Modifies the chamfer Chamfer on the face modified by this algorithm, where: E1 and E2 are the two adjacent edges on which Chamfer is already built; the extremities of the new chamfer are on E1 and E2 at distances D1 and D2 respectively.
:param Chamfer:
:type Chamfer: TopoDS_Edge &
:param E1:
:type E1: TopoDS_Edge &
:param E2:
:type E2: TopoDS_Edge &
:param D1:
:type D1: float
:param D2:
:type D2: float
:rtype: TopoDS_Edge
") ModifyChamfer;
TopoDS_Edge ModifyChamfer (const TopoDS_Edge & Chamfer,const TopoDS_Edge & E1,const TopoDS_Edge & E2,const Standard_Real D1,const Standard_Real D2);
%feature("compactdefaultargs") ModifyChamfer;
%feature("autodoc", " * Modifies the chamfer Chamfer on the face modified by this algorithm, where: E is one of the two adjacent edges on which Chamfer is already built; the new chamfer makes an angle Ang with E and one of its extremities is on E at distance D from the vertex on which the chamfer is built. In cases where the edges are not rectilinear, the distances are measured using the curvilinear abscissa of the edges and the angle is measured with respect to the tangent at the corresponding point. The angle Ang is given in radians. This function returns the new chamfer and modifies the existing face. Warning The status of the construction, as given by the Status function, can be one of the following: - ChFi2d_IsDone if the chamfer is built, - ChFi2d_ParametersError if D1, D2, D or Ang is less than or equal to zero, - ChFi2d_ConnexionError if: - the edge E, E1, E2 or Chamfer does not belong to the existing face, or - the edges E1 and E2 are not adjacent, - ChFi2d_ComputationError if the parameters of the chamfer are too large to build a chamfer between the two adjacent edges, - ChFi2d_NotAuthorized if E1 or E2 is a fillet or chamfer. Do not use the returned chamfer if the status of the construction is not ChFi2d_IsDone.
:param Chamfer:
:type Chamfer: TopoDS_Edge &
:param E:
:type E: TopoDS_Edge &
:param D:
:type D: float
:param Ang:
:type Ang: float
:rtype: TopoDS_Edge
") ModifyChamfer;
TopoDS_Edge ModifyChamfer (const TopoDS_Edge & Chamfer,const TopoDS_Edge & E,const Standard_Real D,const Standard_Real Ang);
%feature("compactdefaultargs") RemoveChamfer;
%feature("autodoc", " * Removes the chamfer Chamfer already built on the face modified by this algorithm. This function returns the vertex connecting the two adjacent edges of Chamfer and modifies the existing face. Warning - The returned vertex is only valid if the Status function returns ChFi2d_IsDone. - A null vertex is returned if the edge Chamfer does not belong to the initial face.
:param Chamfer:
:type Chamfer: TopoDS_Edge &
:rtype: TopoDS_Vertex
") RemoveChamfer;
TopoDS_Vertex RemoveChamfer (const TopoDS_Edge & Chamfer);
%feature("compactdefaultargs") IsModified;
%feature("autodoc", " * Returns true if the edge E on the face modified by this algorithm is chamfered or filleted. Warning Returns false if E does not belong to the face modified by this algorithm.
:param E:
:type E: TopoDS_Edge &
:rtype: bool
") IsModified;
Standard_Boolean IsModified (const TopoDS_Edge & E);
%feature("compactdefaultargs") FilletEdges;
%feature("autodoc", " * Returns the table of fillets on the face modified by this algorithm.
:rtype: TopTools_SequenceOfShape
") FilletEdges;
const TopTools_SequenceOfShape & FilletEdges ();
%feature("compactdefaultargs") NbFillet;
%feature("autodoc", " * Returns the number of fillets on the face modified by this algorithm.
:rtype: int
") NbFillet;
Standard_Integer NbFillet ();
%feature("compactdefaultargs") ChamferEdges;
%feature("autodoc", " * Returns the table of chamfers on the face modified by this algorithm.
:rtype: TopTools_SequenceOfShape
") ChamferEdges;
const TopTools_SequenceOfShape & ChamferEdges ();
%feature("compactdefaultargs") NbChamfer;
%feature("autodoc", " * Returns the number of chamfers on the face modified by this algorithm.
:rtype: int
") NbChamfer;
Standard_Integer NbChamfer ();
%feature("compactdefaultargs") Modified;
%feature("autodoc", " * Returns the list of shapes modified from the shape <S>.
:param S:
:type S: TopoDS_Shape &
:rtype: TopTools_ListOfShape
") Modified;
virtual const TopTools_ListOfShape & Modified (const TopoDS_Shape & S);
%feature("compactdefaultargs") NbCurves;
%feature("autodoc", " * returns the number of new curves after the shape creation.
:rtype: int
") NbCurves;
Standard_Integer NbCurves ();
%feature("compactdefaultargs") NewEdges;
%feature("autodoc", " * Return the Edges created for curve I.
:param I:
:type I: int
:rtype: TopTools_ListOfShape
") NewEdges;
const TopTools_ListOfShape & NewEdges (const Standard_Integer I);
%feature("compactdefaultargs") HasDescendant;
%feature("autodoc", " :param E:
:type E: TopoDS_Edge &
:rtype: bool
") HasDescendant;
Standard_Boolean HasDescendant (const TopoDS_Edge & E);
%feature("compactdefaultargs") DescendantEdge;
%feature("autodoc", " * Returns the chamfered or filleted edge built from the edge E on the face modified by this algorithm. If E has not been modified, this function returns E. Exceptions Standard_NoSuchObject if the edge E does not belong to the initial face.
:param E:
:type E: TopoDS_Edge &
:rtype: TopoDS_Edge
") DescendantEdge;
const TopoDS_Edge DescendantEdge (const TopoDS_Edge & E);
%feature("compactdefaultargs") BasisEdge;
%feature("autodoc", " * Returns the basis edge on the face modified by this algorithm from which the chamfered or filleted edge E is built. If E has not been modified, this function returns E. Warning E is returned if it does not belong to the initial face.
:param E:
:type E: TopoDS_Edge &
:rtype: TopoDS_Edge
") BasisEdge;
const TopoDS_Edge BasisEdge (const TopoDS_Edge & E);
%feature("compactdefaultargs") Status;
%feature("autodoc", " :rtype: ChFi2d_ConstructionError
") Status;
ChFi2d_ConstructionError Status ();
%feature("compactdefaultargs") Build;
%feature("autodoc", " * Update the result and set the Done flag
:rtype: void
") Build;
virtual void Build ();
};
%extend BRepFilletAPI_MakeFillet2d {
%pythoncode {
__repr__ = _dumps_object
}
};
%nodefaultctor BRepFilletAPI_MakeChamfer;
class BRepFilletAPI_MakeChamfer : public BRepFilletAPI_LocalOperation {
public:
%feature("compactdefaultargs") BRepFilletAPI_MakeChamfer;
%feature("autodoc", " * Initializes an algorithm for computing chamfers on the shape S. The edges on which chamfers are built are defined using the Add function.
:param S:
:type S: TopoDS_Shape &
:rtype: None
") BRepFilletAPI_MakeChamfer;
BRepFilletAPI_MakeChamfer (const TopoDS_Shape & S);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds edge E to the table of edges used by this algorithm to build chamfers, where the parameters of the chamfer must be set after the
:param E:
:type E: TopoDS_Edge &
:rtype: None
") Add;
void Add (const TopoDS_Edge & E);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds edge E to the table of edges used by this algorithm to build chamfers, where the parameters of the chamfer are given by the two distances Dis1 and Dis2; the face F identifies the side where Dis1 is measured. The Add function results in a contour being built by propagation from the edge E (i.e. the contour contains at least this edge). This contour is composed of edges of the shape which are tangential to one another and which delimit two series of tangential faces, with one series of faces being located on either side of the contour. Warning Nothing is done if edge E or the face F does not belong to the initial shape.
:param Dis:
:type Dis: float
:param E:
:type E: TopoDS_Edge &
:param F:
:type F: TopoDS_Face &
:rtype: None
") Add;
void Add (const Standard_Real Dis,const TopoDS_Edge & E,const TopoDS_Face & F);
%feature("compactdefaultargs") SetDist;
%feature("autodoc", " * Sets the distances Dis1 and Dis2 which give the parameters of the chamfer along the contour of index IC generated using the Add function in the internal data structure of this algorithm. The face F identifies the side where Dis1 is measured. Warning Nothing is done if either the edge E or the face F does not belong to the initial shape.
:param Dis:
:type Dis: float
:param IC:
:type IC: int
:param F:
:type F: TopoDS_Face &
:rtype: None
") SetDist;
void SetDist (const Standard_Real Dis,const Standard_Integer IC,const TopoDS_Face & F);
%feature("compactdefaultargs") GetDist;
%feature("autodoc", " :param IC:
:type IC: int
:param Dis:
:type Dis: float &
:rtype: None
") GetDist;
void GetDist (const Standard_Integer IC,Standard_Real &OutValue);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds a fillet contour in the builder (builds a contour of tangent edges to <E> and sets the two distances <Dis1> and <Dis2> ( parameters of the chamfer ) ).
:param Dis1:
:type Dis1: float
:param Dis2:
:type Dis2: float
:param E:
:type E: TopoDS_Edge &
:param F:
:type F: TopoDS_Face &
:rtype: None
") Add;
void Add (const Standard_Real Dis1,const Standard_Real Dis2,const TopoDS_Edge & E,const TopoDS_Face & F);
%feature("compactdefaultargs") SetDists;
%feature("autodoc", " * Sets the distances Dis1 and Dis2 which give the parameters of the chamfer along the contour of index IC generated using the Add function in the internal data structure of this algorithm. The face F identifies the side where Dis1 is measured. Warning Nothing is done if either the edge E or the face F does not belong to the initial shape.
:param Dis1:
:type Dis1: float
:param Dis2:
:type Dis2: float
:param IC:
:type IC: int
:param F:
:type F: TopoDS_Face &
:rtype: None
") SetDists;
void SetDists (const Standard_Real Dis1,const Standard_Real Dis2,const Standard_Integer IC,const TopoDS_Face & F);
%feature("compactdefaultargs") Dists;
%feature("autodoc", " * Returns the distances Dis1 and Dis2 which give the parameters of the chamfer along the contour of index IC in the internal data structure of this algorithm. Warning -1. is returned if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:param Dis1:
:type Dis1: float &
:param Dis2:
:type Dis2: float &
:rtype: None
") Dists;
void Dists (const Standard_Integer IC,Standard_Real &OutValue,Standard_Real &OutValue);
%feature("compactdefaultargs") AddDA;
%feature("autodoc", " * Adds a fillet contour in the builder (builds a contour of tangent edges to <E> and sets the distance <Dis1> and angle <Angle> ( parameters of the chamfer ) ).
:param Dis:
:type Dis: float
:param Angle:
:type Angle: float
:param E:
:type E: TopoDS_Edge &
:param F:
:type F: TopoDS_Face &
:rtype: None
") AddDA;
void AddDA (const Standard_Real Dis,const Standard_Real Angle,const TopoDS_Edge & E,const TopoDS_Face & F);
%feature("compactdefaultargs") SetDistAngle;
%feature("autodoc", " * set the distance <Dis> and <Angle> of the fillet contour of index <IC> in the DS with <Dis> on <F>. if the face <F> is not one of common faces of an edge of the contour <IC>
:param Dis:
:type Dis: float
:param Angle:
:type Angle: float
:param IC:
:type IC: int
:param F:
:type F: TopoDS_Face &
:rtype: None
") SetDistAngle;
void SetDistAngle (const Standard_Real Dis,const Standard_Real Angle,const Standard_Integer IC,const TopoDS_Face & F);
%feature("compactdefaultargs") GetDistAngle;
%feature("autodoc", " * gives the distances <Dis> and <Angle> of the fillet contour of index <IC> in the DS
:param IC:
:type IC: int
:param Dis:
:type Dis: float &
:param Angle:
:type Angle: float &
:param DisOnFace1:
:type DisOnFace1: bool
:rtype: None
") GetDistAngle;
void GetDistAngle (const Standard_Integer IC,Standard_Real &OutValue,Standard_Real &OutValue,Standard_Boolean &OutValue);
%feature("compactdefaultargs") IsSymetric;
%feature("autodoc", " * return True if chamfer symetric false else.
:param IC:
:type IC: int
:rtype: bool
") IsSymetric;
Standard_Boolean IsSymetric (const Standard_Integer IC);
%feature("compactdefaultargs") IsTwoDistances;
%feature("autodoc", " * return True if chamfer is made with two distances false else.
:param IC:
:type IC: int
:rtype: bool
") IsTwoDistances;
Standard_Boolean IsTwoDistances (const Standard_Integer IC);
%feature("compactdefaultargs") IsDistanceAngle;
%feature("autodoc", " * return True if chamfer is made with distance and angle false else.
:param IC:
:type IC: int
:rtype: bool
") IsDistanceAngle;
Standard_Boolean IsDistanceAngle (const Standard_Integer IC);
%feature("compactdefaultargs") ResetContour;
%feature("autodoc", " * Erases the chamfer parameters on the contour of index IC in the internal data structure of this algorithm. Use the SetDists function to reset this data. Warning Nothing is done if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:rtype: None
") ResetContour;
void ResetContour (const Standard_Integer IC);
%feature("compactdefaultargs") NbContours;
%feature("autodoc", " * Returns the number of contours generated using the Add function in the internal data structure of this algorithm.
:rtype: int
") NbContours;
Standard_Integer NbContours ();
%feature("compactdefaultargs") Contour;
%feature("autodoc", " * Returns the index of the contour in the internal data structure of this algorithm, which contains the edge E of the shape. This function returns 0 if the edge E does not belong to any contour. Warning This index can change if a contour is removed from the internal data structure of this algorithm using the function Remove.
:param E:
:type E: TopoDS_Edge &
:rtype: int
") Contour;
Standard_Integer Contour (const TopoDS_Edge & E);
%feature("compactdefaultargs") NbEdges;
%feature("autodoc", " * Returns the number of edges in the contour of index I in the internal data structure of this algorithm. Warning Returns 0 if I is outside the bounds of the table of contours.
:param I:
:type I: int
:rtype: int
") NbEdges;
Standard_Integer NbEdges (const Standard_Integer I);
%feature("compactdefaultargs") Edge;
%feature("autodoc", " * Returns the edge of index J in the contour of index I in the internal data structure of this algorithm. Warning Returns a null shape if: - I is outside the bounds of the table of contours, or - J is outside the bounds of the table of edges of the contour of index I.
:param I:
:type I: int
:param J:
:type J: int
:rtype: TopoDS_Edge
") Edge;
const TopoDS_Edge Edge (const Standard_Integer I,const Standard_Integer J);
%feature("compactdefaultargs") Remove;
%feature("autodoc", " * Removes the contour in the internal data structure of this algorithm which contains the edge E of the shape. Warning Nothing is done if the edge E does not belong to the contour in the internal data structure of this algorithm.
:param E:
:type E: TopoDS_Edge &
:rtype: None
") Remove;
void Remove (const TopoDS_Edge & E);
%feature("compactdefaultargs") Length;
%feature("autodoc", " * Returns the length of the contour of index IC in the internal data structure of this algorithm. Warning Returns -1. if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:rtype: float
") Length;
Standard_Real Length (const Standard_Integer IC);
%feature("compactdefaultargs") FirstVertex;
%feature("autodoc", " * Returns the first vertex of the contour of index IC in the internal data structure of this algorithm. Warning Returns a null shape if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:rtype: TopoDS_Vertex
") FirstVertex;
TopoDS_Vertex FirstVertex (const Standard_Integer IC);
%feature("compactdefaultargs") LastVertex;
%feature("autodoc", " * Returns the last vertex of the contour of index IC in the internal data structure of this algorithm. Warning Returns a null shape if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:rtype: TopoDS_Vertex
") LastVertex;
TopoDS_Vertex LastVertex (const Standard_Integer IC);
%feature("compactdefaultargs") Abscissa;
%feature("autodoc", " * Returns the curvilinear abscissa of the vertex V on the contour of index IC in the internal data structure of this algorithm. Warning Returns -1. if: - IC is outside the bounds of the table of contours, or - V is not on the contour of index IC.
:param IC:
:type IC: int
:param V:
:type V: TopoDS_Vertex &
:rtype: float
") Abscissa;
Standard_Real Abscissa (const Standard_Integer IC,const TopoDS_Vertex & V);
%feature("compactdefaultargs") RelativeAbscissa;
%feature("autodoc", " * Returns the relative curvilinear abscissa (i.e. between 0 and 1) of the vertex V on the contour of index IC in the internal data structure of this algorithm. Warning Returns -1. if: - IC is outside the bounds of the table of contours, or - V is not on the contour of index IC.
:param IC:
:type IC: int
:param V:
:type V: TopoDS_Vertex &
:rtype: float
") RelativeAbscissa;
Standard_Real RelativeAbscissa (const Standard_Integer IC,const TopoDS_Vertex & V);
%feature("compactdefaultargs") ClosedAndTangent;
%feature("autodoc", " * eturns true if the contour of index IC in the internal data structure of this algorithm is closed and tangential at the point of closure. Warning Returns false if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:rtype: bool
") ClosedAndTangent;
Standard_Boolean ClosedAndTangent (const Standard_Integer IC);
%feature("compactdefaultargs") Closed;
%feature("autodoc", " * Returns true if the contour of index IC in the internal data structure of this algorithm is closed. Warning Returns false if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:rtype: bool
") Closed;
Standard_Boolean Closed (const Standard_Integer IC);
%feature("compactdefaultargs") Build;
%feature("autodoc", " * Builds the chamfers on all the contours in the internal data structure of this algorithm and constructs the resulting shape. Use the function IsDone to verify that the chamfered shape is built. Use the function Shape to retrieve the chamfered shape. Warning The construction of chamfers implements highly complex construction algorithms. Consequently, there may be instances where the algorithm fails, for example if the data defining the parameters of the chamfer is not compatible with the geometry of the initial shape. There is no initial analysis of errors and these only become evident at the construction stage. Additionally, in the current software release, the following cases are not handled: - the end point of the contour is the point of intersection of 4 or more edges of the shape, or - the intersection of the chamfer with a face which limits the contour is not fully contained in this face.
:rtype: void
") Build;
virtual void Build ();
%feature("compactdefaultargs") Reset;
%feature("autodoc", " * Reinitializes this algorithm, thus canceling the effects of the Build function. This function allows modifications to be made to the contours and chamfer parameters in order to rebuild the shape.
:rtype: None
") Reset;
void Reset ();
%feature("compactdefaultargs") Builder;
%feature("autodoc", " * Returns the internal filleting algorithm.
:rtype: Handle_TopOpeBRepBuild_HBuilder
") Builder;
Handle_TopOpeBRepBuild_HBuilder Builder ();
%feature("compactdefaultargs") Generated;
%feature("autodoc", " * Returns the list of shapes generated from the shape <EorV>.
:param EorV:
:type EorV: TopoDS_Shape &
:rtype: TopTools_ListOfShape
") Generated;
virtual const TopTools_ListOfShape & Generated (const TopoDS_Shape & EorV);
%feature("compactdefaultargs") Modified;
%feature("autodoc", " * Returns the list of shapes modified from the shape <F>.
:param F:
:type F: TopoDS_Shape &
:rtype: TopTools_ListOfShape
") Modified;
virtual const TopTools_ListOfShape & Modified (const TopoDS_Shape & F);
%feature("compactdefaultargs") IsDeleted;
%feature("autodoc", " :param F:
:type F: TopoDS_Shape &
:rtype: bool
") IsDeleted;
virtual Standard_Boolean IsDeleted (const TopoDS_Shape & F);
%feature("compactdefaultargs") Simulate;
%feature("autodoc", " :param IC:
:type IC: int
:rtype: None
") Simulate;
void Simulate (const Standard_Integer IC);
%feature("compactdefaultargs") NbSurf;
%feature("autodoc", " :param IC:
:type IC: int
:rtype: int
") NbSurf;
Standard_Integer NbSurf (const Standard_Integer IC);
%feature("compactdefaultargs") Sect;
%feature("autodoc", " :param IC:
:type IC: int
:param IS:
:type IS: int
:rtype: Handle_ChFiDS_SecHArray1
") Sect;
Handle_ChFiDS_SecHArray1 Sect (const Standard_Integer IC,const Standard_Integer IS);
};
%extend BRepFilletAPI_MakeChamfer {
%pythoncode {
__repr__ = _dumps_object
}
};
%nodefaultctor BRepFilletAPI_MakeFillet;
class BRepFilletAPI_MakeFillet : public BRepFilletAPI_LocalOperation {
public:
%feature("compactdefaultargs") BRepFilletAPI_MakeFillet;
%feature("autodoc", " * Initializes the computation of the fillets. <FShape> sets the type of fillet surface. The default value is ChFi3d_Rational (classical nurbs representation of circles). ChFi3d_QuasiAngular corresponds to a nurbs representation of circles which parameterisation matches the circle one. ChFi3d_Polynomial corresponds to a polynomial representation of circles.
:param S:
:type S: TopoDS_Shape &
:param FShape: default value is ChFi3d_Rational
:type FShape: ChFi3d_FilletShape
:rtype: None
") BRepFilletAPI_MakeFillet;
BRepFilletAPI_MakeFillet (const TopoDS_Shape & S,const ChFi3d_FilletShape FShape = ChFi3d_Rational);
%feature("compactdefaultargs") SetParams;
%feature("autodoc", " :param Tang:
:type Tang: float
:param Tesp:
:type Tesp: float
:param T2d:
:type T2d: float
:param TApp3d:
:type TApp3d: float
:param TolApp2d:
:type TolApp2d: float
:param Fleche:
:type Fleche: float
:rtype: None
") SetParams;
void SetParams (const Standard_Real Tang,const Standard_Real Tesp,const Standard_Real T2d,const Standard_Real TApp3d,const Standard_Real TolApp2d,const Standard_Real Fleche);
%feature("compactdefaultargs") SetContinuity;
%feature("autodoc", " * Changes the parameters of continiuity InternalContinuity to produce fillet'surfaces with an continuity Ci (i=0,1 or 2). By defaultInternalContinuity = GeomAbs_C1. AngularTolerance is the G1 tolerance between fillet and support'faces.
:param InternalContinuity:
:type InternalContinuity: GeomAbs_Shape
:param AngularTolerance:
:type AngularTolerance: float
:rtype: None
") SetContinuity;
void SetContinuity (const GeomAbs_Shape InternalContinuity,const Standard_Real AngularTolerance);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds a fillet contour in the builder (builds a contour of tangent edges). The Radius must be set after.
:param E:
:type E: TopoDS_Edge &
:rtype: None
") Add;
void Add (const TopoDS_Edge & E);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds a fillet description in the builder - builds a contour of tangent edges, - sets the radius.
:param Radius:
:type Radius: float
:param E:
:type E: TopoDS_Edge &
:rtype: None
") Add;
void Add (const Standard_Real Radius,const TopoDS_Edge & E);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds a fillet description in the builder - builds a contour of tangent edges, - sets a linear radius evolution law between the first and last vertex of the spine.
:param R1:
:type R1: float
:param R2:
:type R2: float
:param E:
:type E: TopoDS_Edge &
:rtype: None
") Add;
void Add (const Standard_Real R1,const Standard_Real R2,const TopoDS_Edge & E);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds a fillet description in the builder - builds a contour of tangent edges, - sest the radius evolution law.
:param L:
:type L: Handle_Law_Function &
:param E:
:type E: TopoDS_Edge &
:rtype: None
") Add;
void Add (const Handle_Law_Function & L,const TopoDS_Edge & E);
%feature("compactdefaultargs") Add;
%feature("autodoc", " * Adds a fillet description in the builder - builds a contour of tangent edges, - sets the radius evolution law interpolating the values given in the array UandR : //! p2d.X() = relative parameter on the spine [0,1] p2d.Y() = value of the radius.
:param UandR:
:type UandR: TColgp_Array1OfPnt2d
:param E:
:type E: TopoDS_Edge &
:rtype: None
") Add;
void Add (const TColgp_Array1OfPnt2d & UandR,const TopoDS_Edge & E);
%feature("compactdefaultargs") SetRadius;
%feature("autodoc", " * Sets the parameters of the fillet along the contour of index IC generated using the Add function in the internal data structure of this algorithm, where Radius is the radius of the fillet.
:param Radius:
:type Radius: float
:param IC:
:type IC: int
:param IinC:
:type IinC: int
:rtype: None
") SetRadius;
void SetRadius (const Standard_Real Radius,const Standard_Integer IC,const Standard_Integer IinC);
%feature("compactdefaultargs") SetRadius;
%feature("autodoc", " * Sets the parameters of the fillet along the contour of index IC generated using the Add function in the internal data structure of this algorithm, where the radius of the fillet evolves according to a linear evolution law defined from R1 to R2, between the first and last vertices of the contour of index IC.
:param R1:
:type R1: float
:param R2:
:type R2: float
:param IC:
:type IC: int
:param IinC:
:type IinC: int
:rtype: None
") SetRadius;
void SetRadius (const Standard_Real R1,const Standard_Real R2,const Standard_Integer IC,const Standard_Integer IinC);
%feature("compactdefaultargs") SetRadius;
%feature("autodoc", " * Sets the parameters of the fillet along the contour of index IC generated using the Add function in the internal data structure of this algorithm, where the radius of the fillet evolves according to the evolution law L, between the first and last vertices of the contour of index IC.
:param L:
:type L: Handle_Law_Function &
:param IC:
:type IC: int
:param IinC:
:type IinC: int
:rtype: None
") SetRadius;
void SetRadius (const Handle_Law_Function & L,const Standard_Integer IC,const Standard_Integer IinC);
%feature("compactdefaultargs") SetRadius;
%feature("autodoc", " * Sets the parameters of the fillet along the contour of index IC generated using the Add function in the internal data structure of this algorithm, where the radius of the fillet evolves according to the evolution law which interpolates the set of parameter and radius pairs given in the array UandR as follows: - the X coordinate of a point in UandR defines a relative parameter on the contour (i.e. a parameter between 0 and 1), - the Y coordinate of a point in UandR gives the corresponding value of the radius, and the radius evolves between the first and last vertices of the contour of index IC.
:param UandR:
:type UandR: TColgp_Array1OfPnt2d
:param IC:
:type IC: int
:param IinC:
:type IinC: int
:rtype: None
") SetRadius;
void SetRadius (const TColgp_Array1OfPnt2d & UandR,const Standard_Integer IC,const Standard_Integer IinC);
%feature("compactdefaultargs") ResetContour;
%feature("autodoc", " * Erases the radius information on the contour of index IC in the internal data structure of this algorithm. Use the SetRadius function to reset this data. Warning Nothing is done if IC is outside the bounds of the table of contours.
:param IC:
:type IC: int
:rtype: None
") ResetContour;
void ResetContour (const Standard_Integer IC);
%feature("compactdefaultargs") IsConstant;
%feature("autodoc", " * Returns true if the radius of the fillet along the contour of index IC in the internal data structure of this algorithm is constant, Warning False is returned if IC is outside the bounds of the table of contours or if E does not belong to the contour of index IC.
:param IC:
:type IC: int
:rtype: bool
") IsConstant;
Standard_Boolean IsConstant (const Standard_Integer IC);
%feature("compactdefaultargs") Radius;
%feature("autodoc", " * Returns the radius of the fillet along the contour of index IC in the internal data structure of this algorithm Warning - Use this function only if the radius is constant. - -1. is returned if IC is outside the bounds of the table of contours or if E does not belong to the contour of index IC.
:param IC:
:type IC: int
:rtype: float
") Radius;
Standard_Real Radius (const Standard_Integer IC);
%feature("compactdefaultargs") IsConstant;
%feature("autodoc", " * Returns true if the radius of the fillet along the edge E of the contour of index IC in the internal data structure of this algorithm is constant. Warning False is returned if IC is outside the bounds of the table of contours or if E does not belong to the contour of index IC.
:param IC:
:type IC: int
:param E:
:type E: TopoDS_Edge &
:rtype: bool
") IsConstant;
Standard_Boolean IsConstant (const Standard_Integer IC,const TopoDS_Edge & E);
%feature("compactdefaultargs") Radius;
%feature("autodoc", " * Returns the radius of the fillet along the edge E of the contour of index IC in the internal data structure of this algorithm. Warning - Use this function only if the radius is constant. - -1 is returned if IC is outside the bounds of the table of contours or if E does not belong to the contour of index IC.
:param IC:
:type IC: int
:param E:
:type E: TopoDS_Edge &
:rtype: float
") Radius;
Standard_Real Radius (const Standard_Integer IC,const TopoDS_Edge & E);
%feature("compactdefaultargs") SetRadius;
%feature("autodoc", " * Assigns Radius as the radius of the fillet on the edge E
:param Radius:
:type Radius: float
:param IC:
:type IC: int
:param E:
:type E: TopoDS_Edge &
:rtype: None
") SetRadius;
void SetRadius (const Standard_Real Radius,const Standard_Integer IC,const TopoDS_Edge & E);
%feature("compactdefaultargs") SetRadius;
%feature("autodoc", " :param Radius:
:type Radius: float
:param IC:
:type IC: int
:param V:
:type V: TopoDS_Vertex &
:rtype: None
") SetRadius;
void SetRadius (const Standard_Real Radius,const Standard_Integer IC,const TopoDS_Vertex & V);
%feature("compactdefaultargs") GetBounds;
%feature("autodoc", " :param IC:
:type IC: int
:param E:
:type E: TopoDS_Edge &
:param F:
:type F: float &
:param L:
:type L: float &
:rtype: bool
") GetBounds;
Standard_Boolean GetBounds (const Standard_Integer IC,const TopoDS_Edge & E,Standard_Real &OutValue,Standard_Real &OutValue);
%feature("compactdefaultargs") GetLaw;
%feature("autodoc", " :param IC:
:type IC: int
:param E:
:type E: TopoDS_Edge &
:rtype: Handle_Law_Function
") GetLaw;
Handle_Law_Function GetLaw (const Standard_Integer IC,const TopoDS_Edge & E);
%feature("compactdefaultargs") SetLaw;
%feature("autodoc", " :param IC:
:type IC: int
:param E:
:type E: TopoDS_Edge &
:param L:
:type L: Handle_Law_Function &
:rtype: None
") SetLaw;
void SetLaw (const Standard_Integer IC,const TopoDS_Edge & E,const Handle_Law_Function & L);
%feature("compactdefaultargs") SetFilletShape;
%feature("autodoc", " * Assigns FShape as the type of fillet shape built by this algorithm.
:param FShape:
:type FShape: ChFi3d_FilletShape
:rtype: None
") SetFilletShape;
void SetFilletShape (const ChFi3d_FilletShape FShape);