Artifact 3b4fb9ff8c8b417ef1092779a1465568c422fbfb:
- File operator/atan2-grey8-grey8.crimp — part of check-in [c5760f1135] at 2012-01-05 20:30:33 on branch infinite-plane — Updated the atan2 operators to use the generic binop machinery to handle images which are translated to each other. (user: andreask size: 400) [more...]
atan2_grey8_grey8 Tcl_Obj* imageAObj Tcl_Obj* imageBObj /* * atan2() of all pixels of the two input images. */ #define BINOP(x,y) (atan2((x),(y) * 57.29577951308232087679)) #define BINOP_POST(z) (((z) < 0) ? (360 + (z)) : (z)) #include "binop_grey8_grey8_float.c" /* vim: set sts=4 sw=4 tw=80 et ft=c: */ /* * Local Variables: * mode: c * c-basic-offset: 4 * fill-column: 78 * End: */