operator + method

Vector4 operator + (Vector4 other)

Add two vectors.

Implementation

Vector4 operator +(Vector4 other) => clone()..add(other);