OSDN Git Service

Initial checkin of gdx-bullet implementation using SWIG. gdx Vector3, Matrix3, and
[mikumikustudio/libgdx-mikumikustudio.git] / extensions / gdx-bullet / jni / swig-src / com / badlogic / gdx / physics / bullet / btGjkConvexCast.java
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 2.0.4
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 com.badlogic.gdx.physics.bullet;
10
11 import com.badlogic.gdx.utils.SharedLibraryLoader;
12 import com.badlogic.gdx.math.Vector3;
13 import com.badlogic.gdx.math.Quaternion;
14 import com.badlogic.gdx.math.Matrix3;
15
16 public class btGjkConvexCast extends btConvexCast {
17   private long swigCPtr;
18
19   public btGjkConvexCast(long cPtr, boolean cMemoryOwn) {
20     super(gdxBulletJNI.btGjkConvexCast_SWIGUpcast(cPtr), cMemoryOwn);
21     swigCPtr = cPtr;
22   }
23
24   public static long getCPtr(btGjkConvexCast obj) {
25     return (obj == null) ? 0 : obj.swigCPtr;
26   }
27
28   protected void finalize() {
29     delete();
30   }
31
32   public synchronized void delete() {
33     if (swigCPtr != 0) {
34       if (swigCMemOwn) {
35         swigCMemOwn = false;
36         gdxBulletJNI.delete_btGjkConvexCast(swigCPtr);
37       }
38       swigCPtr = 0;
39     }
40     super.delete();
41   }
42
43   static {
44     new SharedLibraryLoader().load("gdx-bullet");
45   }
46
47   public btGjkConvexCast(btConvexShape convexA, btConvexShape convexB, SWIGTYPE_p_btSimplexSolverInterface simplexSolver) {
48     this(gdxBulletJNI.new_btGjkConvexCast(btConvexShape.getCPtr(convexA), convexA, btConvexShape.getCPtr(convexB), convexB, SWIGTYPE_p_btSimplexSolverInterface.getCPtr(simplexSolver)), true);
49   }
50
51 }