Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_spatial3d_geom_LinearDistance_H
#define org_apache_lucene_spatial3d_geom_LinearDistance_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class Class;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace spatial3d {
namespace geom {
class PlanetModel;
class Membership;
class DistanceStyle;
class Plane;
class GeoPoint;
class LinearDistance;
}
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace spatial3d {
namespace geom {
class LinearDistance : public ::java::lang::Object {
public:
enum {
mid_init$_d7775b228e076e62,
mid_computeDistance_05f17785b2afc200,
mid_computeDistance_41d210f3b09024f2,
mid_computeDistance_6a576d3edeb99cc7,
mid_computeDistance_0b73edd73aeb518d,
mid_findDistancePoints_a7cb9563b5a08d5d,
mid_findMaximumArcDistance_476ada5ba75e2bc9,
mid_findMinimumArcDistance_476ada5ba75e2bc9,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit LinearDistance(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
LinearDistance(const LinearDistance& obj) : ::java::lang::Object(obj) {}
static LinearDistance *INSTANCE;
LinearDistance();
jdouble computeDistance(const ::org::apache::lucene::spatial3d::geom::GeoPoint &, const ::org::apache::lucene::spatial3d::geom::GeoPoint &) const;
jdouble computeDistance(const ::org::apache::lucene::spatial3d::geom::GeoPoint &, jdouble, jdouble, jdouble) const;
jdouble computeDistance(const ::org::apache::lucene::spatial3d::geom::PlanetModel &, const ::org::apache::lucene::spatial3d::geom::Plane &, const ::org::apache::lucene::spatial3d::geom::GeoPoint &, const JArray< ::org::apache::lucene::spatial3d::geom::Membership > &) const;
jdouble computeDistance(const ::org::apache::lucene::spatial3d::geom::PlanetModel &, const ::org::apache::lucene::spatial3d::geom::Plane &, jdouble, jdouble, jdouble, const JArray< ::org::apache::lucene::spatial3d::geom::Membership > &) const;
JArray< ::org::apache::lucene::spatial3d::geom::GeoPoint > findDistancePoints(const ::org::apache::lucene::spatial3d::geom::PlanetModel &, jdouble, const ::org::apache::lucene::spatial3d::geom::GeoPoint &, const ::org::apache::lucene::spatial3d::geom::Plane &, const JArray< ::org::apache::lucene::spatial3d::geom::Membership > &) const;
jdouble findMaximumArcDistance(const ::org::apache::lucene::spatial3d::geom::PlanetModel &, jdouble) const;
jdouble findMinimumArcDistance(const ::org::apache::lucene::spatial3d::geom::PlanetModel &, jdouble) const;
};
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace spatial3d {
namespace geom {
extern PyType_Def PY_TYPE_DEF(LinearDistance);
extern PyTypeObject *PY_TYPE(LinearDistance);
class t_LinearDistance {
public:
PyObject_HEAD
LinearDistance object;
static PyObject *wrap_Object(const LinearDistance&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
#endif