Changeset 4894 for nanovis/trunk/Command.cpp
- Timestamp:
- Dec 20, 2014 1:00:49 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
nanovis/trunk/Command.cpp
r4880 r4894 66 66 #include "HeightMap.h" 67 67 #include "Camera.h" 68 #include "ZincBlendeVolume.h" 68 69 #include "ZincBlendeReconstructor.h" 69 70 #include "OrientationIndicator.h" … … 1291 1292 if ((nBytes > 5) && (strncmp(bytes, "<HDR>", 5) == 0)) { 1292 1293 TRACE("ZincBlende Stream loading..."); 1293 volume = (Volume *)ZincBlendeReconstructor::getInstance()->loadFromMemory(bytes);1294 volume = ZincBlendeReconstructor::getInstance()->loadFromMemory(bytes); 1294 1295 if (volume == NULL) { 1295 1296 Tcl_AppendResult(interp, "can't get volume instance", (char *)NULL); … … 1364 1365 char info[1024]; 1365 1366 int cmdLength = 1366 sprintf(info, "nv>data tag %s min %g max %g vmin %g vmax %g\n", tag, 1367 sprintf(info, "nv>data tag %s min %g max %g vmin %g vmax %g\n", tag, 1367 1368 volume->wAxis.min(), volume->wAxis.max(), 1368 1369 Volume::valueMin, Volume::valueMax); … … 1853 1854 return (*proc) (clientData, interp, objc, objv); 1854 1855 } 1855 1856 1856 1857 1857 static int
Note: See TracChangeset
for help on using the changeset viewer.