马来西亚国旗初步
(1)国旗图片
十四条红白相见的横条
十四角星 弦月
红色代表勇敢
蓝色象征团结
白色表示纯净
黄色表示国家元首
(2)国旗设计坐标长度比例关系
弦月 两个半径不同的圆组合出
十四角星 两个半径不同的圆圆心相同,平均分十二个点,外圆点与内圆点相连
(3)程序代码呈现
private void Button1_Click(object sender, EventArgs e)
{
Point pt0 = new Point(30, 30);
int width = 30;
var g = pictureBox1.CreateGraphics();
g.Clear(Color.White);
var pen = new Pen(Color.Black);
var brush = new SolidBrush(Color.Red);
g.DrawRectangle(pen, pt0.X, pt0.Y, width * 28, width * 14);
for (int line = 0; line < 7; line++)
{
int i = 0;
for (; i < 14; i++)
{
g.FillRectangle(brush, i * 2 * width + width + pt0.X, 2 * line * width + pt0.Y, width, width);
}
for (i = 0; i < 14; i++)
{
g.FillRectangle(brush, i * 2 * width + pt0.X, 2 * line *width+ pt0.Y, width, width);
}
}
brush.Color = Color.Blue;
g.FillRectangle(brush, 30, 30, 420, 240);
}