**Vector2** 两个向量之间的差,以 Vector2 结构体形式返回。
从一个向量中减去另一个向量。
从 a
中减去 b
的每个分量。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { // Create two vectors. Vector2 A = new Vector2(1, 2); Vector2 B = new Vector2(3, 2); // Subtract vector B from vector A. Vector2 C = A - B; // Print the result. print(C); } }
**Vector2** 向量的负值,以 Vector2 结构体形式返回。
对向量取反。
向量中的每个分量都被取反,以获得其负值。向量的负值具有相同的幅度,但方向相反。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { // Create a vector. Vector2 A = new Vector2(1, 2); // Find the negative value. Vector2 B = - A; // Print the result. print(B + " is the negative of " + A); } }