#include "fillramp.h"
#include "vectrndr.h"
#include "nodetext.h"
#include "nodeshad.h"
#include "swfbitmp.h"
#include "swftext.h"
#include "swffont.h"
#include "swfshape.h"
#include "swfbuttn.h"
#include "swfplace.h"
#include "swfsprit.h"
Go to the source code of this file.
Classes | |
class | FlashRenderRegion |
Provides the necessary functions to convert image data stored in the Camelot tree into the correct values for exporting to the Flash 4 format, and output these to the relevant device context. More... | |
Functions | |
template<class T> | |
T | Max (T InputA, T InputB) |
Replacement for the Max macro. It's type safe, and can operate on any C++ data type. | |
template<class T> | |
T | Max (T InputA, T InputB, T InputC, T InputD) |
Wrapper around the Max function to return the maximum value from four values. (Used for finding the maximum value for the extends of a bounding rectangle. | |
template<class T> | |
T | Min (T InputA, T InputB) |
Replacement for the Min macro. It's type safe, and can operate on any C++ data type. | |
template<class T> | |
T | Min (T InputA, T InputB, T InputC, T InputD) |
Wrapper around the Min function to return the minimum value from four values. (Used for finding the minimum value for the extends of a bounding rectangle. | |
template<class T> | |
T | Absol (T a) |
Replacement for the Abs macro. It's got the advantage of being easier to debug, and fully type safe. |
|
Replacement for the Abs macro. It's got the advantage of being easier to debug, and fully type safe.
Definition at line 214 of file swfrndr.h.
|
|
Wrapper around the Max function to return the maximum value from four values. (Used for finding the maximum value for the extends of a bounding rectangle.
Definition at line 156 of file swfrndr.h.
|
|
Replacement for the Max macro. It's type safe, and can operate on any C++ data type.
Definition at line 134 of file swfrndr.h.
|
|
Wrapper around the Min function to return the minimum value from four values. (Used for finding the minimum value for the extends of a bounding rectangle.
Definition at line 196 of file swfrndr.h.
|
|
Replacement for the Min macro. It's type safe, and can operate on any C++ data type.
Definition at line 174 of file swfrndr.h. 00175 { 00176 if ( ( InputA ) < ( InputB ) ) 00177 return InputA; 00178 else 00179 return InputB; 00180 }
|