#ifndef jbt_extrude_h #define jbt_extrude_h #include "warp.h" class jbt_extrude : public jbt_warp { public: jbt_extrude( int, int, const jVec3&, jFlt, jbt_blobtree* = 0 ); void precompute( const jVec3& ); jVec3 unwarp( const jVec3& ) const; jVec3 warp( const jVec3& ) const; private: int axs; jVec3 D; jVec3 k; jFlt l; }; #endif