mirror of
https://github.com/openbabel/openbabel.git
synced 2026-07-31 16:47:57 -05:00
133 lines
3.5 KiB
Java
133 lines
3.5 KiB
Java
/* ----------------------------------------------------------------------------
|
|
* This file was automatically generated by SWIG (http://www.swig.org).
|
|
* Version 1.3.31
|
|
*
|
|
* Do not make changes to this file unless you know what you are doing--modify
|
|
* the SWIG interface file instead.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
|
|
public class vector3 {
|
|
private long swigCPtr;
|
|
protected boolean swigCMemOwn;
|
|
|
|
protected vector3(long cPtr, boolean cMemoryOwn) {
|
|
swigCMemOwn = cMemoryOwn;
|
|
swigCPtr = cPtr;
|
|
}
|
|
|
|
protected static long getCPtr(vector3 obj) {
|
|
return (obj == null) ? 0 : obj.swigCPtr;
|
|
}
|
|
|
|
protected void finalize() {
|
|
delete();
|
|
}
|
|
|
|
public synchronized void delete() {
|
|
if(swigCPtr != 0 && swigCMemOwn) {
|
|
swigCMemOwn = false;
|
|
openbabelJNI.delete_vector3(swigCPtr);
|
|
}
|
|
swigCPtr = 0;
|
|
}
|
|
|
|
public vector3(double inX, double inY, double inZ) {
|
|
this(openbabelJNI.new_vector3__SWIG_0(inX, inY, inZ), true);
|
|
}
|
|
|
|
public vector3(double inX, double inY) {
|
|
this(openbabelJNI.new_vector3__SWIG_1(inX, inY), true);
|
|
}
|
|
|
|
public vector3(double inX) {
|
|
this(openbabelJNI.new_vector3__SWIG_2(inX), true);
|
|
}
|
|
|
|
public vector3() {
|
|
this(openbabelJNI.new_vector3__SWIG_3(), true);
|
|
}
|
|
|
|
public vector3(vector3 v) {
|
|
this(openbabelJNI.new_vector3__SWIG_4(vector3.getCPtr(v), v), true);
|
|
}
|
|
|
|
public void Set(double inX, double inY, double inZ) {
|
|
openbabelJNI.vector3_Set__SWIG_0(swigCPtr, this, inX, inY, inZ);
|
|
}
|
|
|
|
public void Set(SWIGTYPE_p_double c) {
|
|
openbabelJNI.vector3_Set__SWIG_1(swigCPtr, this, SWIGTYPE_p_double.getCPtr(c));
|
|
}
|
|
|
|
public void SetX(double inX) {
|
|
openbabelJNI.vector3_SetX(swigCPtr, this, inX);
|
|
}
|
|
|
|
public void SetY(double inY) {
|
|
openbabelJNI.vector3_SetY(swigCPtr, this, inY);
|
|
}
|
|
|
|
public void SetZ(double inZ) {
|
|
openbabelJNI.vector3_SetZ(swigCPtr, this, inZ);
|
|
}
|
|
|
|
public void Get(SWIGTYPE_p_double c) {
|
|
openbabelJNI.vector3_Get(swigCPtr, this, SWIGTYPE_p_double.getCPtr(c));
|
|
}
|
|
|
|
public SWIGTYPE_p_double AsArray() {
|
|
long cPtr = openbabelJNI.vector3_AsArray(swigCPtr, this);
|
|
return (cPtr == 0) ? null : new SWIGTYPE_p_double(cPtr, false);
|
|
}
|
|
|
|
public void randomUnitVector(SWIGTYPE_p_OpenBabel__OBRandom oeRand) {
|
|
openbabelJNI.vector3_randomUnitVector__SWIG_0(swigCPtr, this, SWIGTYPE_p_OpenBabel__OBRandom.getCPtr(oeRand));
|
|
}
|
|
|
|
public void randomUnitVector() {
|
|
openbabelJNI.vector3_randomUnitVector__SWIG_1(swigCPtr, this);
|
|
}
|
|
|
|
public vector3 normalize() {
|
|
return new vector3(openbabelJNI.vector3_normalize(swigCPtr, this), false);
|
|
}
|
|
|
|
public boolean CanBeNormalized() {
|
|
return openbabelJNI.vector3_CanBeNormalized(swigCPtr, this);
|
|
}
|
|
|
|
public double length_2() {
|
|
return openbabelJNI.vector3_length_2(swigCPtr, this);
|
|
}
|
|
|
|
public double length() {
|
|
return openbabelJNI.vector3_length(swigCPtr, this);
|
|
}
|
|
|
|
public double x() {
|
|
return openbabelJNI.vector3_x__SWIG_0(swigCPtr, this);
|
|
}
|
|
|
|
public double y() {
|
|
return openbabelJNI.vector3_y__SWIG_0(swigCPtr, this);
|
|
}
|
|
|
|
public double z() {
|
|
return openbabelJNI.vector3_z__SWIG_0(swigCPtr, this);
|
|
}
|
|
|
|
public boolean IsApprox(vector3 other, double precision) {
|
|
return openbabelJNI.vector3_IsApprox(swigCPtr, this, vector3.getCPtr(other), other, precision);
|
|
}
|
|
|
|
public double distSq(vector3 vv) {
|
|
return openbabelJNI.vector3_distSq(swigCPtr, this, vector3.getCPtr(vv), vv);
|
|
}
|
|
|
|
public boolean createOrthoVector(vector3 v) {
|
|
return openbabelJNI.vector3_createOrthoVector(swigCPtr, this, vector3.getCPtr(v), v);
|
|
}
|
|
|
|
}
|