//------------------------------------------------------------------------------ // // // 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 Point3i : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; internal Point3i(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(Point3i obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } ~Point3i() { 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_Point3i(swigCPtr); } swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } } } public Point3i() : this(GestureEstimatePINVOKE.new_Point3i__SWIG_0(), true) { } public Point3i(int _x, int _y, int _z) : this(GestureEstimatePINVOKE.new_Point3i__SWIG_1(_x, _y, _z), true) { } public int dot(Point3i pt) { int ret = GestureEstimatePINVOKE.Point3i_dot(swigCPtr, Point3i.getCPtr(pt)); if (GestureEstimatePINVOKE.SWIGPendingException.Pending) throw GestureEstimatePINVOKE.SWIGPendingException.Retrieve(); return ret; } public double ddot(Point3i pt) { double ret = GestureEstimatePINVOKE.Point3i_ddot(swigCPtr, Point3i.getCPtr(pt)); if (GestureEstimatePINVOKE.SWIGPendingException.Pending) throw GestureEstimatePINVOKE.SWIGPendingException.Retrieve(); return ret; } public Point3i cross(Point3i pt) { Point3i ret = new Point3i(GestureEstimatePINVOKE.Point3i_cross(swigCPtr, Point3i.getCPtr(pt)), true); if (GestureEstimatePINVOKE.SWIGPendingException.Pending) throw GestureEstimatePINVOKE.SWIGPendingException.Retrieve(); return ret; } public int x { set { GestureEstimatePINVOKE.Point3i_x_set(swigCPtr, value); } get { int ret = GestureEstimatePINVOKE.Point3i_x_get(swigCPtr); return ret; } } public int y { set { GestureEstimatePINVOKE.Point3i_y_set(swigCPtr, value); } get { int ret = GestureEstimatePINVOKE.Point3i_y_get(swigCPtr); return ret; } } public int z { set { GestureEstimatePINVOKE.Point3i_z_set(swigCPtr, value); } get { int ret = GestureEstimatePINVOKE.Point3i_z_get(swigCPtr); return ret; } } }