00001 /* G L O B A L . C 00002 * BRL-CAD 00003 * 00004 * Copyright (c) 2004-2006 United States Government as represented by 00005 * the U.S. Army Research Laboratory. 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public License 00009 * as published by the Free Software Foundation; either version 2 of 00010 * the License, or (at your option) any later version. 00011 * 00012 * This library is distributed in the hope that it will be useful, but 00013 * WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Library General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with this file; see the file named COPYING for more 00019 * information. 00020 */ 00021 00022 /** @addtogroup librt */ 00023 /*@{*/ 00024 /** @file global.c 00025 * All global state for the BRL-CAD Package ray-tracing library "librt". 00026 * 00027 * Author - 00028 * Michael John Muuss 00029 * 00030 * Source - 00031 * SECAD/VLD Computing Consortium, Bldg 394 00032 * The U. S. Army Ballistic Research Laboratory 00033 * Aberdeen Proving Ground, Maryland 21005-5066 00034 * 00035 */ 00036 /*@}*/ 00037 00038 #ifndef lint 00039 static const char RCSglobal[] = "@(#)$Header: /cvsroot/brlcad/brlcad/src/librt/global.c,v 14.10 2006/09/16 02:04:25 lbutler Exp $ (BRL)"; 00040 #endif 00041 00042 #include "common.h" 00043 00044 00045 00046 #include <stdio.h> 00047 #include <math.h> 00048 00049 #include "machine.h" 00050 #include "vmath.h" 00051 #include "raytrace.h" 00052 00053 struct rt_g rt_g; /* All global state */ 00054 00055 /* 00056 * Local Variables: 00057 * mode: C 00058 * tab-width: 8 00059 * c-basic-offset: 4 00060 * indent-tabs-mode: t 00061 * End: 00062 * ex: shiftwidth=4 tabstop=8 00063 */