This structure provides cell parameters for IG_FX_mosaic_tiles function.
Copy Code
|
|
---|---|
typedef struct tagAT_MOSAIC_CELL_PARAMS
{
AT_INT Height;
AT_INT PolarCenterX;
AT_INT PolarCenterY;
enumIGMosaicType Type;
AT_INT Width;
} AT_MOSAIC_CELL_PARAMS, * LPAT_MOSAIC_CELL_PARAMS;
|
Name | Type | Description |
---|---|---|
Height | AT_INT | Height of the cell, in pixels. |
PolarCenterX | AT_INT | X coordinate of the polar center relative to the left top corner of the image, if the cell type is either IG_MOSAIC_POLAR or IG_MOSAIC_SPIDERWEB. |
PolarCenterY | AT_INT | Y coordinate of the polar center relative to the left top corner of the image, if the cell type is either IG_MOSAIC_POLAR or IG_MOSAIC_SPIDERWEB. |
Type | enumIGMosaicType | Cell type. Cells can be rectangular, polar, or look like a spider web. |
Width | AT_INT | Width of the cell, in pixels. |