]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/BRepBuilderAPI_MakeSolid.java
Updated OpenCASCADE to 7.3.0
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / BRepBuilderAPI_MakeSolid.java
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 3.0.12
4  *
5  * Do not make changes to this file unless you know what you are doing--modify
6  * the SWIG interface file instead.
7  * ----------------------------------------------------------------------------- */
8
9 package org.jcae.opencascade.jni;
10
11 public class BRepBuilderAPI_MakeSolid extends BRepBuilderAPI_MakeShape {
12   private transient long swigCPtr;
13
14   protected BRepBuilderAPI_MakeSolid(long cPtr, boolean cMemoryOwn) {
15     super(OccJavaJNI.BRepBuilderAPI_MakeSolid_SWIGUpcast(cPtr), cMemoryOwn);
16     swigCPtr = cPtr;
17   }
18
19   protected static long getCPtr(BRepBuilderAPI_MakeSolid obj) {
20     return (obj == null) ? 0 : obj.swigCPtr;
21   }
22
23   protected void finalize() {
24     delete();
25   }
26
27   public synchronized void delete() {
28     if (swigCPtr != 0) {
29       if (swigCMemOwn) {
30         swigCMemOwn = false;
31         OccJavaJNI.delete_BRepBuilderAPI_MakeSolid(swigCPtr);
32       }
33       swigCPtr = 0;
34     }
35     super.delete();
36   }
37
38   public BRepBuilderAPI_MakeSolid() {
39     this(OccJavaJNI.new_BRepBuilderAPI_MakeSolid__SWIG_0(), true);
40   }
41
42   public BRepBuilderAPI_MakeSolid(TopoDS_CompSolid S) {
43     this(OccJavaJNI.new_BRepBuilderAPI_MakeSolid__SWIG_1(TopoDS_CompSolid.getCPtr(S), S), true);
44   }
45
46   public BRepBuilderAPI_MakeSolid(TopoDS_Shell S) {
47     this(OccJavaJNI.new_BRepBuilderAPI_MakeSolid__SWIG_2(TopoDS_Shell.getCPtr(S), S), true);
48   }
49
50   public BRepBuilderAPI_MakeSolid(TopoDS_Shell S1, TopoDS_Shell S2) {
51     this(OccJavaJNI.new_BRepBuilderAPI_MakeSolid__SWIG_3(TopoDS_Shell.getCPtr(S1), S1, TopoDS_Shell.getCPtr(S2), S2), true);
52   }
53
54   public BRepBuilderAPI_MakeSolid(TopoDS_Shell S1, TopoDS_Shell S2, TopoDS_Shell S3) {
55     this(OccJavaJNI.new_BRepBuilderAPI_MakeSolid__SWIG_4(TopoDS_Shell.getCPtr(S1), S1, TopoDS_Shell.getCPtr(S2), S2, TopoDS_Shell.getCPtr(S3), S3), true);
56   }
57
58   public BRepBuilderAPI_MakeSolid(TopoDS_Solid So) {
59     this(OccJavaJNI.new_BRepBuilderAPI_MakeSolid__SWIG_5(TopoDS_Solid.getCPtr(So), So), true);
60   }
61
62   public BRepBuilderAPI_MakeSolid(TopoDS_Solid So, TopoDS_Shell S) {
63     this(OccJavaJNI.new_BRepBuilderAPI_MakeSolid__SWIG_6(TopoDS_Solid.getCPtr(So), So, TopoDS_Shell.getCPtr(S), S), true);
64   }
65
66   public void add(TopoDS_Shell S) {
67     OccJavaJNI.BRepBuilderAPI_MakeSolid_add(swigCPtr, this, TopoDS_Shell.getCPtr(S), S);
68   }
69
70   public boolean isDone() {
71         return OccJavaJNI.BRepBuilderAPI_MakeSolid_isDone(swigCPtr, this);
72 }
73
74   public boolean isDeleted(TopoDS_Shape S) {
75         return OccJavaJNI.BRepBuilderAPI_MakeSolid_isDeleted(swigCPtr, this, TopoDS_Shape.getCPtr(S), S);
76 }
77
78 }