由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
CS版 - 请教有图形编程经验的大牛
相关主题
【包子求助】20M*20M的loop怎么搞? (转载)求救
***********RPM problem****************Separate Web server and Application server
中国球形机器人研制成功 可沿任意方向运动(图) (转载)问nutch设置
问一个ns2安装的问题《IBM DB2 9.7 高级管理指南》文字版[PDF]
Some interview questionswindows 7 蓝屏求助
About Simics[转载] 问个mathematical programming的问题
请大牛指点自己的博士研究方向!问一个machine learning/SVM 问题
在linux 和 Unix 上做 C/C++ 有差别吗?求solver
相关话题的讨论汇总
话题: p2话题: p1话题: l2话题: l1话题: end
进入CS版参与讨论
1 (共1页)
b****r
发帖数: 1272
1
As shown in figure: In 3D, Given 2 links attached end to end with lengths
L1 and L2 respectively, a point P1 that the first link starts at, and a
point P2 that you want the end of the 2nd link to be at, write a function
that finds the configurations of the links that put the 2nd link’s end at
point P2.
我的理解是这个function是(P1,P2,L1,L2),但是输出(link的configuration
)应该怎么表达呢? 我想分三种情况讨论:
1.if distance(P1,P2) > L1+L2 : 无解(不可能把线段L2放到P2点)
2.if distance(P1,P2) == L1+L2 : 有唯一解 (两个线段在一直线上,交点就是P1,P2
中点),这种情况functi
w***n
发帖数: 1084
2
Maybe the function can return the intersection point (P) between two
segments, such that:
|P-P1|==l1 and |P-P2|=l2,
which can be calculated from two quadratic equations with two unknowns.
l*f
发帖数: 218
3
圆心,半径吧,你自己都分析出来了
1 (共1页)
进入CS版参与讨论
相关主题
求solverSome interview questions
我不行了,大虾帮忙About Simics
请推荐合适的显示程序...请大牛指点自己的博士研究方向!
WRONG! Re: PROOF -- Re: EE challenge CS在linux 和 Unix 上做 C/C++ 有差别吗?
【包子求助】20M*20M的loop怎么搞? (转载)求救
***********RPM problem****************Separate Web server and Application server
中国球形机器人研制成功 可沿任意方向运动(图) (转载)问nutch设置
问一个ns2安装的问题《IBM DB2 9.7 高级管理指南》文字版[PDF]
相关话题的讨论汇总
话题: p2话题: p1话题: l2话题: l1话题: end