65
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void button1_Click(object sender, System.EventArgs e)
{
this.SetStyle(ControlStyles.SupportsTransparentBackColor,true);
this.SetStyle(ControlStyles.SupportsTransparentBackColor,true);
this.BackColor=Color.FromArgb(1.0,0,0,10);
// this.Invalidate();
////////////// this.MaximizeBox = false;
///////////// this.StartPosition =
System.Windows.Forms.FormStartPosition.CenterScreen;
/* Установка параметров */
int x0,y0,i; x0=110;y0=110;
/* 1. Ввод значений исходных данных */
int n=14;
int [ ] xn = { 40, 0,20,40, 0,20,25,22,22,25,18,18,15,15};
int[] yn={ 10,10,40,10,10,40,22,22,25,28,28,22,22,28};
int[] zn={ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
int[] xk={ 0,20,40,20,20,20,22,22,25,22,18,15,15,18};
int[] yk={ 10,40,10,20,20,20,22,25,28,28,22,22,28,28};
int[] zk={ 0, 0, 0,40,40,40, 0, 0, 0, 0, 0, 0, 0, 0};
/* 2. Инициализация графики */
Graphics canvas= Graphics.FromHwnd(this.Handle);
float w=1.0f,w0=2.0f;
Pen pen=new Pen(Color.Red,w0);
Pen pen2=new Pen(Color.Green,w);