Exemplo n.º 1
0
        public void Draw()
        {
            Point point = new Point(this.radius, 0, this.relativePoint);

            for (int i = 0; i < this.radius * 2 * Math.PI; i++)
            {
                point.SetAngle(i * MyMath.DegToRad(360 / (this.radius * 2 * Math.PI)));
                point.Draw();
            }
        }