using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Ellipse
{
    public partial class Form1 : Form
    {
        PointF xyPoint = new PointF(); //左上角的X,Y坐标
        PointF centerPoint = new PointF();//椭圆的中心点
        PointF movePoint = new PointF();
        PointF xiePointF=new PointF();
        PointF xiedPointF = new PointF();//倾斜一定角度后的点
        private double perAngle = 0;
        private double nowAngle;
        PointF[] pointFs=new PointF[201];
        PointF[] pointFs1=new PointF[201];//与pointFs对称的点数组,椭圆是对称的
        PointF[] xiePointFs=new PointF[201];//倾斜的椭圆上半部分
        PointF[] xiePointFs1 = new PointF[201];//倾斜的椭圆下半部分,对称的部分
        private float a =200;
        private float b =100;
        private float stepLength = 2;//通过X坐标逐次加2计算出Y坐标,将所有坐标存在数组中,用DrawCurve连接
        private float xLength = 0;//点到坐标Y轴的线段距离
        private float yLength = 0;//颠倒坐标X轴的线段距离
        private float dbYlength = 0;
        private float xiedLength = 0;//点到椭圆中心点的线段长度
        private int angle = 0;//倾斜的角度
        public Form1()
        {
            InitializeComponent();
        }

private void panel1_Paint(object sender, PaintEventArgs e)
        {
            
        }

private void panel1_MouseClick(object sender, MouseEventArgs e)////画布鼠标键点击事件,重画图形
        {
            if (e.Button != MouseButtons.Left)
            {
                return;
            }
            if (this.textBox1.Text == "")
            {
                this.errorProvider1.SetError(this.textBox1, "请输入倾斜的角度");
                return;
            }
            else
            {
                this.errorProvider1.SetError(this.textBox1, "");
            }
            xyPoint.X = this.panel1.Width/2-200;
            xyPoint.Y = this.panel1.Height/2-100;
            centerPoint.X = xyPoint.X + a;
            centerPoint.Y = xyPoint.Y + b;
            Graphics graphics = this.panel1.CreateGraphics();
            graphics.SmoothingMode = SmoothingMode.HighQuality;
            graphics.Clear(this.panel1.BackColor);
            Pen pen = new Pen(Color.Red);
            for (int index = 0; index < pointFs.Length; index++)
            {
                movePoint.X = index * stepLength + xyPoint.X;
                xLength = centerPoint.X - movePoint.X;
                yLength = (float)(Math.Sqrt((1 - (xLength * xLength) / 40000) * 10000));
                movePoint.Y = b - yLength + xyPoint.Y;
                pointFs[index] = movePoint;
            }
            graphics.DrawCurve(pen, pointFs, 1.5f);
            for (int index = 0; index < pointFs1.Length; index++)
            {
                dbYlength = centerPoint.Y - pointFs[index].Y;
                pointFs1[index].Y = centerPoint.Y + dbYlength;
                pointFs1[index].X = pointFs[index].X;
            }
            graphics.DrawCurve(pen, pointFs1, 1.5f);
            for (int index = 0; index < pointFs.Length; index++)
            {
                xiePointF = pointFs[index];
                double startAngle = Math.Atan2(xiePointF.Y - centerPoint.Y, xiePointF.X - centerPoint.X);
                string jiaodu = this.textBox1.Text;
                perAngle = int.Parse(jiaodu) * Math.PI / 180;
                nowAngle = startAngle + perAngle;
                xiedLength = (float)Math.Sqrt(Math.Pow(xiePointF.X - centerPoint.X, 2) + Math.Pow(xiePointF.Y - centerPoint.Y, 2));
                xiedPointF.X = centerPoint.X - (float)(xiedLength * Math.Cos(nowAngle));
                xiedPointF.Y = centerPoint.Y + (float)(xiedLength * Math.Sin(nowAngle));
                xiePointFs[index] = xiedPointF;
            }
            graphics.DrawCurve(pen, xiePointFs, 1.5f);
            for (int index = 0; index < pointFs1.Length; index++)
            {
                xiePointF = pointFs1[index];
                double startAngle = Math.Atan2(xiePointF.Y - centerPoint.Y, xiePointF.X - centerPoint.X);
                string jiaodu = this.textBox1.Text;
                perAngle = int.Parse(jiaodu) * Math.PI / 180;
                nowAngle = startAngle + perAngle;
                xiedLength = (float)Math.Sqrt(Math.Pow(xiePointF.X - centerPoint.X, 2) + Math.Pow(xiePointF.Y - centerPoint.Y, 2));
                xiedPointF.X = centerPoint.X - (float)(xiedLength * Math.Cos(nowAngle));
                xiedPointF.Y = centerPoint.Y + (float)(xiedLength * Math.Sin(nowAngle));
                xiePointFs1[index] = xiedPointF;
            }
            graphics.DrawCurve(pen, xiePointFs1, 1.5f);
        }

private void button1_Click(object sender, EventArgs e)//倾斜角度,每次递增10度
        {
            angle += 10;
            this.textBox1.Text = angle.ToString();
            if (this.textBox1.Text == "")
            {
                this.errorProvider1.SetError(this.textBox1, "请输入倾斜的角度");
                return;
            }
            else
            {
                this.errorProvider1.SetError(this.textBox1, "");
            }
            xyPoint.X = this.panel1.Width / 2-200;
            xyPoint.Y = this.panel1.Height / 2-100;
            centerPoint.X = xyPoint.X + a;
            centerPoint.Y = xyPoint.Y + b;
            Graphics graphics = this.panel1.CreateGraphics();
            graphics.SmoothingMode = SmoothingMode.HighQuality;
            graphics.Clear(this.panel1.BackColor);
            Pen pen = new Pen(Color.Red);
            for (int index = 0; index < pointFs.Length; index++)
            {
                movePoint.X = index * stepLength + xyPoint.X;
                xLength = centerPoint.X - movePoint.X;
                yLength = (float)(Math.Sqrt((1 - (xLength * xLength) / 40000) * 10000));
                movePoint.Y = b - yLength + xyPoint.Y;
                pointFs[index] = movePoint;
            }
            graphics.DrawCurve(pen, pointFs, 1.5f);
            for (int index = 0; index < pointFs1.Length; index++)
            {
                dbYlength = centerPoint.Y - pointFs[index].Y;
                pointFs1[index].Y = centerPoint.Y + dbYlength;
                pointFs1[index].X = pointFs[index].X;
            }
            graphics.DrawCurve(pen, pointFs1, 1.5f);
            for (int index = 0; index < pointFs.Length; index++)
            {
                xiePointF = pointFs[index];
                double startAngle = Math.Atan2(xiePointF.Y - centerPoint.Y, xiePointF.X - centerPoint.X);
                string jiaodu = this.textBox1.Text;
                perAngle = int.Parse(jiaodu) * Math.PI / 180;
                nowAngle = startAngle + perAngle;
                xiedLength = (float)Math.Sqrt(Math.Pow(xiePointF.X - centerPoint.X, 2) + Math.Pow(xiePointF.Y - centerPoint.Y, 2));
                xiedPointF.X = centerPoint.X - (float)(xiedLength * Math.Cos(nowAngle));
                xiedPointF.Y = centerPoint.Y + (float)(xiedLength * Math.Sin(nowAngle));
                xiePointFs[index] = xiedPointF;
            }
            graphics.DrawCurve(pen, xiePointFs, 1.5f);
            for (int index = 0; index < pointFs1.Length; index++)
            {
                xiePointF = pointFs1[index];
                double startAngle = Math.Atan2(xiePointF.Y - centerPoint.Y, xiePointF.X - centerPoint.X);
                string jiaodu = this.textBox1.Text;
                perAngle = int.Parse(jiaodu) * Math.PI / 180;
                nowAngle = startAngle + perAngle;
                xiedLength = (float)Math.Sqrt(Math.Pow(xiePointF.X - centerPoint.X, 2) + Math.Pow(xiePointF.Y - centerPoint.Y, 2));
                xiedPointF.X = centerPoint.X - (float)(xiedLength * Math.Cos(nowAngle));
                xiedPointF.Y = centerPoint.Y + (float)(xiedLength * Math.Sin(nowAngle));
                xiePointFs1[index] = xiedPointF;
            }
            graphics.DrawCurve(pen, xiePointFs1, 1.5f);
        }

private void button2_Click(object sender, EventArgs e)//倾斜角度,每次递减10度
        {
            angle -= 10;
            this.textBox1.Text = angle.ToString();
            if (this.textBox1.Text == "")
            {
                this.errorProvider1.SetError(this.textBox1, "请输入倾斜的角度");
                return;
            }
            else
            {
                this.errorProvider1.SetError(this.textBox1, "");
            }
            xyPoint.X = this.panel1.Width / 2-200;
            xyPoint.Y = this.panel1.Height / 2-100;
            centerPoint.X = xyPoint.X + a;
            centerPoint.Y = xyPoint.Y + b;
            Graphics graphics = this.panel1.CreateGraphics();
            graphics.SmoothingMode = SmoothingMode.HighQuality;
            graphics.Clear(this.panel1.BackColor);
            Pen pen = new Pen(Color.Red);
            for (int index = 0; index < pointFs.Length; index++)
            {
                movePoint.X = index * stepLength + xyPoint.X;
                xLength = centerPoint.X - movePoint.X;
                yLength = (float)(Math.Sqrt((1 - (xLength * xLength) / 40000) * 10000));
                movePoint.Y = b - yLength + xyPoint.Y;
                pointFs[index] = movePoint;
            }
            graphics.DrawCurve(pen, pointFs, 1.5f);
            for (int index = 0; index < pointFs1.Length; index++)
            {
                dbYlength = centerPoint.Y - pointFs[index].Y;
                pointFs1[index].Y = centerPoint.Y + dbYlength;
                pointFs1[index].X = pointFs[index].X;
            }
            graphics.DrawCurve(pen, pointFs1, 1.5f);
            for (int index = 0; index < pointFs.Length; index++)
            {
                xiePointF = pointFs[index];
                double startAngle = Math.Atan2(xiePointF.Y - centerPoint.Y, xiePointF.X - centerPoint.X);
                string jiaodu = this.textBox1.Text;
                perAngle = int.Parse(jiaodu) * Math.PI / 180;
                nowAngle = startAngle + perAngle;
                xiedLength = (float)Math.Sqrt(Math.Pow(xiePointF.X - centerPoint.X, 2) + Math.Pow(xiePointF.Y - centerPoint.Y, 2));
                xiedPointF.X = centerPoint.X - (float)(xiedLength * Math.Cos(nowAngle));
                xiedPointF.Y = centerPoint.Y + (float)(xiedLength * Math.Sin(nowAngle));
                xiePointFs[index] = xiedPointF;
            }
            graphics.DrawCurve(pen, xiePointFs, 1.5f);
            for (int index = 0; index < pointFs1.Length; index++)
            {
                xiePointF = pointFs1[index];
                double startAngle = Math.Atan2(xiePointF.Y - centerPoint.Y, xiePointF.X - centerPoint.X);
                string jiaodu = this.textBox1.Text;
                perAngle = int.Parse(jiaodu) * Math.PI / 180;
                nowAngle = startAngle + perAngle;
                xiedLength = (float)Math.Sqrt(Math.Pow(xiePointF.X - centerPoint.X, 2) + Math.Pow(xiePointF.Y - centerPoint.Y, 2));
                xiedPointF.X = centerPoint.X - (float)(xiedLength * Math.Cos(nowAngle));
                xiedPointF.Y = centerPoint.Y + (float)(xiedLength * Math.Sin(nowAngle));
                xiePointFs1[index] = xiedPointF;
            }
            graphics.DrawCurve(pen, xiePointFs1, 1.5f);
        }

private void textBox1_TextChanged(object sender, EventArgs e)//输入倾斜的角度
        {
            angle = int.Parse(this.textBox1.Text);
        }

}
}

