MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / operator-

Method operator-

modules/gui/gui/include/SkrGui/math/vector.hpp:153–153  ·  view source on GitHub ↗

arithmetic ops

Source from the content-addressed store, hash-verified

151
152 // arithmetic ops
153 inline Vector4 operator-() const SKR_NOEXCEPT { return Vector4(-x, -y, -z, -w); }
154
155 friend inline Vector4 operator+(const Vector4& lhs, float rhs) SKR_NOEXCEPT { return Vector4(lhs.x + rhs, lhs.y + rhs, lhs.z + rhs, lhs.w + rhs); }
156 friend inline Vector4 operator-(const Vector4& lhs, float rhs) SKR_NOEXCEPT { return Vector4(lhs.x - rhs, lhs.y - rhs, lhs.z - rhs, lhs.w - rhs); }

Callers

nothing calls this directly

Calls 1

Vector4Class · 0.85

Tested by

no test coverage detected