KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
gr_display.h
Go to the documentation of this file.
1 /* $Id: gr_display.h 17393 2014-08-23 20:19:14Z predoehl $ */
2 /* {{{=========================================================================== *
3  |
4  | Copyright (c) 1994-2010 by Kobus Barnard (author)
5  |
6  | Personal and educational use of this code is granted, provided that this
7  | header is kept intact, and that the authorship is not misrepresented, that
8  | its use is acknowledged in publications, and relevant papers are cited.
9  |
10  | For other use contact the author (kobus AT cs DOT arizona DOT edu).
11  |
12  | Please note that the code in this file has not necessarily been adequately
13  | tested. Naturally, there is no guarantee of performance, support, or fitness
14  | for any particular task. Nonetheless, I am interested in hearing about
15  | problems that you encounter.
16  |
17  | Author: Kyle Simek
18  * =========================================================================== }}}*/
19 
21 
22 #ifndef KJB_CPP_GR_DISPLAY
23 #define KJB_CPP_GR_DISPLAY
24 
25 // vim: tabstop=4 shiftwidth=4 foldmethod=marker
26 #include <m_cpp/m_matrix.h>
27 #include <i_cpp/i_image.h>
28 
29 #ifdef KJB_HAVE_GLUT
30 namespace kjb
31 {
32 namespace opengl
33 {
34 
35 
36 void gl_display(const Matrix& mat, const std::string& title = "");
37 //
38 //
39 //void gl_display(const Image& img, const std::string& title = "");
40 //
41 
42 } // namespace opengl
43 } // namespace kjb
44 
45 #endif
46 #endif /* KJB_CPP_GR_DISPLAY */
Definition for the Matrix class, a thin wrapper on the KJB Matrix struct and its related functionalit...
Code for a wrapper class around the C struct KJB_Image.