00001 /* 00002 File: VLConfig.h 00003 00004 Function: Contains configuration options for compiling the VL 00005 library. 00006 00007 Author(s): Andrew Willmott 00008 00009 Copyright: (c) 1995-2000, Andrew Willmott 00010 */ 00011 00012 // 00013 // Current options are as follows: 00014 // 00015 // VL_HAS_ABSF - has the absf() call. 00016 // VL_HAS_IEEEFP - ieeefp.h exists. 00017 // VL_ROW_ORIENT - Use row-oriented transforms, so you can swap 'em with 00018 // OpenGL. If this is defined, transformations are 00019 // v = v * Rot3x(u, 0.5), rather than v = Rot3x(u, 0.5) * v. 00020 // This is off by default. 00021 // 00022 00023 // --- Configuration ----------------------------------------------------------