コード例 #1
0
        public MgShape hitTest(Box2d limits, MgHitResult res)
        {
            global::System.IntPtr cPtr = touchvgPINVOKE.MgShapes_hitTest(swigCPtr, Box2d.getCPtr(limits), MgHitResult.getCPtr(res));
            MgShape ret = (cPtr == global::System.IntPtr.Zero) ? null : new MgShape(cPtr, false);

            if (touchvgPINVOKE.SWIGPendingException.Pending)
            {
                throw touchvgPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #2
0
ファイル: MgDiamond.cs プロジェクト: adozenlines/vgwpf
        public override float hitTest(Point2d pt, float tol, MgHitResult res)
        {
            float ret = touchvgPINVOKE.MgDiamond_hitTest(swigCPtr, Point2d.getCPtr(pt), tol, MgHitResult.getCPtr(res));

            if (touchvgPINVOKE.SWIGPendingException.Pending)
            {
                throw touchvgPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #3
0
ファイル: MgBaseShape.cs プロジェクト: zhangxin8105/vgwpf
        public static float linesHit(int n, Point2d points, bool closed, Point2d pt, float tol, MgHitResult res)
        {
            float ret = touchvgPINVOKE.MgBaseShape_linesHit(n, Point2d.getCPtr(points), closed, Point2d.getCPtr(pt), tol, MgHitResult.getCPtr(res));

            if (touchvgPINVOKE.SWIGPendingException.Pending)
            {
                throw touchvgPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }