| 193 | { return (val * m_scale.m_val) + m_offset.m_val; } |
| 194 | |
| 195 | bool nonstandard() const |
| 196 | { |
| 197 | return m_scale.m_auto || m_offset.m_auto || |
| 198 | m_scale.m_val != 1.0 || m_offset.m_val != 0.0; |
| 199 | } |
| 200 | }; |
| 201 | |
| 202 | inline std::istream& operator>>(std::istream& in, XForm::XFormComponent& xfc) |
no outgoing calls
no test coverage detected