|
From: Gordon K. <kin...@us...> - 2004-05-10 19:18:54
|
Update of /cvsroot/teem/teem/src/limn In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11010 Modified Files: GNUmakefile Added Files: enumsLimn.c Log Message: added an airEnum for limnCameraPathTrack --- NEW FILE: enumsLimn.c --- /* teem: Gordon Kindlmann's research software Copyright (C) 2004, 2003, 2002, 2001, 2000, 1999, 1998 University of Utah This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "limn.h" char _limnCameraPathTrackStr[][AIR_STRLEN_SMALL] = { "(unknown limnCameraPathTrack)", "from", "at", "both" }; char _limnCameraPathTrackDesc[][AIR_STRLEN_MED] = { "unknown limnCameraPathTrack", "track through eye points, quaternions for camera orientation", "track through look-at points, quaternions for camera orientation", "track eye point, look-at point, and up vector with seperate splines" }; char _limnCameraPathTrackStrEqv[][AIR_STRLEN_SMALL] = { "from", "fr", "at", "look-at", "lookat", "both", "" }; int _limnCameraPathTrackValEqv[] = { limnCameraPathTrackFrom, limnCameraPathTrackFrom, limnCameraPathTrackAt, limnCameraPathTrackAt, limnCameraPathTrackAt, limnCameraPathTrackBoth }; airEnum _limnCameraPathTrack = { "limnCameraPathTrack", LIMN_CAMERA_PATH_TRACK_MAX, _limnCameraPathTrackStr, NULL, _limnCameraPathTrackDesc, _limnCameraPathTrackStrEqv, _limnCameraPathTrackValEqv, AIR_FALSE }; airEnum * limnCameraPathTrack = &_limnCameraPathTrack; Index: GNUmakefile =================================================================== RCS file: /cvsroot/teem/teem/src/limn/GNUmakefile,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** GNUmakefile 30 Mar 2004 14:02:42 -0000 1.18 --- GNUmakefile 10 May 2004 19:18:35 -0000 1.19 *************** *** 49,53 **** $(L).OBJS = defaultsLimn.o qn.o light.o env.o cam.o methodsLimn.o \ obj.o transform.o shapes.o renderLimn.o io.o hestLimn.o \ ! splineMisc.o splineMethods.o splineEval.o $(L).TESTS = test/map test/light test/tcam test/tps test/tspline test/tbc \ test/tcamanim test/soid test/off2eps test/triimg --- 49,53 ---- $(L).OBJS = defaultsLimn.o qn.o light.o env.o cam.o methodsLimn.o \ obj.o transform.o shapes.o renderLimn.o io.o hestLimn.o \ ! splineMisc.o splineMethods.o splineEval.o enumsLimn.o $(L).TESTS = test/map test/light test/tcam test/tps test/tspline test/tbc \ test/tcamanim test/soid test/off2eps test/triimg |