/***************************************************************************
rasterizer.h - description
-------------------
begin : Tue Dec 19 2000
copyright : (C) 2000 by Jan Walter
email : jan@blender.nl
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef RASTERIZER_H
#define RASTERIZER_H
struct PyObject;
/**This is in fact no class it is a module in Python. But I use it here as a class to document the global functions availabe in the Rasterizer module.
*@author Jan Walter
*/
class Rasterizer {
public:
Rasterizer();
~Rasterizer();
/** Returns the window width as a Python integer. */
PyObject* getWindowWidth();
/** Returns the window height as a Python integer. */
PyObject* getWindowHeight();
/** Enable or disable the visibility. The return value is None. */
PyObject* enableVisibility(int visible);
};
#endif
Documentation generated by jan@nvidea on Thu Dec 21 14:04:43 CET 2000