| Function Name | Description |
|---|---|
| XintCreateContour | Creates an unmanaged Contour widget. |
| XintContourAbort | Aborts computation during gridding process. |
| XintContourFreeContourLevel | Convenience function to free a contour level structure returned by function XintContourGetContourLevel. |
| XintContourGetContourLevel | Returns a structure containing a contour level description for the specified Z value. |
| XintContourGetZValue | Returns the Z value at a given location. |
| XintContourZoom | Zoom a Contour widget. |
Widget XintCreateContour (...)
| Widget | parent | Parent of new Contour widget. |
| char * | name | Name of new Contour widget. |
| ArgList | arglist | List of resource/value items. |
| Cardinal | argcount | Number of items in arglist. |
void XintContourAbort (Widget widget)
where widget is the ID of the contour widget.
void XintContourFreeContourLevel (XintContourLevel *contour_level)
where contour_level is a pointer to a XintContourLevel structure.
XintContourLevel *XintContourGetContourLevel (...)
| Widget | widget | ID of contour widget. |
| float | z_value | The Z value of interest. |
| int | nrefine | A positive integer that specifies the resolution of the output contours. (1 to get the grid resolution, 2 to get twice the grid resolution, etc.). |
The function returns NULL if argument nrefine is invalid or if there is no grid available.
Boolean XintContourGetZValue (...)
| Widget | widget | ID of contour widget. |
| float | x | X coordinate. |
| float | y | Y coordinate. |
| float * | z_value | Returns the corresponding Z value. |
The function returns False if the input coordinate specification is outside the valid range.
void XintContourZoom (...)
| Widget | widget | Widget ID of the Contour widget containing the area to be scaled. |
| Widget | parent | Specify a widget ID that will be used as the parent of the zoom widget or specify NULL to modify the original widget (zoom in place). |
| XintGridAreaSelectionCalbackStruct * | selection | Specify the address of the structure, returned by callback XmNareaSelectionCallback, that indicates the area to be zoomed or specify NULL if you want the whole widget area to be zoomed. |
| float | sx | The horizontal scale factor. |
| float | sy | The vertical scale factor. |