]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/BRepTools_Quilt.java
Updated OpenCASCADE to 7.3.0
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / BRepTools_Quilt.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 BRepTools_Quilt {
12   private transient long swigCPtr;
13   protected transient boolean swigCMemOwn;
14
15   protected BRepTools_Quilt(long cPtr, boolean cMemoryOwn) {
16     swigCMemOwn = cMemoryOwn;
17     swigCPtr = cPtr;
18   }
19
20   protected static long getCPtr(BRepTools_Quilt 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_BRepTools_Quilt(swigCPtr);
33       }
34       swigCPtr = 0;
35     }
36   }
37
38   public BRepTools_Quilt() {
39     this(OccJavaJNI.new_BRepTools_Quilt(), true);
40   }
41
42   public void bind(TopoDS_Edge Eold, TopoDS_Edge Enew) {
43     OccJavaJNI.BRepTools_Quilt_bind__SWIG_0(swigCPtr, this, TopoDS_Edge.getCPtr(Eold), Eold, TopoDS_Edge.getCPtr(Enew), Enew);
44   }
45
46   public void bind(TopoDS_Vertex Vold, TopoDS_Vertex Vnew) {
47     OccJavaJNI.BRepTools_Quilt_bind__SWIG_1(swigCPtr, this, TopoDS_Vertex.getCPtr(Vold), Vold, TopoDS_Vertex.getCPtr(Vnew), Vnew);
48   }
49
50   public void add(TopoDS_Shape S) {
51     OccJavaJNI.BRepTools_Quilt_add(swigCPtr, this, TopoDS_Shape.getCPtr(S), S);
52   }
53
54   public boolean isCopied(TopoDS_Shape S) {
55         return OccJavaJNI.BRepTools_Quilt_isCopied(swigCPtr, this, TopoDS_Shape.getCPtr(S), S);
56 }
57
58   public TopoDS_Shape copy(TopoDS_Shape S) {
59     long cPtr = OccJavaJNI.BRepTools_Quilt_copy(swigCPtr, this, TopoDS_Shape.getCPtr(S), S);
60     return (TopoDS_Shape)TopoDS_Shape.create(cPtr);
61 }
62
63   public TopoDS_Shape shells() {
64     long cPtr = OccJavaJNI.BRepTools_Quilt_shells(swigCPtr, this);
65     return (TopoDS_Shape)TopoDS_Shape.create(cPtr);
66 }
67
68 }