libjbt

object.h

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

#ifndef jbt_object_h
#define jbt_object_h

#include "blobtree.h"


class jbt_object : public jbt_blobtree
{
public:

    ~jbt_object();

protected:
    jbt_object();

    void uv( jVec2&, jbt_blobtree*, const jMat4& ) {}
    
    jNorm3 repulse();


    jbt_blobtree::Type type() const { return jbtNonGeometric; }

};

#endif

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