path:
root/
src/
controller/
set_ortho.h (
plain)
blob: 4e9533028b6d4f5509cd102c421097c1e7cf34ed
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef SET_ORTHO_H
#define SET_ORTHO_H
/*
* The same orthographic project should be used when in selection or
* rendering mode. This function breaks the logic into a single
* location so that it can be call from code for either mode.
*/
void set_ortho (void);
#endif // SET_ORTHO_H
|