* @brief Return the complex_transformation * * Returns the complex transformation that incorporates magnification and arbitrary angle rotation. * This method returns the complex transformation for the first element in the array. To obtain the * complex transformation for a specific element, use 'complex_trans (*iter)' instead. */
| 2298 | * complex transformation for a specific element, use 'complex_trans (*iter)' instead. |
| 2299 | */ |
| 2300 | complex_trans_type complex_trans () const |
| 2301 | { |
| 2302 | return mp_base ? mp_base->complex_trans (simple_trans_type (m_trans)) : complex_trans_type (m_trans); |
| 2303 | } |
| 2304 | |
| 2305 | /** |
| 2306 | * @brief Return the complex_transformation |
no outgoing calls