libjbt

extrude.h

This is the verbatim text of the extrude.h include file.

#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

JSP / libjbt v0.1 mtigges@cpsc.ucalgary.ca