]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/BRepBuilderAPI_MakeShell.java
Updated OpenCASCADE to 7.3.0
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / BRepBuilderAPI_MakeShell.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_MakeShell extends BRepBuilderAPI_MakeShape {
12   private transient long swigCPtr;
13
14   protected BRepBuilderAPI_MakeShell(long cPtr, boolean cMemoryOwn) {
15     super(OccJavaJNI.BRepBuilderAPI_MakeShell_SWIGUpcast(cPtr), cMemoryOwn);
16     swigCPtr = cPtr;
17   }
18
19   protected static long getCPtr(BRepBuilderAPI_MakeShell 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_MakeShell(swigCPtr);
32       }
33       swigCPtr = 0;
34     }
35     super.delete();
36   }
37
38   public BRepBuilderAPI_MakeShell() {
39     this(OccJavaJNI.new_BRepBuilderAPI_MakeShell__SWIG_0(), true);
40   }
41
42   public BRepBuilderAPI_MakeShell(Geom_Surface S, boolean Segment) {
43     this(OccJavaJNI.new_BRepBuilderAPI_MakeShell__SWIG_1(Geom_Surface.getCPtr(S), S, Segment), true);
44   }
45
46   public BRepBuilderAPI_MakeShell(Geom_Surface S) {
47     this(OccJavaJNI.new_BRepBuilderAPI_MakeShell__SWIG_2(Geom_Surface.getCPtr(S), S), true);
48   }
49
50   public BRepBuilderAPI_MakeShell(Geom_Surface S, double UMin, double UMax, double VMin, double VMax, boolean Segment) {
51     this(OccJavaJNI.new_BRepBuilderAPI_MakeShell__SWIG_3(Geom_Surface.getCPtr(S), S, UMin, UMax, VMin, VMax, Segment), true);
52   }
53
54   public BRepBuilderAPI_MakeShell(Geom_Surface S, double UMin, double UMax, double VMin, double VMax) {
55     this(OccJavaJNI.new_BRepBuilderAPI_MakeShell__SWIG_4(Geom_Surface.getCPtr(S), S, UMin, UMax, VMin, VMax), true);
56   }
57
58   public void init(Geom_Surface S, double UMin, double UMax, double VMin, double VMax, boolean Segment) {
59     OccJavaJNI.BRepBuilderAPI_MakeShell_init__SWIG_0(swigCPtr, this, Geom_Surface.getCPtr(S), S, UMin, UMax, VMin, VMax, Segment);
60   }
61
62   public void init(Geom_Surface S, double UMin, double UMax, double VMin, double VMax) {
63     OccJavaJNI.BRepBuilderAPI_MakeShell_init__SWIG_1(swigCPtr, this, Geom_Surface.getCPtr(S), S, UMin, UMax, VMin, VMax);
64   }
65
66   public boolean isDone() {
67         return OccJavaJNI.BRepBuilderAPI_MakeShell_isDone(swigCPtr, this);
68 }
69
70   public SWIGTYPE_p_BRepBuilderAPI_ShellError error() {
71     return new SWIGTYPE_p_BRepBuilderAPI_ShellError(OccJavaJNI.BRepBuilderAPI_MakeShell_error(swigCPtr, this), true);
72   }
73
74   public TopoDS_Shell Shell() {
75     return new TopoDS_Shell(OccJavaJNI.BRepBuilderAPI_MakeShell_Shell(swigCPtr, this), false);
76   }
77
78 }