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

Function addT

src/python/PyImath/PyImathColor3.cpp:213–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211
212template <class T>
213static Color3<T>
214addT(Color3<T> &v, T a)
215{
216 MATH_EXC_ON;
217 Color3<T> w(v.x + a, v.y + a, v.z + a);
218 return w;
219}
220
221template <class T>
222static const Color3<T> &

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected