]> gerrit.simantics Code Review - simantics/3d.git/blob - BRepOffsetAPI_Sewing.java
3a2c6b49715f0be2aebd003246558a4434ff5686
[simantics/3d.git] / BRepOffsetAPI_Sewing.java
1 package org.jcae.opencascade.jni;
2
3 /**
4  * This class seems be deprecated in Opencascade 6.2
5  * @deprecated use BRepBuilderAPI_Sewing
6  */
7 public class BRepOffsetAPI_Sewing extends BRepBuilderAPI_Sewing
8 {
9         /**
10          * @deprecated use BRepBuilderAPI_Sewing
11          */
12         public BRepOffsetAPI_Sewing(double tolerance, boolean option, boolean cutting, boolean nonmanifold) {
13                 super(tolerance, option, cutting, nonmanifold);
14         }
15
16         /**
17          * @deprecated use BRepBuilderAPI_Sewing
18          */
19         public BRepOffsetAPI_Sewing(double tolerance, boolean option, boolean cutting) {
20                 super(tolerance, option, cutting);
21         }
22
23         /**
24          * @deprecated use BRepBuilderAPI_Sewing
25          */
26         public BRepOffsetAPI_Sewing(double tolerance, boolean option) {
27                 super(tolerance, option);
28         }
29
30         /**
31          * @deprecated use BRepBuilderAPI_Sewing
32          */
33         public BRepOffsetAPI_Sewing(double tolerance) {
34                 super(tolerance);
35         }
36
37         /**
38          * @deprecated use BRepBuilderAPI_Sewing
39          */
40         public BRepOffsetAPI_Sewing() {
41         }
42 }