From: Gary B. <gb...@cs...> - 2002-05-27 00:40:16
|
> It's a flag which is 0 (no wrap), 1 (wrap first coordinate), or 2 (wrap > second coordinate). This coordinate wrap idea got started with the Tcl API > and migrated to the python and java API's. The idea is most useful when > dealing with polar coordinates (see polar examples for the contour plots > (xw09.py) and the shade plots (xw16.py). When wrap is set, the first angle > point is duplicated as the last point by the interface code so that contours > and shades are smooth. > Thanks Alan, Doesn't "wrapping" like this imply allocating storage for another array? This could get expensive... Can anyone comment on the callbacks? Some of the comments in plmodule.c imply some of the callbacks aren't really implemented. gb |