Welcome to mirror list, hosted at ThFree Co, Russian Federation.

circled_symbol.hpp « graphics - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ece9ec7ff8a9ade644e87fd92af31c8ffb1f4d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "graphics/symbol_element.hpp"
#include "graphics/circle_element.hpp"

namespace graphics
{
  class CircledSymbol : public SymbolElement
  {
  public:
    CircledSymbol(SymbolElement::Params const & symbolElement,
                  CircleElement::Params const & circleElement);

    void draw(OverlayRenderer * s, math::Matrix<double, 3, 3> const & m) const;
    void setTransformation(const math::Matrix<double, 3, 3> & m);

  private:
    CircleElement m_circle;
  };
}