#ifndef CAT2DGeomTextPixmap_h
#define CAT2DGeomTextPixmap_h
// COPYRIGHT DASSAULT SYSTEMES 1999
/**
* @CAA2Level L1
* @CAA2Usage U1
*/
/**
* Structure representing a bitmap image of a 2D geometric text.
*/
struct CAT2DGeomTextPixmap
{
/**
* Bitmap position coordinates in the model.
* It is expressed in model coordinates.
*/
float _Position[2];
/**
* Location of the text origin in the bitmap.
* It is the first glyph left base point in the bitmap image.
* This point must coincide with _Position in the model.
*/ float
_Origin[2];
/**
* Bitmap image.
* It is encoded in RGBA (4 bytes per pixel).
*/
CATPixelImage * _Pixmap;
};
#endif