ฟังก์ชั่นต่อไปนี้สามารถใช้งานในภาษาต่าง ๆ ได้อย่างไร?
คำนวณ(x,y)
จุดบนเส้นรอบวงของวงกลมโดยกำหนดค่าอินพุตเป็น:
- รัศมี
- มุม
- Origin (พารามิเตอร์ที่เป็นทางเลือกหากสนับสนุนโดยภาษา)
ฟังก์ชั่นต่อไปนี้สามารถใช้งานในภาษาต่าง ๆ ได้อย่างไร?
คำนวณ(x,y)
จุดบนเส้นรอบวงของวงกลมโดยกำหนดค่าอินพุตเป็น:
คำตอบ:
x = cx + r * cos(a)
y = cy + r * sin(a)
ที่ไหนRคือรัศมีcx, cyกำเนิดและมุม
มันค่อนข้างง่ายที่จะปรับให้เข้ากับภาษาใด ๆ ด้วยฟังก์ชั่นตรีโกณมิติพื้นฐาน โปรดทราบว่าภาษาส่วนใหญ่จะใช้เรเดียนสำหรับมุมในฟังก์ชั่นตรีโกณมิติดังนั้นแทนที่จะขี่จักรยานผ่าน 0..360 องศาคุณกำลังปั่นผ่านเรเดียน 0..2PI
+
และ*
เช่นเดียวกับในทั้งสองสมการและไม่มีวงเล็บใด ๆ ที่คุณเสมอไปสำหรับครั้งแรกแล้วสำหรับ*
+
นี่คือการใช้งานของฉันใน C #:
public static PointF PointOnCircle(float radius, float angleInDegrees, PointF origin)
{
// Convert from degrees to radians via multiplication by PI/180
float x = (float)(radius * Math.Cos(angleInDegrees * Math.PI / 180F)) + origin.X;
float y = (float)(radius * Math.Sin(angleInDegrees * Math.PI / 180F)) + origin.Y;
return new PointF(x, y);
}
ใครต้องการตรีโกณฯ เมื่อคุณมีจำนวนเชิงซ้อน :
#include <complex.h>
#include <math.h>
#define PI 3.14159265358979323846
typedef complex double Point;
Point point_on_circle ( double radius, double angle_in_degrees, Point centre )
{
return centre + radius * cexp ( PI * I * ( angle_in_degrees / 180.0 ) );
}
ดำเนินการในJavaScript (ES6) :
/**
* Calculate x and y in circle's circumference
* @param {Object} input - The input parameters
* @param {number} input.radius - The circle's radius
* @param {number} input.angle - The angle in degrees
* @param {number} input.cx - The circle's origin x
* @param {number} input.cy - The circle's origin y
* @returns {Array[number,number]} The calculated x and y
*/
function pointsOnCircle({ radius, angle, cx, cy }){
angle = angle * ( Math.PI / 180 ); // Convert from Degrees to Radians
const x = cx + radius * Math.cos(angle);
const y = cy + radius * Math.sin(angle);
return [ x, y ];
}
การใช้งาน:
const [ x, y ] = pointsOnCircle({ radius: 100, angle: 180, cx: 150, cy: 150 });
console.log( x, y );
a
ต้องเป็นเรเดียน - มันยากสำหรับฉันในฐานะผู้เริ่มต้นที่จะเข้าใจ