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

Method operator +

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

unary operators

Source from the content-addressed store, hash-verified

66
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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected