程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C# 繪圖--金剛石

C# 繪圖--金剛石

編輯:關於C語言
//-------------------------------------

// DrawDiamond.cs by Flycrane

//-------------------------------------

using System;

using System.Drawing;

using System.Windows.Forms;



class DrawDiamond : Form

{

publicstaticvoidMain()

{

Application.Run( new DrawDiamond() );

}

public DrawDiamond()

{

Text= "金剛石圖案-Flycrane";

BackColor= Color.Black;

ForeColor= Color.White;

ResizeRedraw= true;

Width= 400;

Height= 400;

}



protectedoverridevoid OnPaint(PaintEventArgs e)

{

Graphics myGraphics= e.Graphics;

Pen myPen= new Pen( ForeColor,2 );



float radius= (float) ( Width/2.2 );

constint partitionNum= 25;

float angleUnit= (float) ( 2*Math.PI/partitionNum );



float[] circleX= newfloat[partitionNum];

float[] circleY= newfloat[partitionNum];



// center of the circle.

float originX=ClIEntSize.Width/2;

float originY=ClIEntSize.Height/2;



//store coordinates of the nodes on the circle verge.

for ( int i=0;i<partitionNum;i++ )

{

circleX[i]= (float) ( radius*Math.Cos( i*angleUnit ) ) + originX;

circleY[i]= (float) ( radius*Math.Sin( i*angleUnit ) ) + originY;

}



//link nodes on the circle verge.

for ( int i=0;i<=partitionNum-2;i++ )

{

for ( int j=i+1;j<=partitionNum-1;j++ )

myGraphics.DrawLine( myPen,circleX[i],circleY[i],circleX[j],circleY[j] );

}

}

}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved