dotnet C# 根据椭圆长度和宽度和旋转角计算出椭圆中心点的方法
2022/1/26 9:04:14
本文主要是介绍dotnet C# 根据椭圆长度和宽度和旋转角计算出椭圆中心点的方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文来告诉大家如何根据椭圆长度和宽度和旋转角计算出椭圆中心点的方法
方法很简单,请看代码
/// <summary> /// 辅助进行椭圆点计算的类 /// </summary> /// 我觉得这个类应该是框架有带,或现成的方法,但是一时间没找到 static class EllipseCoordinateHelper { /// <summary> /// 计算椭圆中点坐标 /// </summary> /// <param name="widthRadius"></param> /// <param name="heightRadius"></param> /// <param name="rotationAngle"></param> /// <returns></returns> public static (Pixel x, Pixel y) GetEllipseCoordinate(Pixel widthRadius, Pixel heightRadius, Degree rotationAngle) { // 以下为椭圆两个点的计算方法 // 算法请看 https://astronomy.swin.edu.au/cms/astro/cosmos/E/Ellipse var absRotate = Math.Abs(rotationAngle.DoubleValue); var rad = Math.Abs(absRotate - 90); rad = rad * Math.PI / 180; var tan = Math.Tan(rad); var a = widthRadius.Value; var b = heightRadius.Value; var x = Math.Sqrt(1.0 / (1.0 / (a * a) + (tan * tan) / (b * b))); var y = x * tan; if (rotationAngle.DoubleValue < 0) { x = -x; } if (rotationAngle.DoubleValue > -90 && rotationAngle.DoubleValue < 90) { y = -y; } x = a + x; y = b + y; return (new Pixel(x), new Pixel(y)); } }
我觉得以上是 WPF 框架有带的,但是一时半会没有找到在哪定义的,因此就自己写了一份
以上的 Pixel 和 Degree 的定义代码在 GitHub 上开源,请看 Office Open XML 的测量单位
其他计算请参阅 根据SVG Arc求出其开始角、摆动角和椭圆圆心 - RyzenAdorer - 博客园
这篇关于dotnet C# 根据椭圆长度和宽度和旋转角计算出椭圆中心点的方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#