Construct from R,G,B references of values.
| 85 | |
| 86 | // Construct from R,G,B references of values. |
| 87 | st_RGB(const T& nR, const T& nG, const T& nB):_R(nR),_G(nG),_B(nB),R(_R),G(_G),B(_B) {} |
| 88 | st_RGB(T& nR, T& nG, T& nB):R(nR),G(nG),B(nB) {} |
| 89 | |
| 90 | // Copy constructors. |
nothing calls this directly
no outgoing calls
no test coverage detected