C#窗体程序画倾斜一定角度的椭圆的更多相关文章

  1. 如何给windows窗体程序打包成一个安装包

    http://blog.csdn.net/xyy410874116/article/details/6341787 给windows窗体程序打包成一个安装包:具体操作在:http://hi.baidu ...

  2. 学习java随笔第十一篇:java窗体程序

    要开java的窗体程序,就要下载开发窗体的工具. 这里我用的是的myeclipse,可以直接在网上下载安装即可. 我用的是10.0版本的,如果需要汉化的话,可以看一下这篇文章:myeclipse.10 ...

  3. VS2010 win32项目windows窗体程序 向导生成代码解析

    目录: 1.Win32项目的windows窗体程序的向导生成了如下代码 2.手工生成代码如下 3.当消息队列中没有消息需要处理,我们可以利用这段时间处理我们自己的任务 1.Win32项目的window ...

  4. 使用控制台调试WinForm窗体程序

    .程序代码结构 .Win32DebuggerHelper.cs using System.Runtime.InteropServices; /* TODO:使用方法 Win32.AllocConsol ...

  5. 两种方法:VS2008下C++窗体程序显示控制台的方法——在QT程序中使用cout和cin

    老蔡写了一个基于QT的窗体程序,而过去写的类的调试信息都是用cout显示的,苦于窗体程序无法显示cout信息很多信息都看不到,于是就想到让控制台和窗体同时显示.显示控制台方法如下 1.项目(或者叫“工 ...

  6. C#窗体程序与sql sever 数据库链接

    一.所用工具 Visual Studio 2017和SQL Server Management Studio 2012 二.连接 打开SQL Server Management Studio 2012 ...

  7. winform窗体程序运行后怎样隐藏?

    运行winform窗体,我们是怎样隐藏的呢? 例子: 1)创建简单winform窗体 2)编写隐藏窗体程序的代码 3)效果演示 1)创建一个简单的winform窗体MainForm,

  8. MFC窗体程序中添加调试控制台

    在编写复杂程序的过程中,我们经常需要将一些信息输出到文件或者屏幕上.较控制台应用程序,MFC窗体程序要显得麻烦一些! 下面有2种方法来实现为MFC窗体程序添加调试控制台,方便程序员调试程序和了解当前程 ...

  9. c# WinForm窗体编程中对窗体程序设置快捷键

    c# WinForm窗体编程中对窗体程序设置快捷键http://www.cnblogs.com/bison1989/archive/2011/09/19/2180977.html /// <su ...

随机推荐

  1. IOS开发中 RunLoop,RunTime

    1.Objective-C中的函数调用 对于C语言,函数调用是由编译器直接转化完成的,在编译时程序就开始查找要执行的函数(C语言函数调用原理).而在OC中,我们将函数调用称为消息发送.在编译时程序不查 ...

  2. Git学习(一) 版本号管理工具

    Git 是一个分布式版本号控制工具.它的作者 Linus Torvalds 是这样给我们介绍 Git  -- The stupid content tracker(傻瓜式的内容跟踪器) 1. Git ...

  3. docker 镜像中包含数据库环境和运行环境

    需求: 一个镜像中要包含数据库环境和运行环境 Apache 环境 + mariadb 已经在拉取了Apache的运行环境 - 拉取代码 git https://github.com/timhaak/d ...

  4. centos 网站目录权限参考

    Linux下Apache网站目录读写权限的设置 网站目录文件权限的设置对网站的安全至关重要,下面简单介绍网站目录文件权限的基本设定. 我们假设http服务器运行的用户和用户组是www,网站用户为cen ...

  5. change buffer

    https://yq.aliyun.com/articles/222 change buffer: insert buffer delete buffer purge buffer 1.innodb_ ...

  6. mapreduce实战:统计美国各个气象站30年来的平均气温项目分析

    气象数据集 我们要写一个气象数据挖掘的程序.气象数据是通过分布在美国各地区的很多气象传感器每隔一小时进行收集,这些数据是半结构化数据且是按照记录方式存储的,因此非常适合使用 MapReduce 程序来 ...

  7. ZYKeyboardUtil 全自动处理键盘遮挡事件

    键盘遮盖输入控件或按钮在日常app开发中避之不及,考虑各种情况下UI各种嵌套,最后还要注册监听再获取指定键盘信息.我们可以通过键盘处理工具类ZYKeyboardUtil避繁就简,利用Block的方式处 ...

  8. C++实现二叉树(转)

    /************************************************************************* 这是一个二叉查找树,实现了以下操作:插入结点.构造 ...

  9. 本地代码git到github上

    本地代码git到github上 对于个程序员来说,不写自己的博客,没有自己的作品集没有Github就不算好的程序员!咳咳~ 开个玩笑.对于我个人来说,要做个程序员,就要有自己的作品集和技术博客(我说是 ...

  10. CentOS 通过yum来升级php到php5.6,yum upgrade php 没有更新包怎么办?

    在文章中,我们将展示在centOS系统下如何将php升级到5.6,之前通过yum来安装lamp环境,直接升级的话,提示没有更新包,也就是说默认情况下php5.3.3是最新 1.查看已经安装的php版本 ...