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

coordinates.hpp « graphics - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63d5eff7d3c5816bdaf186e2b0d86b3941bd26af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "../base/matrix.hpp"

namespace graphics
{
  /// Calculate matrix for orthographic projection
  void getOrthoMatrix(math::Matrix<float, 4, 4> & m,
                      float left,
                      float right,
                      float bottom,
                      float top,
                      float near,
                      float far);
}