]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/BRepAlgoAPI_BooleanOperation.java
Updated OpenCASCADE to 7.3.0
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / BRepAlgoAPI_BooleanOperation.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 BRepAlgoAPI_BooleanOperation extends BRepBuilderAPI_MakeShape {
12   private transient long swigCPtr;
13
14   protected BRepAlgoAPI_BooleanOperation(long cPtr, boolean cMemoryOwn) {
15     super(OccJavaJNI.BRepAlgoAPI_BooleanOperation_SWIGUpcast(cPtr), cMemoryOwn);
16     swigCPtr = cPtr;
17   }
18
19   protected static long getCPtr(BRepAlgoAPI_BooleanOperation 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_BRepAlgoAPI_BooleanOperation(swigCPtr);
32       }
33       swigCPtr = 0;
34     }
35     super.delete();
36   }
37
38   public TopoDS_Shape[] modified(TopoDS_Shape aS) {
39         return TopoDS_Shape.cArrayWrap(OccJavaJNI.BRepAlgoAPI_BooleanOperation_modified(swigCPtr, this, TopoDS_Shape.getCPtr(aS), aS));
40 }
41
42   public boolean isDeleted(TopoDS_Shape aS) {
43         return OccJavaJNI.BRepAlgoAPI_BooleanOperation_isDeleted(swigCPtr, this, TopoDS_Shape.getCPtr(aS), aS);
44 }
45
46   public TopoDS_Shape[] generated(TopoDS_Shape S) {
47         return TopoDS_Shape.cArrayWrap(OccJavaJNI.BRepAlgoAPI_BooleanOperation_generated(swigCPtr, this, TopoDS_Shape.getCPtr(S), S));
48 }
49
50   public boolean hasModified() {
51         return OccJavaJNI.BRepAlgoAPI_BooleanOperation_hasModified(swigCPtr, this);
52 }
53
54   public boolean hasGenerated() {
55         return OccJavaJNI.BRepAlgoAPI_BooleanOperation_hasGenerated(swigCPtr, this);
56 }
57
58   public boolean hasDeleted() {
59         return OccJavaJNI.BRepAlgoAPI_BooleanOperation_hasDeleted(swigCPtr, this);
60 }
61
62 }