当前位置: 首页 > article >正文

C# 25Dpoint

C# 25Dpoint ,做一个备份

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

namespace _25Dpoint
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Paint(object sender, PaintEventArgs e)
        {            
            Graphics g = this.CreateGraphics(); 
            SolidBrush brushBlack = new SolidBrush(Color.Black);

            g.DrawLine(Pens.Black, 200, 0, 200, 400); //画出直角坐标系的x,y轴
            g.DrawLine(Pens.Black, 0, 200, 400, 200);

            float x1 = 20, y1 = 180;   //假设黑点的坐标为20,180 (这个坐标数字是WIN屏幕的坐标,从直角坐标系到WIN屏幕坐标系是不同的,需要转换一下)

            Point winpoint1 = screen_point(x1, y1); //直角坐标系到WIN屏幕坐标系
            g.DrawString(winpoint1.X.ToString() + "," + winpoint1.Y.ToString(), Font, brushBlack, winpoint1.X, winpoint1.Y); //显示字符串
            g.FillEllipse(brushBlack, winpoint1.X, winpoint1.Y, 5, 5);        //显示点

            float x2 = (float) (x1 * Math.Cos(-45) - y1 * Math.Sin(-45)); //坐标转轴公式 顺时针转45度
            float y2 = (float) (x1 * Math.Sin(-45) + y1 * Math.Cos(-45)); 

            Point winpoint2 = screen_point(x2, y2);
            g.FillEllipse(brushBlack, winpoint2.X, winpoint2.Y, 5, 5); //显示字符串
            g.DrawString(winpoint2.X.ToString() + "," + winpoint2.Y.ToString(), Font, brushBlack, winpoint2.X, winpoint2.Y); //显示转换后的点


        }

        public Point screen_point(float cartX, float cartY)
        {
            Point screenpoint =  new Point();
            screenpoint.X = (int) cartX + ( 400/2  );
            screenpoint.Y = (400/2) - (int)cartY;

            return screenpoint;
        }
    }
}


http://www.kler.cn/a/505893.html

相关文章:

  • vue3+vite+ts+router4+Pinia+Axios+sass 从0到1搭建
  • Windows 正确配置android adb调试的方法
  • LeetCode:131. 分割回文串
  • replaceState和vue的router.replace删除query参数的区别
  • PHP 字符串
  • 深度剖析RabbitMQ:从基础组件到管理页面详解
  • STC的51单片机LED点灯基于KEIL
  • zig语言初探:来写贪吃蛇游戏
  • 深入详解人工智能语音识别之声学模型与语言模型:掌握HMM、CTC等方法
  • 【开源免费】基于SpringBoot+Vue.JS社团管理系统(JAVA毕业设计)
  • 第十二章:算法与程序设计
  • Spring Boot 下的Swagger 3.0 与 Swagger 2.0 的详细对比
  • 深度学习中的卷积和反卷积(四)——卷积和反卷积的梯度
  • 如何监控和防范小红书笔记详情API的安全风险?
  • 脚本化挂在物理盘、nfs、yum、pg数据库、nginx(已上传脚本)
  • Unity解决滑动条的value值的滑动条消失问题
  • RabbitMQ(三)
  • Agile Scrum 敏捷开发方法
  • 基于Verilog的简易音乐节奏游戏设计
  • 【芯片封测学习专栏 -- 2D | 2.5D | 3D 封装的区别和联系】
  • ElasticSearch的劈山斧-自定义评分
  • 一步到位Python Django部署,浅谈Python Django框架
  • 性能测试 - Locust WebSocket client
  • node mysql和mysql2有什么区别
  • 潜力巨大但道路曲折的量子计算:探索未来科技的无限可能
  • 系统学习算法:专题四 前缀和