|
From: <kin...@us...> - 2003-11-16 16:26:06
|
Update of /cvsroot/teem/teem/src/limn
In directory sc8-pr-cvs1:/tmp/cvs-serv16086/limn
Modified Files:
limn.h
Log Message:
API CHANGE: removed nrrdUnwrap: this was just a wrapper around nrrdNix, and nothing in teem uses it. Nice to have as a pair for nrrdWrap, but its still fat, so it goes
Index: limn.h
===================================================================
RCS file: /cvsroot/teem/teem/src/limn/limn.h,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** limn.h 2 Oct 2003 03:35:24 -0000 1.41
--- limn.h 16 Nov 2003 16:25:19 -0000 1.42
***************
*** 299,302 ****
--- 299,313 ----
#define LIMN_SPLINE_INFO_MAX 6
+ enum {
+ limnCameraPathTrackUnknown, /* 0 */
+ limnCameraPathTrackFrom, /* 1: 3-D spline for *from* points, quaternion
+ spline for camera directions towards at */
+ limnCameraPathTrackAt, /* 2: 3-D spline for *at* points, quaternion
+ spline for directions back to camera */
+ limnCameraPathTrackBoth, /* 3: 2 3-D splines: one for from, one for at */
+ limnCameraPathTrackLast
+ };
+ #define LIMN_CAMERA_PATH_TRACK_MAX 3
+
/*
******** limnSpline
|