public static floatp frompointer(SWIGTYPE_p_float t) { global::System.IntPtr cPtr = Interop.floatp.frompointer(SWIGTYPE_p_float.getCPtr(t)); floatp ret = (cPtr == global::System.IntPtr.Zero) ? null : new floatp(cPtr, false); if (NDalicPINVOKE.SWIGPendingException.Pending) { throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } return(ret); }
public void FloatpConstructor() { tlog.Debug(tag, $"FloatpConstructor START"); var testingTarget = new floatp(); Assert.IsNotNull(testingTarget, "Can't create success object floatp."); Assert.IsInstanceOf <floatp>(testingTarget, "Should return floatp instance."); testingTarget.Dispose(); tlog.Debug(tag, $"FloatpConstructor END (OK)"); }
public void FloatpAssign() { tlog.Debug(tag, $"FloatpConstructor START"); var testingTarget = new floatp(); Assert.IsNotNull(testingTarget, "Can't create success object floatp."); Assert.IsInstanceOf <floatp>(testingTarget, "Should return floatp instance."); try { testingTarget.assign(0.3f); } catch (Exception e) { tlog.Debug(tag, e.Message.ToString()); Assert.Fail("Caught Exception : Failed!"); } testingTarget.Dispose(); tlog.Debug(tag, $"FloatpConstructor END (OK)"); }
public void FloatpValue() { tlog.Debug(tag, $"FloatpValue START"); var testingTarget = new floatp(); Assert.IsNotNull(testingTarget, "Can't create success object floatp."); Assert.IsInstanceOf <floatp>(testingTarget, "Should return floatp instance."); try { var result = testingTarget.value(); tlog.Debug(tag, "value : " + result); } catch (Exception e) { tlog.Debug(tag, e.Message.ToString()); Assert.Fail("Caught Exception : Failed!"); } testingTarget.Dispose(); tlog.Debug(tag, $"FloatpValue END (OK)"); }
internal static global::System.Runtime.InteropServices.HandleRef getCPtr(floatp obj) { return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr); }