OutPixOp(In, PixOp)
{
foreach i in In
PixOp.doIt(In(i), i.x, i.y, i.z);
}
The requirements on the PixOpT template parameter expressed as class definition are:
template<class ArithT>
class PixOpT
{
public:
typedef HxTagPixOpOut DirectionCategory;
typedef HxTagTransVar TransVarianceCategory;
typedef HxTag1Phase PhaseCategory;
PixOpT(HxTagList&, int w, int h, int d);
void doIt(const ArithT& v, int x, int y, int z);
static HxString className();
};
1.2.12 written by Dimitri van Heesch,
© 1997-2001