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

Function divTR

src/python/PyImath/PyImathColor3.cpp:411–418  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

409
410template <class T>
411static Color3<T>
412divTR(Color3<T> &color, T a)
413{
414 MATH_EXC_ON;
415 return Color3<T>(a / color.x,
416 a / color.y,
417 a / color.z);
418}
419
420template <class T>
421static Color3<T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected