00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * 00008 * Mark Alexander 00009 * Side Effects 00010 * 477 Richmond Street West 00011 * Toronto, Ontario 00012 * Canada M5V 3E7 00013 * 416-504-9876 00014 * 00015 * NAME: RU_Convolve.h 00016 * 00017 * COMMENTS: 00018 * Does a convolution. 00019 */ 00020 #ifndef RU_CONVOLVE_H 00021 #define RU_CONVOLVE_H 00022 00023 #include "RU_API.h" 00024 #include <UT/UT_FilterType.h> 00025 00026 #include "RU_Algorithm.h" 00027 00028 class RU_API RU_Convolve : public RU_Algorithm 00029 { 00030 public: 00031 RU_Convolve(); 00032 virtual ~RU_Convolve(); 00033 00034 DECLARE_FILTER_OP(RU_ConvolveOp); 00035 00036 // Parameters. 00037 float myConvolveEffect; 00038 int myConvolveSizeX, myConvolveSizeY; 00039 float *myConvolveFilter; 00040 }; 00041 00042 00043 #endif
1.5.9