forked from tpaviot/pythonocc-core
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBRep.i
More file actions
3123 lines (2872 loc) · 97.8 KB
/
BRep.i
File metadata and controls
3123 lines (2872 loc) · 97.8 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 BREPDOCSTRING
"This package describes a Boundary Representation
Data Structure inherited from the abstract
Topology defined in the TopoDS package. The
geometric data are provided by the Geom and Geom2d
packages.
The TVertex, TEdge, and TFace are redefined in
this package to add geometric information.
-Level : Public
All methods of all classes will be public.
"
%enddef
%module (package="OCC.Core", docstring=BREPDOCSTRING) BRep
#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 BRep_headers.i
/* typedefs */
/* end typedefs declaration */
/* public enums */
/* end public enums declaration */
%wrap_handle(BRep_CurveRepresentation)
%wrap_handle(BRep_ListNodeOfListOfCurveRepresentation)
%wrap_handle(BRep_ListNodeOfListOfPointRepresentation)
%wrap_handle(BRep_PointRepresentation)
%wrap_handle(BRep_TEdge)
%wrap_handle(BRep_TFace)
%wrap_handle(BRep_TVertex)
%wrap_handle(BRep_CurveOn2Surfaces)
%wrap_handle(BRep_GCurve)
%wrap_handle(BRep_PointOnCurve)
%wrap_handle(BRep_PointsOnSurface)
%wrap_handle(BRep_Polygon3D)
%wrap_handle(BRep_PolygonOnSurface)
%wrap_handle(BRep_PolygonOnTriangulation)
%wrap_handle(BRep_Curve3D)
%wrap_handle(BRep_CurveOnSurface)
%wrap_handle(BRep_PointOnCurveOnSurface)
%wrap_handle(BRep_PointOnSurface)
%wrap_handle(BRep_PolygonOnClosedSurface)
%wrap_handle(BRep_PolygonOnClosedTriangulation)
%wrap_handle(BRep_CurveOnClosedSurface)
class BRep_Builder : public TopoDS_Builder {
public:
%feature("compactdefaultargs") MakeFace;
%feature("autodoc", " * Makes an undefined Face.
:param F:
:type F: TopoDS_Face &
:rtype: None
") MakeFace;
void MakeFace (TopoDS_Face & F);
%feature("compactdefaultargs") MakeFace;
%feature("autodoc", " * Makes a Face with a surface.
:param F:
:type F: TopoDS_Face &
:param S:
:type S: Handle_Geom_Surface &
:param Tol:
:type Tol: float
:rtype: None
") MakeFace;
void MakeFace (TopoDS_Face & F,const Handle_Geom_Surface & S,const Standard_Real Tol);
%feature("compactdefaultargs") MakeFace;
%feature("autodoc", " * Makes a Face with a surface and a location.
:param F:
:type F: TopoDS_Face &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:rtype: None
") MakeFace;
void MakeFace (TopoDS_Face & F,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real Tol);
%feature("compactdefaultargs") MakeFace;
%feature("autodoc", " * Makes a Face with a triangulation. The triangulation is in the same reference system than the TFace.
:param F:
:type F: TopoDS_Face &
:param T:
:type T: Handle_Poly_Triangulation &
:rtype: None
") MakeFace;
void MakeFace (TopoDS_Face & F,const Handle_Poly_Triangulation & T);
%feature("compactdefaultargs") UpdateFace;
%feature("autodoc", " * Updates the face F using the tolerance value Tol, surface S and location Location.
:param F:
:type F: TopoDS_Face &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:rtype: None
") UpdateFace;
void UpdateFace (const TopoDS_Face & F,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateFace;
%feature("autodoc", " * Changes a face triangulation. //! A null Triangulation removes the triangulation.
:param F:
:type F: TopoDS_Face &
:param T:
:type T: Handle_Poly_Triangulation &
:rtype: None
") UpdateFace;
void UpdateFace (const TopoDS_Face & F,const Handle_Poly_Triangulation & T);
%feature("compactdefaultargs") UpdateFace;
%feature("autodoc", " * Updates the face Tolerance.
:param F:
:type F: TopoDS_Face &
:param Tol:
:type Tol: float
:rtype: None
") UpdateFace;
void UpdateFace (const TopoDS_Face & F,const Standard_Real Tol);
%feature("compactdefaultargs") NaturalRestriction;
%feature("autodoc", " * Sets the NaturalRestriction flag of the face.
:param F:
:type F: TopoDS_Face &
:param N:
:type N: bool
:rtype: None
") NaturalRestriction;
void NaturalRestriction (const TopoDS_Face & F,const Standard_Boolean N);
%feature("compactdefaultargs") MakeEdge;
%feature("autodoc", " * Makes an undefined Edge (no geometry).
:param E:
:type E: TopoDS_Edge &
:rtype: None
") MakeEdge;
void MakeEdge (TopoDS_Edge & E);
%feature("compactdefaultargs") MakeEdge;
%feature("autodoc", " * Makes an Edge with a curve.
:param E:
:type E: TopoDS_Edge &
:param C:
:type C: Handle_Geom_Curve &
:param Tol:
:type Tol: float
:rtype: None
") MakeEdge;
void MakeEdge (TopoDS_Edge & E,const Handle_Geom_Curve & C,const Standard_Real Tol);
%feature("compactdefaultargs") MakeEdge;
%feature("autodoc", " * Makes an Edge with a curve and a location.
:param E:
:type E: TopoDS_Edge &
:param C:
:type C: Handle_Geom_Curve &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:rtype: None
") MakeEdge;
void MakeEdge (TopoDS_Edge & E,const Handle_Geom_Curve & C,const TopLoc_Location & L,const Standard_Real Tol);
%feature("compactdefaultargs") MakeEdge;
%feature("autodoc", " * Makes an Edge with a polygon 3d.
:param E:
:type E: TopoDS_Edge &
:param P:
:type P: Handle_Poly_Polygon3D &
:rtype: None
") MakeEdge;
void MakeEdge (TopoDS_Edge & E,const Handle_Poly_Polygon3D & P);
%feature("compactdefaultargs") MakeEdge;
%feature("autodoc", " * makes an Edge polygon on Triangulation.
:param E:
:type E: TopoDS_Edge &
:param N:
:type N: Handle_Poly_PolygonOnTriangulation &
:param T:
:type T: Handle_Poly_Triangulation &
:rtype: None
") MakeEdge;
void MakeEdge (TopoDS_Edge & E,const Handle_Poly_PolygonOnTriangulation & N,const Handle_Poly_Triangulation & T);
%feature("compactdefaultargs") MakeEdge;
%feature("autodoc", " * makes an Edge polygon on Triangulation.
:param E:
:type E: TopoDS_Edge &
:param N:
:type N: Handle_Poly_PolygonOnTriangulation &
:param T:
:type T: Handle_Poly_Triangulation &
:param L:
:type L: TopLoc_Location &
:rtype: None
") MakeEdge;
void MakeEdge (TopoDS_Edge & E,const Handle_Poly_PolygonOnTriangulation & N,const Handle_Poly_Triangulation & T,const TopLoc_Location & L);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets a 3D curve for the edge. If <C> is a null handle, remove any existing 3d curve.
:param E:
:type E: TopoDS_Edge &
:param C:
:type C: Handle_Geom_Curve &
:param Tol:
:type Tol: float
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom_Curve & C,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets a 3D curve for the edge. If <C> is a null handle, remove any existing 3d curve.
:param E:
:type E: TopoDS_Edge &
:param C:
:type C: Handle_Geom_Curve &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom_Curve & C,const TopLoc_Location & L,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets a pcurve for the edge on the face. If <C> is a null handle, remove any existing pcurve.
:param E:
:type E: TopoDS_Edge &
:param C:
:type C: Handle_Geom2d_Curve &
:param F:
:type F: TopoDS_Face &
:param Tol:
:type Tol: float
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom2d_Curve & C,const TopoDS_Face & F,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets pcurves for the edge on the closed face. If <C1> or <C2> is a null handle, remove any existing pcurve.
:param E:
:type E: TopoDS_Edge &
:param C1:
:type C1: Handle_Geom2d_Curve &
:param C2:
:type C2: Handle_Geom2d_Curve &
:param F:
:type F: TopoDS_Face &
:param Tol:
:type Tol: float
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom2d_Curve & C1,const Handle_Geom2d_Curve & C2,const TopoDS_Face & F,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets a pcurve for the edge on the face. If <C> is a null handle, remove any existing pcurve.
:param E:
:type E: TopoDS_Edge &
:param C:
:type C: Handle_Geom2d_Curve &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom2d_Curve & C,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets a pcurve for the edge on the face. If <C> is a null handle, remove any existing pcurve. Sets UV bounds for curve repsentation
:param E:
:type E: TopoDS_Edge &
:param C:
:type C: Handle_Geom2d_Curve &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:param Pf:
:type Pf: gp_Pnt2d
:param Pl:
:type Pl: gp_Pnt2d
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom2d_Curve & C,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real Tol,const gp_Pnt2d & Pf,const gp_Pnt2d & Pl);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets pcurves for the edge on the closed surface. <C1> or <C2> is a null handle, remove any existing pcurve.
:param E:
:type E: TopoDS_Edge &
:param C1:
:type C1: Handle_Geom2d_Curve &
:param C2:
:type C2: Handle_Geom2d_Curve &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom2d_Curve & C1,const Handle_Geom2d_Curve & C2,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Sets pcurves for the edge on the closed surface. <C1> or <C2> is a null handle, remove any existing pcurve. Sets UV bounds for curve repsentation
:param E:
:type E: TopoDS_Edge &
:param C1:
:type C1: Handle_Geom2d_Curve &
:param C2:
:type C2: Handle_Geom2d_Curve &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:param Pf:
:type Pf: gp_Pnt2d
:param Pl:
:type Pl: gp_Pnt2d
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Geom2d_Curve & C1,const Handle_Geom2d_Curve & C2,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real Tol,const gp_Pnt2d & Pf,const gp_Pnt2d & Pl);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes an Edge 3D polygon. A null Polygon removes the 3d Polygon.
:param E:
:type E: TopoDS_Edge &
:param P:
:type P: Handle_Poly_Polygon3D &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_Polygon3D & P);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes an Edge 3D polygon. A null Polygon removes the 3d Polygon.
:param E:
:type E: TopoDS_Edge &
:param P:
:type P: Handle_Poly_Polygon3D &
:param L:
:type L: TopLoc_Location &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_Polygon3D & P,const TopLoc_Location & L);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes an Edge polygon on Triangulation.
:param E:
:type E: TopoDS_Edge &
:param N:
:type N: Handle_Poly_PolygonOnTriangulation &
:param T:
:type T: Handle_Poly_Triangulation &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_PolygonOnTriangulation & N,const Handle_Poly_Triangulation & T);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes an Edge polygon on Triangulation.
:param E:
:type E: TopoDS_Edge &
:param N:
:type N: Handle_Poly_PolygonOnTriangulation &
:param T:
:type T: Handle_Poly_Triangulation &
:param L:
:type L: TopLoc_Location &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_PolygonOnTriangulation & N,const Handle_Poly_Triangulation & T,const TopLoc_Location & L);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes an Edge polygon on Triangulation.
:param E:
:type E: TopoDS_Edge &
:param N1:
:type N1: Handle_Poly_PolygonOnTriangulation &
:param N2:
:type N2: Handle_Poly_PolygonOnTriangulation &
:param T:
:type T: Handle_Poly_Triangulation &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_PolygonOnTriangulation & N1,const Handle_Poly_PolygonOnTriangulation & N2,const Handle_Poly_Triangulation & T);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes an Edge polygon on Triangulation.
:param E:
:type E: TopoDS_Edge &
:param N1:
:type N1: Handle_Poly_PolygonOnTriangulation &
:param N2:
:type N2: Handle_Poly_PolygonOnTriangulation &
:param T:
:type T: Handle_Poly_Triangulation &
:param L:
:type L: TopLoc_Location &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_PolygonOnTriangulation & N1,const Handle_Poly_PolygonOnTriangulation & N2,const Handle_Poly_Triangulation & T,const TopLoc_Location & L);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes Edge polygon on a face.
:param E:
:type E: TopoDS_Edge &
:param P:
:type P: Handle_Poly_Polygon2D &
:param S:
:type S: TopoDS_Face &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_Polygon2D & P,const TopoDS_Face & S);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes Edge polygon on a face.
:param E:
:type E: TopoDS_Edge &
:param P:
:type P: Handle_Poly_Polygon2D &
:param S:
:type S: Handle_Geom_Surface &
:param T:
:type T: TopLoc_Location &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_Polygon2D & P,const Handle_Geom_Surface & S,const TopLoc_Location & T);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes Edge polygons on a face. //! A null Polygon removes the 2d Polygon.
:param E:
:type E: TopoDS_Edge &
:param P1:
:type P1: Handle_Poly_Polygon2D &
:param P2:
:type P2: Handle_Poly_Polygon2D &
:param S:
:type S: TopoDS_Face &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_Polygon2D & P1,const Handle_Poly_Polygon2D & P2,const TopoDS_Face & S);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Changes Edge polygons on a face. //! A null Polygon removes the 2d Polygon.
:param E:
:type E: TopoDS_Edge &
:param P1:
:type P1: Handle_Poly_Polygon2D &
:param P2:
:type P2: Handle_Poly_Polygon2D &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Handle_Poly_Polygon2D & P1,const Handle_Poly_Polygon2D & P2,const Handle_Geom_Surface & S,const TopLoc_Location & L);
%feature("compactdefaultargs") UpdateEdge;
%feature("autodoc", " * Updates the edge tolerance.
:param E:
:type E: TopoDS_Edge &
:param Tol:
:type Tol: float
:rtype: None
") UpdateEdge;
void UpdateEdge (const TopoDS_Edge & E,const Standard_Real Tol);
%feature("compactdefaultargs") Continuity;
%feature("autodoc", " * Sets the geometric continuity on the edge.
:param E:
:type E: TopoDS_Edge &
:param F1:
:type F1: TopoDS_Face &
:param F2:
:type F2: TopoDS_Face &
:param C:
:type C: GeomAbs_Shape
:rtype: None
") Continuity;
void Continuity (const TopoDS_Edge & E,const TopoDS_Face & F1,const TopoDS_Face & F2,const GeomAbs_Shape C);
%feature("compactdefaultargs") Continuity;
%feature("autodoc", " * Sets the geometric continuity on the edge.
:param E:
:type E: TopoDS_Edge &
:param S1:
:type S1: Handle_Geom_Surface &
:param S2:
:type S2: Handle_Geom_Surface &
:param L1:
:type L1: TopLoc_Location &
:param L2:
:type L2: TopLoc_Location &
:param C:
:type C: GeomAbs_Shape
:rtype: None
") Continuity;
void Continuity (const TopoDS_Edge & E,const Handle_Geom_Surface & S1,const Handle_Geom_Surface & S2,const TopLoc_Location & L1,const TopLoc_Location & L2,const GeomAbs_Shape C);
%feature("compactdefaultargs") SameParameter;
%feature("autodoc", " * Sets the same parameter flag for the edge <E>.
:param E:
:type E: TopoDS_Edge &
:param S:
:type S: bool
:rtype: None
") SameParameter;
void SameParameter (const TopoDS_Edge & E,const Standard_Boolean S);
%feature("compactdefaultargs") SameRange;
%feature("autodoc", " * Sets the same range flag for the edge <E>.
:param E:
:type E: TopoDS_Edge &
:param S:
:type S: bool
:rtype: None
") SameRange;
void SameRange (const TopoDS_Edge & E,const Standard_Boolean S);
%feature("compactdefaultargs") Degenerated;
%feature("autodoc", " * Sets the degenerated flag for the edge <E>.
:param E:
:type E: TopoDS_Edge &
:param D:
:type D: bool
:rtype: None
") Degenerated;
void Degenerated (const TopoDS_Edge & E,const Standard_Boolean D);
%feature("compactdefaultargs") Range;
%feature("autodoc", " * Sets the range of the 3d curve if Only3d=True, otherwise sets the range to all the representations
:param E:
:type E: TopoDS_Edge &
:param First:
:type First: float
:param Last:
:type Last: float
:param Only3d: default value is Standard_False
:type Only3d: bool
:rtype: None
") Range;
void Range (const TopoDS_Edge & E,const Standard_Real First,const Standard_Real Last,const Standard_Boolean Only3d = Standard_False);
%feature("compactdefaultargs") Range;
%feature("autodoc", " * Sets the range of the edge on the pcurve on the surface.
:param E:
:type E: TopoDS_Edge &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param First:
:type First: float
:param Last:
:type Last: float
:rtype: None
") Range;
void Range (const TopoDS_Edge & E,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real First,const Standard_Real Last);
%feature("compactdefaultargs") Range;
%feature("autodoc", " * Sets the range of the edge on the pcurve on the face.
:param E:
:type E: TopoDS_Edge &
:param F:
:type F: TopoDS_Face &
:param First:
:type First: float
:param Last:
:type Last: float
:rtype: None
") Range;
void Range (const TopoDS_Edge & E,const TopoDS_Face & F,const Standard_Real First,const Standard_Real Last);
%feature("compactdefaultargs") Transfert;
%feature("autodoc", " * Add to <Eout> the geometric representations of <Ein>.
:param Ein:
:type Ein: TopoDS_Edge &
:param Eout:
:type Eout: TopoDS_Edge &
:rtype: None
") Transfert;
void Transfert (const TopoDS_Edge & Ein,const TopoDS_Edge & Eout);
%feature("compactdefaultargs") MakeVertex;
%feature("autodoc", " * Makes an udefined vertex without geometry.
:param V:
:type V: TopoDS_Vertex &
:rtype: None
") MakeVertex;
void MakeVertex (TopoDS_Vertex & V);
%feature("compactdefaultargs") MakeVertex;
%feature("autodoc", " * Makes a vertex from a 3D point.
:param V:
:type V: TopoDS_Vertex &
:param P:
:type P: gp_Pnt
:param Tol:
:type Tol: float
:rtype: None
") MakeVertex;
void MakeVertex (TopoDS_Vertex & V,const gp_Pnt & P,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateVertex;
%feature("autodoc", " * Sets a 3D point on the vertex.
:param V:
:type V: TopoDS_Vertex &
:param P:
:type P: gp_Pnt
:param Tol:
:type Tol: float
:rtype: None
") UpdateVertex;
void UpdateVertex (const TopoDS_Vertex & V,const gp_Pnt & P,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateVertex;
%feature("autodoc", " * Sets the parameter for the vertex on the edge curves.
:param V:
:type V: TopoDS_Vertex &
:param P:
:type P: float
:param E:
:type E: TopoDS_Edge &
:param Tol:
:type Tol: float
:rtype: None
") UpdateVertex;
void UpdateVertex (const TopoDS_Vertex & V,const Standard_Real P,const TopoDS_Edge & E,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateVertex;
%feature("autodoc", " * Sets the parameter for the vertex on the edge pcurve on the face.
:param V:
:type V: TopoDS_Vertex &
:param P:
:type P: float
:param E:
:type E: TopoDS_Edge &
:param F:
:type F: TopoDS_Face &
:param Tol:
:type Tol: float
:rtype: None
") UpdateVertex;
void UpdateVertex (const TopoDS_Vertex & V,const Standard_Real P,const TopoDS_Edge & E,const TopoDS_Face & F,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateVertex;
%feature("autodoc", " * Sets the parameter for the vertex on the edge pcurve on the surface.
:param V:
:type V: TopoDS_Vertex &
:param P:
:type P: float
:param E:
:type E: TopoDS_Edge &
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:param Tol:
:type Tol: float
:rtype: None
") UpdateVertex;
void UpdateVertex (const TopoDS_Vertex & V,const Standard_Real P,const TopoDS_Edge & E,const Handle_Geom_Surface & S,const TopLoc_Location & L,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateVertex;
%feature("autodoc", " * Sets the parameters for the vertex on the face.
:param Ve:
:type Ve: TopoDS_Vertex &
:param U:
:type U: float
:param V:
:type V: float
:param F:
:type F: TopoDS_Face &
:param Tol:
:type Tol: float
:rtype: None
") UpdateVertex;
void UpdateVertex (const TopoDS_Vertex & Ve,const Standard_Real U,const Standard_Real V,const TopoDS_Face & F,const Standard_Real Tol);
%feature("compactdefaultargs") UpdateVertex;
%feature("autodoc", " * Updates the vertex tolerance.
:param V:
:type V: TopoDS_Vertex &
:param Tol:
:type Tol: float
:rtype: None
") UpdateVertex;
void UpdateVertex (const TopoDS_Vertex & V,const Standard_Real Tol);
%feature("compactdefaultargs") Transfert;
%feature("autodoc", " * Transfert the parameters of Vin on Ein as the parameter of Vout on Eout.
:param Ein:
:type Ein: TopoDS_Edge &
:param Eout:
:type Eout: TopoDS_Edge &
:param Vin:
:type Vin: TopoDS_Vertex &
:param Vout:
:type Vout: TopoDS_Vertex &
:rtype: None
") Transfert;
void Transfert (const TopoDS_Edge & Ein,const TopoDS_Edge & Eout,const TopoDS_Vertex & Vin,const TopoDS_Vertex & Vout);
};
%extend BRep_Builder {
%pythoncode {
__repr__ = _dumps_object
}
};
%nodefaultctor BRep_CurveRepresentation;
class BRep_CurveRepresentation : public MMgt_TShared {
public:
%feature("compactdefaultargs") IsCurve3D;
%feature("autodoc", " * A 3D curve representation.
:rtype: bool
") IsCurve3D;
virtual Standard_Boolean IsCurve3D ();
%feature("compactdefaultargs") IsCurveOnSurface;
%feature("autodoc", " * A curve in the parametric space of a surface.
:rtype: bool
") IsCurveOnSurface;
virtual Standard_Boolean IsCurveOnSurface ();
%feature("compactdefaultargs") IsRegularity;
%feature("autodoc", " * A continuity between two surfaces.
:rtype: bool
") IsRegularity;
virtual Standard_Boolean IsRegularity ();
%feature("compactdefaultargs") IsCurveOnClosedSurface;
%feature("autodoc", " * A curve with two parametric curves on the same surface.
:rtype: bool
") IsCurveOnClosedSurface;
virtual Standard_Boolean IsCurveOnClosedSurface ();
%feature("compactdefaultargs") IsCurveOnSurface;
%feature("autodoc", " * Is it a curve in the parametric space of <S> with location <L>.
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:rtype: bool
") IsCurveOnSurface;
virtual Standard_Boolean IsCurveOnSurface (const Handle_Geom_Surface & S,const TopLoc_Location & L);
%feature("compactdefaultargs") IsRegularity;
%feature("autodoc", " * Is it a regularity between <S1> and <S2> with location <L1> and <L2>.
:param S1:
:type S1: Handle_Geom_Surface &
:param S2:
:type S2: Handle_Geom_Surface &
:param L1:
:type L1: TopLoc_Location &
:param L2:
:type L2: TopLoc_Location &
:rtype: bool
") IsRegularity;
virtual Standard_Boolean IsRegularity (const Handle_Geom_Surface & S1,const Handle_Geom_Surface & S2,const TopLoc_Location & L1,const TopLoc_Location & L2);
%feature("compactdefaultargs") IsPolygon3D;
%feature("autodoc", " * A 3D polygon representation.
:rtype: bool
") IsPolygon3D;
virtual Standard_Boolean IsPolygon3D ();
%feature("compactdefaultargs") IsPolygonOnTriangulation;
%feature("autodoc", " * A representation by an array of nodes on a triangulation.
:rtype: bool
") IsPolygonOnTriangulation;
virtual Standard_Boolean IsPolygonOnTriangulation ();
%feature("compactdefaultargs") IsPolygonOnTriangulation;
%feature("autodoc", " * Is it a polygon in the definition of <T> with location <L>.
:param T:
:type T: Handle_Poly_Triangulation &
:param L:
:type L: TopLoc_Location &
:rtype: bool
") IsPolygonOnTriangulation;
virtual Standard_Boolean IsPolygonOnTriangulation (const Handle_Poly_Triangulation & T,const TopLoc_Location & L);
%feature("compactdefaultargs") IsPolygonOnClosedTriangulation;
%feature("autodoc", " * A representation by two arrays of nodes on a triangulation.
:rtype: bool
") IsPolygonOnClosedTriangulation;
virtual Standard_Boolean IsPolygonOnClosedTriangulation ();
%feature("compactdefaultargs") IsPolygonOnSurface;
%feature("autodoc", " * A polygon in the parametric space of a surface.
:rtype: bool
") IsPolygonOnSurface;
virtual Standard_Boolean IsPolygonOnSurface ();
%feature("compactdefaultargs") IsPolygonOnSurface;
%feature("autodoc", " * Is it a polygon in the parametric space of <S> with location <L>.
:param S:
:type S: Handle_Geom_Surface &
:param L:
:type L: TopLoc_Location &
:rtype: bool
") IsPolygonOnSurface;
virtual Standard_Boolean IsPolygonOnSurface (const Handle_Geom_Surface & S,const TopLoc_Location & L);
%feature("compactdefaultargs") IsPolygonOnClosedSurface;
%feature("autodoc", " * Two 2D polygon representations in the parametric space of a surface.
:rtype: bool
") IsPolygonOnClosedSurface;
virtual Standard_Boolean IsPolygonOnClosedSurface ();
%feature("compactdefaultargs") Location;
%feature("autodoc", " :rtype: TopLoc_Location
") Location;
const TopLoc_Location & Location ();
%feature("compactdefaultargs") Location;
%feature("autodoc", " :param L:
:type L: TopLoc_Location &
:rtype: None
") Location;
void Location (const TopLoc_Location & L);
%feature("compactdefaultargs") Curve3D;
%feature("autodoc", " :rtype: Handle_Geom_Curve
") Curve3D;
Handle_Geom_Curve Curve3D ();
%feature("compactdefaultargs") Curve3D;
%feature("autodoc", " :param C:
:type C: Handle_Geom_Curve &
:rtype: void
") Curve3D;
virtual void Curve3D (const Handle_Geom_Curve & C);
%feature("compactdefaultargs") Surface;
%feature("autodoc", " :rtype: Handle_Geom_Surface
") Surface;
Handle_Geom_Surface Surface ();
%feature("compactdefaultargs") PCurve;
%feature("autodoc", " :rtype: Handle_Geom2d_Curve
") PCurve;
Handle_Geom2d_Curve PCurve ();
%feature("compactdefaultargs") PCurve;
%feature("autodoc", " :param C:
:type C: Handle_Geom2d_Curve &
:rtype: void
") PCurve;
virtual void PCurve (const Handle_Geom2d_Curve & C);
%feature("compactdefaultargs") PCurve2;
%feature("autodoc", " :rtype: Handle_Geom2d_Curve
") PCurve2;
Handle_Geom2d_Curve PCurve2 ();
%feature("compactdefaultargs") PCurve2;
%feature("autodoc", " :param C:
:type C: Handle_Geom2d_Curve &
:rtype: void
") PCurve2;
virtual void PCurve2 (const Handle_Geom2d_Curve & C);
%feature("compactdefaultargs") Polygon3D;
%feature("autodoc", " :rtype: Handle_Poly_Polygon3D
") Polygon3D;
Handle_Poly_Polygon3D Polygon3D ();
%feature("compactdefaultargs") Polygon3D;
%feature("autodoc", " :param P:
:type P: Handle_Poly_Polygon3D &
:rtype: void
") Polygon3D;
virtual void Polygon3D (const Handle_Poly_Polygon3D & P);
%feature("compactdefaultargs") Polygon;
%feature("autodoc", " :rtype: Handle_Poly_Polygon2D
") Polygon;
Handle_Poly_Polygon2D Polygon ();
%feature("compactdefaultargs") Polygon;
%feature("autodoc", " :param P:
:type P: Handle_Poly_Polygon2D &
:rtype: void
") Polygon;
virtual void Polygon (const Handle_Poly_Polygon2D & P);
%feature("compactdefaultargs") Polygon2;
%feature("autodoc", " :rtype: Handle_Poly_Polygon2D
") Polygon2;
Handle_Poly_Polygon2D Polygon2 ();
%feature("compactdefaultargs") Polygon2;
%feature("autodoc", " :param P:
:type P: Handle_Poly_Polygon2D &
:rtype: void
") Polygon2;
virtual void Polygon2 (const Handle_Poly_Polygon2D & P);
%feature("compactdefaultargs") Triangulation;
%feature("autodoc", " :rtype: Handle_Poly_Triangulation
") Triangulation;
Handle_Poly_Triangulation Triangulation ();
%feature("compactdefaultargs") PolygonOnTriangulation;
%feature("autodoc", " :rtype: Handle_Poly_PolygonOnTriangulation
") PolygonOnTriangulation;
Handle_Poly_PolygonOnTriangulation PolygonOnTriangulation ();
%feature("compactdefaultargs") PolygonOnTriangulation;
%feature("autodoc", " :param P:
:type P: Handle_Poly_PolygonOnTriangulation &
:rtype: void
") PolygonOnTriangulation;
virtual void PolygonOnTriangulation (const Handle_Poly_PolygonOnTriangulation & P);
%feature("compactdefaultargs") PolygonOnTriangulation2;
%feature("autodoc", " :rtype: Handle_Poly_PolygonOnTriangulation
") PolygonOnTriangulation2;
Handle_Poly_PolygonOnTriangulation PolygonOnTriangulation2 ();
%feature("compactdefaultargs") PolygonOnTriangulation2;
%feature("autodoc", " :param P2:
:type P2: Handle_Poly_PolygonOnTriangulation &
:rtype: void
") PolygonOnTriangulation2;
virtual void PolygonOnTriangulation2 (const Handle_Poly_PolygonOnTriangulation & P2);
%feature("compactdefaultargs") Surface2;
%feature("autodoc", " :rtype: Handle_Geom_Surface
") Surface2;
Handle_Geom_Surface Surface2 ();
%feature("compactdefaultargs") Location2;
%feature("autodoc", " :rtype: TopLoc_Location
") Location2;
virtual const TopLoc_Location & Location2 ();
%feature("compactdefaultargs") Continuity;
%feature("autodoc", " :rtype: GeomAbs_Shape
") Continuity;
virtual const GeomAbs_Shape & Continuity ();
%feature("compactdefaultargs") Continuity;
%feature("autodoc", " :param C:
:type C: GeomAbs_Shape
:rtype: void
") Continuity;
virtual void Continuity (const GeomAbs_Shape C);
%feature("compactdefaultargs") Copy;
%feature("autodoc", " * Return a copy of this representation.
:rtype: Handle_BRep_CurveRepresentation
") Copy;
virtual Handle_BRep_CurveRepresentation Copy ();
};
%make_alias(BRep_CurveRepresentation)
%extend BRep_CurveRepresentation {
%pythoncode {
__repr__ = _dumps_object
}
};
%nodefaultctor BRep_ListIteratorOfListOfCurveRepresentation;
class BRep_ListIteratorOfListOfCurveRepresentation {
public:
%feature("compactdefaultargs") BRep_ListIteratorOfListOfCurveRepresentation;
%feature("autodoc", " :rtype: None
") BRep_ListIteratorOfListOfCurveRepresentation;
BRep_ListIteratorOfListOfCurveRepresentation ();