#ifndef __VECTOR_LIB_H__ #define __VECTOR_LIB_H__ #include #include #include /////////////////////////////////////////////////// // Originally, I was going to make this a bunch // of functions, that operate on lists of Vectors. // // However, I decided to put them into a class in // case I need some persistent state further down // the road. /////////////////////////////////////////////////// class VectorLib { public: VectorLib(); ~VectorLib(); void FindBounds( Bounds3f& orBounds, FixedArray& irPoints ); protected: }; VectorLib& theVectorLib(); #endif