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

Function divTR

src/python/PyImath/PyImathColor4.cpp:494–502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

492
493template <class T>
494static Color4<T>
495divTR(Color4<T> &color, T a)
496{
497 MATH_EXC_ON;
498 return Color4<T>(a / color.r,
499 a / color.g,
500 a / color.b,
501 a / color.a);
502}
503
504template <class T>
505static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected