Example #1
0
        void drawOval(xGraphics g, stTrendLine t)
        {
            uint color = t.color;

            g.setColor(color);
            int w = t.x[1] - t.x[0];
            int h = t.y[1] - t.y[0];

            g.drawEclipse(t.x[0], t.y[0], w, h);
        }