我正在尝试实现一个数学程序以确保一个圆 c1 完全在另一个圆 c2 内。
它应该按以下方式工作:
给定 c1(x, y, r) 和 c2(x, y, r) 并且 c2.r>c1.r
- 如果 c1 在 c2 内,则返回 true
- 返回一个向量 V(x,y) 作为应用于 c1 的最小校正,因此它在 c2 内。
你觉得它怎么样?对于数学家或物理学家来说应该很容易,但对我来说很难。
我已经在 lua 中尝试过实现,但肯定有问题。
local function newVector(P1, P2)
local w, h=(P2.x-P1.x), (P2.y-P1.y)
local M=math.sqrt(w^2 + h^2)
local alpha=math.atan(h/w)
return {m=M, alpha=alpha}
end
local function isWithin(C1, C2)
local V12=newVector(C1, C2)
local R12=C2.r-C1.r
local deltaR=R12-V12.m
if deltaR>=0 then
return true
else
local correctionM=(V12.m+deltaR) --module value to correct
local a=V12.alpha
print("correction angle: "..math.deg(a))
local correctionX=correctionM*math.cos(a)
local correctionY=correctionM*math.sin(a)
return {x=correctionX, y=correctionY}
end
end
谢谢!