| 167 | } |
| 168 | |
| 169 | ConstTransformRcPtr NamedTransformImpl::getTransform(TransformDirection dir) const |
| 170 | { |
| 171 | if (dir == TRANSFORM_DIR_FORWARD) |
| 172 | { |
| 173 | return m_forwardTransform; |
| 174 | } |
| 175 | else if (dir == TRANSFORM_DIR_INVERSE) |
| 176 | { |
| 177 | return m_inverseTransform; |
| 178 | } |
| 179 | throw Exception("Named transform: Unspecified TransformDirection."); |
| 180 | } |
| 181 | |
| 182 | ConstTransformRcPtr NamedTransform::GetTransform(const ConstNamedTransformRcPtr & nt, |
| 183 | TransformDirection dir) |
no outgoing calls
no test coverage detected