Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20587) +++ trunk/doc/user/09_appendix/action_details.html (revision 20588) @@ -490,12 +490,6 @@ - - - - - - find Nets which apply are marked @emph{found} and are drawn in the @@ -558,6 +552,34 @@ +

polygon

+

+Argument: +

+ + + + + + + + + +
+ Close + + Creates the final segment of the polygon. This may fail if clipping to 45 degree lines is switched on, in which case a warning is issued. +
+ CloseHole + + Creates the final segment of the polygon hole. This may fail if clipping to 45 degree lines is switched on, in which case a warning is issued. +
+ PreviousPoint + + Resets the newly entered corner to the previous one. The Undo action will call Polygon(PreviousPoint) when appropriate to do so. +
+ +

printcalibrate

This will print a calibration page, which you would measure and type the measurements in, so that future printouts will be more precise. Index: trunk/doc/user/09_appendix/action_src/polygon.html =================================================================== --- trunk/doc/user/09_appendix/action_src/polygon.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/polygon.html (revision 20588) @@ -0,0 +1,17 @@ +Argument: +

+ +
Close + Creates the final segment of the polygon. This may fail if clipping + to 45 degree lines is switched on, in which case a warning is issued. + +
CloseHole + Creates the final segment of the polygon hole. This may fail if clipping + to 45 degree lines is switched on, in which case a warning is issued. + +
PreviousPoint + Resets the newly entered corner to the previous one. The Undo action + will call Polygon(PreviousPoint) when appropriate to do so. + +
+ Index: trunk/src/polygon_act.c =================================================================== --- trunk/src/polygon_act.c (revision 20587) +++ trunk/src/polygon_act.c (revision 20588) @@ -91,29 +91,7 @@ static const char pcb_acts_Polygon[] = "Polygon(Close|CloseHole|PreviousPoint)"; static const char pcb_acth_Polygon[] = "Some polygon related stuff."; - -/* %start-doc actions Polygon - -Polygons need a special action routine to make life easier. - -@table @code - -@item Close -Creates the final segment of the polygon. This may fail if clipping -to 45 degree lines is switched on, in which case a warning is issued. - -@item CloseHole -Creates the final segment of the polygon hole. This may fail if clipping -to 45 degree lines is switched on, in which case a warning is issued. - -@item PreviousPoint -Resets the newly entered corner to the previous one. The Undo action -will call Polygon(PreviousPoint) when appropriate to do so. - -@end table - -%end-doc */ - +/* DOC: polygon.html */ static fgw_error_t pcb_act_Polygon(fgw_arg_t *res, int argc, fgw_arg_t *argv) { int op;