| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- //------------------------------------------------------------------------------
- // <auto-generated />
- //
- // 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 HandPoseDesc : global::System.IDisposable {
- private global::System.Runtime.InteropServices.HandleRef swigCPtr;
- protected bool swigCMemOwn;
- internal HandPoseDesc(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(HandPoseDesc obj) {
- return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
- }
- ~HandPoseDesc() {
- 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_HandPoseDesc(swigCPtr);
- }
- swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
- }
- }
- }
- public HandPoseEnum hand_pose {
- set {
- GestureEstimatePINVOKE.HandPoseDesc_hand_pose_set(swigCPtr, (int)value);
- }
- get {
- HandPoseEnum ret = (HandPoseEnum)GestureEstimatePINVOKE.HandPoseDesc_hand_pose_get(swigCPtr);
- return ret;
- }
- }
- public HandPoseDesc.Category category {
- set {
- GestureEstimatePINVOKE.HandPoseDesc_category_set(swigCPtr, (int)value);
- }
- get {
- HandPoseDesc.Category ret = (HandPoseDesc.Category)GestureEstimatePINVOKE.HandPoseDesc_category_get(swigCPtr);
- return ret;
- }
- }
- public HandPoseDesc() : this(GestureEstimatePINVOKE.new_HandPoseDesc__SWIG_0(), true) {
- }
- public HandPoseDesc(HandPoseEnum pose) : this(GestureEstimatePINVOKE.new_HandPoseDesc__SWIG_1((int)pose), true) {
- }
- public HandPoseDesc(HandPoseEnum pose, HandPoseDesc.Category cate) : this(GestureEstimatePINVOKE.new_HandPoseDesc__SWIG_2((int)pose, (int)cate), true) {
- }
- public bool is_left() {
- bool ret = GestureEstimatePINVOKE.HandPoseDesc_is_left(swigCPtr);
- return ret;
- }
- public bool is_right() {
- bool ret = GestureEstimatePINVOKE.HandPoseDesc_is_right(swigCPtr);
- return ret;
- }
- public bool is_valid() {
- bool ret = GestureEstimatePINVOKE.HandPoseDesc_is_valid(swigCPtr);
- return ret;
- }
- public string to_string() {
- string ret = GestureEstimatePINVOKE.HandPoseDesc_to_string(swigCPtr);
- return ret;
- }
- public enum Category {
- None,
- Left,
- Right
- }
- }
|