MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / operator -

Method operator -

jni/venus/vec4.h:69–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67 // unary operators
68 vec4<T> operator +() const { return vec4<T>(+x, +y, +z, +w); }
69 vec4<T> operator -() const { return vec4<T>(-x, -y, -z, -w); }
70
71 // binary operators, multiply and divide operations for scalar
72 friend vec4<T> operator +(const vec4<T>& lhs, const vec4<T>& rhs) { vec4<T> result(lhs); result += rhs; return result; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected