Summary:
Draws a user-defined polygon in the viewer.
Header File:
edis_grobj.h
Library Name:
viewlib
|
Edis_GrObjTarget* target,
|
Edis_GrObjContext* context,
|
Eerr_ErrorReport** lclerr,
context
This is the Graphics Context.
lclerr
Error handling structure pointer.
npoints
Number of points.
points
Array of points to be used when drawing the polygon.
target
The name(including path) of the target ehfa file.
Description:
This function draws an unfilled polygon. The points array is an array of Edis_GrObjPoint structure.
This structure has the following form.
typedef long Edis_GrObjCoordType;
struct _edis_GrObjPoint {
Edis_GrObjCoordType X, Y;
};
Notes:
None.
Return Description:
This function has no return value.