00001 /* 00002 File: SVL.h 00003 00004 Function: Master header for a simple version of the VL library. 00005 The various classes are named Vec2, Mat3, Vec, etc. 00006 Link with -lsvl. 00007 00008 Author(s): Andrew Willmott 00009 00010 Copyright: (c) 1995-2000, Andrew Willmott 00011 */ 00012 00013 00014 #ifndef __SVL__ 00015 #define __SVL__ 00016 00017 // Include headers | templates 00018 00019 #include "vl/Vec2.h" 00020 #include "vl/Vec3.h" 00021 #include "vl/Vec4.h" 00022 #include "vl/Vec.h" 00023 00024 #include "vl/Mat2.h" 00025 #include "vl/Mat3.h" 00026 #include "vl/Mat4.h" 00027 #include "vl/Mat.h" 00028 #include "vl/Transform.h" 00029 00030 #endif