C#:ProgZoo
From Progzoo
An introduction to computer programming using Java. Including
|
Follow the C#:tutorials to learn to program. | Use the guides to see short example programs. | |
|---|---|---|
An Example: drawing the French tricolour
You can create images using C#. The first tutorial Flags looks at drawing flags of the world, from simple flags such as Libya to more complicated flags such as the Stars and Stripes of the USA. In Java you can use methods such as setColor and fillRect to create simple images.
Notice that the blue rectangle is at (0,0), it is 50 wide and 100 deep so the commands to draw the blue rectangle are:
g.setColor(Color.blue); g.fillRect(0,0,50,100);
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Consult the User's Guide for information on changing material in progzoo.
You can mess about in the Playpen.

