-rw-r--r-- | src/controller/set_ortho.c | 26 | ||||
-rw-r--r-- | src/controller/set_ortho.h | 11 |
2 files changed, 37 insertions, 0 deletions
diff --git a/src/controller/set_ortho.h b/src/controller/set_ortho.h new file mode 100644 index 0000000..4e95330 --- a/dev/null +++ b/src/controller/set_ortho.h @@ -0,0 +1,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 |