]> gerrit.simantics Code Review - simantics/3d.git/blob - org.jcae.opencascade/src-java/org/jcae/opencascade/jni/GC_MakeSegment.java
Remove dependencies on log4j
[simantics/3d.git] / org.jcae.opencascade / src-java / org / jcae / opencascade / jni / GC_MakeSegment.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 GC_MakeSegment extends GC_Root {
12   private transient long swigCPtr;
13
14   protected GC_MakeSegment(long cPtr, boolean cMemoryOwn) {
15     super(OccJavaJNI.GC_MakeSegment_SWIGUpcast(cPtr), cMemoryOwn);
16     swigCPtr = cPtr;
17   }
18
19   protected static long getCPtr(GC_MakeSegment 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_GC_MakeSegment(swigCPtr);
32       }
33       swigCPtr = 0;
34     }
35     super.delete();
36   }
37
38   public GC_MakeSegment(double[] P1, double[] P2) {
39     this(OccJavaJNI.new_GC_MakeSegment__SWIG_0(P1, P2), true);
40   }
41
42   public GC_MakeSegment(GP_Lin Line, double U1, double U2) {
43     this(OccJavaJNI.new_GC_MakeSegment__SWIG_1(GP_Lin.getCPtr(Line), Line, U1, U2), true);
44   }
45
46   public GC_MakeSegment(GP_Lin Line, double[] Point, double Ulast) {
47     this(OccJavaJNI.new_GC_MakeSegment__SWIG_2(GP_Lin.getCPtr(Line), Line, Point, Ulast), true);
48   }
49
50   public GC_MakeSegment(GP_Lin Line, double[] P1, double[] P2) {
51     this(OccJavaJNI.new_GC_MakeSegment__SWIG_3(GP_Lin.getCPtr(Line), Line, P1, P2), true);
52   }
53
54   public Geom_TrimmedCurve value() {
55     return new Geom_TrimmedCurve(OccJavaJNI.GC_MakeSegment_value(swigCPtr, this), false);
56   }
57
58 }