#include <math.h>
#include "idcnt.h"
#include "idima.h"
Go to the source code of this file.
Functions | |
int | _IdCntDrawPolygonOffset (PCONTOUR_USHORT contour, int ox, int oy, PPIMAGE_UCHAR image, int code, int closed, int greylevel) |
Draws a polygon or polyline (depending on the closed parameter) on an image out of a CNT_USHORT with a given origin. | |
int | IdCntDrawPolyLine (PCONTOUR_USHORT contour, PPIMAGE_UCHAR image, int code, int greylevel) |
Draws a poly line (continuous collection of linear segments) on an image out of a CNT_USHORT. | |
int | IdCntDrawPolyLineOffset (PCONTOUR_USHORT contour, int ox, int oy, PPIMAGE_UCHAR image, int code, int greylevel) |
Draws an "offseted" poly line (continuous collection of linear segments) on an image out of a CNT_USHORT. | |
int | IdCntDrawPolygon (PCONTOUR_USHORT contour, PPIMAGE_UCHAR image, int code, int greylevel) |
Draws a polygon (closed continuous collection of linear segments) on an image out of a CNT_USHORT. | |
int | IdCntDrawPolygonOffset (PCONTOUR_USHORT contour, int ox, int oy, PPIMAGE_UCHAR image, int code, int greylevel) |
Draws an "offseted" polygon (closed continuous collection of linear segments) on an image out of a CNT_USHORT. |
|
Draws a polygon or polyline (depending on the closed parameter) on an image out of a CNT_USHORT with a given origin.
Definition at line 57 of file cntfill.c. References code, IdCntGetX, IdCntGetY, IdCntUsedNbX, IdImaDrawLine(), and image. Referenced by IdCntDrawPolygon(), IdCntDrawPolygonOffset(), IdCntDrawPolyLine(), and IdCntDrawPolyLineOffset(). |
|
Draws a polygon (closed continuous collection of linear segments) on an image out of a CNT_USHORT.
Definition at line 148 of file cntfill.c. References _IdCntDrawPolygonOffset(), code, and image. Referenced by IdCntFillPolygon(). |
|
Draws an "offseted" polygon (closed continuous collection of linear segments) on an image out of a CNT_USHORT.
Definition at line 170 of file cntfill.c. References _IdCntDrawPolygonOffset(), code, and image. Referenced by IdCntFillPolygonXXX(), and IdCntSurfacePoly(). |
|
Draws a poly line (continuous collection of linear segments) on an image out of a CNT_USHORT.
Definition at line 103 of file cntfill.c. References _IdCntDrawPolygonOffset(), code, and image. |
|
Draws an "offseted" poly line (continuous collection of linear segments) on an image out of a CNT_USHORT.
Definition at line 126 of file cntfill.c. References _IdCntDrawPolygonOffset(), code, and image. |