transform_matrix_transformer.qbk 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2007-2013 Barend Gehrels, Amsterdam, the Netherlands.
  4. Copyright (c) 2008-2013 Bruno Lalande, Paris, France.
  5. Copyright (c) 2009-2013 Mateusz Loskot, London, UK.
  6. Use, modification and distribution is subject to the Boost Software License,
  7. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. http://www.boost.org/LICENSE_1_0.txt)
  9. =============================================================================/]
  10. [/ Generated by doxygen_xml2qbk 1.1.1, don't change, will be overwritten automatically]
  11. [/ Generated from doxy/doxygen_output/xml/classboost_1_1geometry_1_1strategy_1_1transform_1_1matrix__transformer.xml]
  12. [section:strategy_transform_matrix_transformer strategy::transform::matrix_transformer]
  13. '''<indexterm><primary>strategy</primary></indexterm><indexterm><primary>transform</primary></indexterm><indexterm><primary>matrix_transformer</primary></indexterm>'''
  14. Affine transformation strategy in Cartesian system.
  15. [heading Description]
  16. The strategy serves as a generic definition of an affine transformation matrix and procedure for applying it to a given point.
  17. [heading Synopsis]
  18. ``template<typename CalculationType, std::size_t Dimension1, std::size_t Dimension2>
  19. class strategy::transform::matrix_transformer
  20. : public strategy::transform::detail::matrix_transformer::matrix_transformer< CalculationType, Dimension1, Dimension2 >
  21. {
  22. // ...
  23. };
  24. ``
  25. [heading Template parameter(s)]
  26. [table
  27. [[Parameter] [Description]]
  28. [[typename CalculationType] []]
  29. [[std::size_t Dimension1] [number of dimensions to transform from ]]
  30. [[std::size_t Dimension2] [number of dimensions to transform to ]]
  31. ]
  32. [heading Constructor(s)]
  33. [table
  34. [[Function] [Description] [Parameters] ]
  35. [[``template<typename Matrix>
  36. matrix_transformer(Matrix const & matrix)``
  37. ] [] [[* Matrix const &]: ['matrix]:
  38. ]]
  39. [[``matrix_transformer()``
  40. ] [] [
  41. ]]
  42. ]
  43. [heading Header]
  44. `#include <boost/geometry/strategies/transform/matrix_transformers.hpp>`
  45. [endsect]