]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/Bnd_Box.java
Avoid extra write transactions when opening Plant3D editor
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / Bnd_Box.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 Bnd_Box {
12   private transient long swigCPtr;
13   protected transient boolean swigCMemOwn;
14
15   protected Bnd_Box(long cPtr, boolean cMemoryOwn) {
16     swigCMemOwn = cMemoryOwn;
17     swigCPtr = cPtr;
18   }
19
20   protected static long getCPtr(Bnd_Box obj) {
21     return (obj == null) ? 0 : obj.swigCPtr;
22   }
23
24   protected void finalize() {
25     delete();
26   }
27
28   public synchronized void delete() {
29     if (swigCPtr != 0) {
30       if (swigCMemOwn) {
31         swigCMemOwn = false;
32         OccJavaJNI.delete_Bnd_Box(swigCPtr);
33       }
34       swigCPtr = 0;
35     }
36   }
37
38     /**
39      * Return the array { Xmin, Ymin, Zmin, Xmax, Ymax, Zmax }
40      */ 
41         public double[] get()
42         {
43                 double[] toReturn=new double[6];
44                 get(toReturn);
45                 return toReturn;
46         }
47
48   public Bnd_Box() {
49     this(OccJavaJNI.new_Bnd_Box(), true);
50   }
51
52   public boolean isVoid() {
53         return OccJavaJNI.Bnd_Box_isVoid(swigCPtr, this);
54 }
55
56   public void get(double[] box) {
57     OccJavaJNI.Bnd_Box_get(swigCPtr, this, box);
58   }
59
60 }