MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / addT

Function addT

src/python/PyImath/PyImathColor4.cpp:289–295  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

287
288template <class T>
289static Color4<T>
290addT(Color4<T> &v, T a)
291{
292 MATH_EXC_ON;
293 Color4<T> w(v.r + a, v.g + a, v.b + a, v.a + a);
294 return w;
295}
296
297template <class T>
298static const Color4<T> &

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected