operator + method
- Coordinates other
Adds two coordinates.
Implementation
Coordinates operator +(Coordinates other) =>
Coordinates(x: x + other.x, y: y + other.y, z: z + other.z);
Adds two coordinates.
Coordinates operator +(Coordinates other) =>
Coordinates(x: x + other.x, y: y + other.y, z: z + other.z);