The flag of Vietnam has a yellow five pointed star on a red
background. This star is a popular device on many flags, we define
the star once and use it many times in later flags.
The given star has a radius of 50, it is centred on 0,0
which is the wrong place. We must translate to put it in the
right place.
We can use the TranslateTransform method to move the star to the right location.
The translate call is to the wrong location (50,50) - it should be at
(100,75).
The star given has a radius of 100 - it is a copy of the one
used for Vietnam. We can reuse this big star to draw a smaller
star by first performing the ScaleTransform method.
The call g.ScaleTransform(0.5f,0.5f); means that
all drawing and moving will be half the size it was before.
Note that we must use 0.5f rather than 0.5
the f indicates that the number is a
float rather than a double.
The large star has a radius of 100, the 6 smaller stars have a radius
of 10.