//------------------------------------------------------------------------------ // // // This file was automatically generated by SWIG (http://www.swig.org). // Version 4.0.2 // // Do not make changes to this file unless you know what you are doing--modify // the SWIG interface file instead. //------------------------------------------------------------------------------ public class Point3f : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; internal Point3f(global::System.IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Point3f obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } ~Point3f() { Dispose(false); } public void Dispose() { Dispose(true); global::System.GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { lock(this) { if (swigCPtr.Handle != global::System.IntPtr.Zero) { if (swigCMemOwn) { swigCMemOwn = false; GestureEstimatePINVOKE.delete_Point3f(swigCPtr); } swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } } } public Point3f() : this(GestureEstimatePINVOKE.new_Point3f__SWIG_0(), true) { } public Point3f(float _x, float _y, float _z) : this(GestureEstimatePINVOKE.new_Point3f__SWIG_1(_x, _y, _z), true) { } public float dot(Point3f pt) { float ret = GestureEstimatePINVOKE.Point3f_dot(swigCPtr, Point3f.getCPtr(pt)); if (GestureEstimatePINVOKE.SWIGPendingException.Pending) throw GestureEstimatePINVOKE.SWIGPendingException.Retrieve(); return ret; } public double ddot(Point3f pt) { double ret = GestureEstimatePINVOKE.Point3f_ddot(swigCPtr, Point3f.getCPtr(pt)); if (GestureEstimatePINVOKE.SWIGPendingException.Pending) throw GestureEstimatePINVOKE.SWIGPendingException.Retrieve(); return ret; } public Point3f cross(Point3f pt) { Point3f ret = new Point3f(GestureEstimatePINVOKE.Point3f_cross(swigCPtr, Point3f.getCPtr(pt)), true); if (GestureEstimatePINVOKE.SWIGPendingException.Pending) throw GestureEstimatePINVOKE.SWIGPendingException.Retrieve(); return ret; } public float x { set { GestureEstimatePINVOKE.Point3f_x_set(swigCPtr, value); } get { float ret = GestureEstimatePINVOKE.Point3f_x_get(swigCPtr); return ret; } } public float y { set { GestureEstimatePINVOKE.Point3f_y_set(swigCPtr, value); } get { float ret = GestureEstimatePINVOKE.Point3f_y_get(swigCPtr); return ret; } } public float z { set { GestureEstimatePINVOKE.Point3f_z_set(swigCPtr, value); } get { float ret = GestureEstimatePINVOKE.Point3f_z_get(swigCPtr); return ret; } } }