コード例 #1
0
        public override void Draw(NVGcontext ctx)
        {
            if (A0 == A1 || Radius == 0)
            {
                return;
            }

            NanoVG.nvgBeginPath(ctx);
            NanoVG.nvgArc(ctx, X, Y, Radius, A0, A1, Dir);
            NanoVG.nvgStroke(ctx);
        }