C# 检查某个点是否存在于圆扇区内(Check whether a point exists in circle sector or not)

我们有一个以原点 (0, 0) 为中心的圆。作为输入,我们给出了圆扇区的起始角度和圆扇区的大小(以百分比表示)。

例子:

输入:半径 = 8

起始角 = 0

百分比 = 12

x = 3 y = 4

输出:点 (3, 4) 位于圆

扇区内

输入:半径 = 12

起始角 = 45

百分比 = 25

x = 3 y = 4

输出:点 (3, 4) 不位于

圆扇区内

在此图像中,起始角度为 0 度,半径为 r,假设彩色区域百分比为 12%,则我们计算结束角度为360/百分比 + 起始角度。

为了确定点 (x, y) 是否存在于圆扇区(以原点为中心)内,我们需要找到该点的极坐标,然后执行以下步骤:

1、使用这个将 x, y 转换为极坐标角度 = atan(y/x); 半径 = sqrt(x * x + y * y);

2、那么角度必须介于 StartingAngle(起始角) 和 EndingAngle(终止角) 之间,并且半径必须介于 0 和您的半径之间。

示例代码:

// C# program to check if a point lies

// inside a circle sector.

using System.IO;

using System;

class GFG {

static void checkPoint(int radius, int x, int y,

float percent, float startAngle)

{

// calculate endAngle

float endAngle = 360 / percent + startAngle;

// Calculate polar co-ordinates

float polarradius =

(float)Math.Sqrt(x * x + y * y);

float Angle = (float)Math.Atan(y / x);

// Check whether polarradius is less then

// radius of circle or not and Angle is

// between startAngle and endAngle or not

if (Angle >= startAngle && Angle <= endAngle

&& polarradius < radius)

Console.Write("Point ({0}, {1}) exist in "

  • "the circle sector", x, y);

else

Console.Write("Point ({0}, {1}) does not "

  • "exist in the circle sector", x, y);

}

// Driver code

public static void Main()

{

int radius = 8, x = 3, y = 4;

float percent = 12, startAngle = 0;

checkPoint(radius, x, y, percent, startAngle);

}

}

// This code is contributed by Smitha Dinesh Semwal

输出 :

点(3,4)位于圆扇区内

时间复杂度: O(1)

辅助空间: O(1)

如果您喜欢此文章,请收藏、点赞、评论,谢谢,祝您快乐每一天。

相关推荐
zc.ovo8 分钟前
图论刷题1
算法·深度优先·图论
瓦特what?13 分钟前
C++中实现随机数(超详细!)
开发语言·c++·windows·算法
Humbunklung23 分钟前
Rust 变量与可变性
开发语言·算法·rust
Angel Q.1 小时前
PnP(Perspective-n-Point)算法 | 用于求解已知n个3D点及其对应2D投影点的相机位姿
数码相机·算法·3d·pnp
Joern-Lee1 小时前
机器学习算法:逻辑回归
人工智能·算法·机器学习·逻辑回归
敲键盘的小夜猫1 小时前
Retrievers检索器+RAG文档助手项目实战
java·数据库·算法
L_1421906872 小时前
数据结构之排序
数据结构·算法·排序算法
zyq~2 小时前
【课堂笔记】标签传播算法Label Propagation Algorithm(LPA)
人工智能·笔记·算法·机器学习·概率论·lpa·半监督学习
白熊1882 小时前
【机器学习基础】机器学习入门核心算法:多分类与多标签分类算法
算法·机器学习·分类
珂朵莉MM2 小时前
2022 RoboCom 世界机器人开发者大赛(睿抗 caip) -高职组(国赛)解题报告 | 科学家
java·人工智能·python·算法·职场和发展·机器人