相对于方向的统一角度和位置

问题描述 投票:0回答:1

我试图在一个点周围创建一个矢量点的“星”,它们之间的角度是恒定的,并且源和点之间的原始线(见图)我通过创建具有小偏移量的新矢量来完成从原来的:

enter image description here

private void FixedUpdate()
{
    ray = Camera.main.ScreenPointToRay(Input.mousePosition);
    if (Physics.Raycast(ray, out hit, 3000))
    {

    Vector3 mousePos = hit.point;
    Debug.DrawLine(transform.position, hit.point, Color.yellow);

    Vector3[] explorePoints = new Vector3[6] {
                new Vector3 (hit.point.x - 1 , hit.point.y, hit.point.z + 1), // diag left
                new Vector3 (hit.point.x + 1 , hit.point.y, hit.point.z + 1), // diag right
                new Vector3 (hit.point.x - 1 , hit.point.y, hit.point.z), // left
                new Vector3 (hit.point.x + 1 , hit.point.y, hit.point.z), // right
                new Vector3 (hit.point.x - 1 , hit.point.y, hit.point.z - 1), // diag left back
                new Vector3 (hit.point.x + 1 , hit.point.y, hit.point.z - 1), // diag right back
    };

    for (int x = 0; x < explorePoints.Length; x++)
    {
        Debug.DrawLine(mousePos, explorePoints[x], Color.red);
    }

}
}

当鼠标之间的角度接近0或180时,这可以正常工作,但当然不是在其他角度:

enter image description here

我知道我可能需要Quaternion类将球体和鼠标点之间的角度应用于方向向量,但不能完全弄明白,例如

Quaternion q = Quaternion.FromToRotation(transform.position, mousePos);
for (int x = 0; x < explorePoints.Length; x++)
{
      Debug.DrawLine(mousePos, q * explorePoints[x], Color.red);
}

如何将红线始终保持与黄线成n角?

c# unity3d unity5 vectormath
1个回答
1
投票

enter image description here

private void FixedUpdate()
  {
    RaycastHit hit;
    Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
    if (Physics.Raycast(ray, out hit, 3000))
    {
      Vector3 mousePos = hit.point;
      Debug.DrawLine(transform.position, hit.point, Color.yellow);
      Vector3 rayDir = transform.position - mousePos;
      Vector3[] explorePoints = new Vector3[6] {
        Quaternion.Euler(0, 0, 45) * rayDir.normalized,
        Quaternion.Euler(0, 0, 90) * rayDir.normalized,
        Quaternion.Euler(0, 0, 135) * rayDir.normalized,
        Quaternion.Euler(0, 0, -45) * rayDir.normalized,
        Quaternion.Euler(0, 0, -90) * rayDir.normalized,
        Quaternion.Euler(0, 0, -135) * rayDir.normalized,
      };

      float starLength = 100;
      for (int x = 0; x < explorePoints.Length; x++)
      {
        // we want to use the vector as DIRECTION, not point, hence mousePos + explorePoints[x] (starLength is just the length of the red line)
        Debug.DrawLine(mousePos, mousePos + (explorePoints[x] * starLength), Color.red);
      }
    }
  }
© www.soinside.com 2019 - 2024. All rights reserved.