以下是问题的图片:
注意: 我发现了另外两个非常相似或相同的问题,但我无法解决这些问题: Finding coordinates of a point between two points?
P.S。这不是家庭作业我需要这个编程问题,但我忘了我的数学......
答案 0 :(得分:6)
假设A是位置向量,B是位置向量,maxLength是您允许的最大长度。
// Create a vector that describes going from A to B
var AtoB = (B - A);
// Make a vector going from A to B, but only one unit in length
var AtoBUnitLength = Vector2.Normalize(AtoB);
// Make a vector in the direction of B from A, of length maxLength
var AtoB1 = AtoBUnitLength * maxLength;
// B1 is the starting point (A) + the direction vector of the
// correct length we just created.
var B1 = A + AtoB1;
// One liner:
var B1 = A + Vector2.Normalize(B - A) * maxLength;