Changeset 3502


Ignore:
Timestamp:
Mar 14, 2013, 11:09:17 PM (11 years ago)
Author:
ldelgass
Message:

Add basic VTK structured points reader to nanovis, update copyright dates.

Location:
trunk/packages/vizservers/nanovis
Files:
99 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanovis/Axis.cpp

    r2946 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 * Authors: George A. Howlett <gah@purdue.edu>
     6 */
    27#include <stdlib.h>
    38#include <stdio.h>
  • trunk/packages/vizservers/nanovis/Axis.h

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 * Authors: George A. Howlett <gah@purdue.edu>
     6 */
    27#ifndef AXIS_H
    38#define AXIS_H
  • trunk/packages/vizservers/nanovis/AxisRange.h

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 * Authors: George A. Howlett <gah@purdue.edu>
     6 */
    27#ifndef AXIS_RANGE_H
    38#define AXIS_RANGE_H
  • trunk/packages/vizservers/nanovis/BucketSort.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
     6
    27#include "BucketSort.h"
    38
  • trunk/packages/vizservers/nanovis/BucketSort.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef BUCKETSORT_H
    37#define BUCKETSORT_H
  • trunk/packages/vizservers/nanovis/CmdProc.cpp

    r2831 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <string.h>
    37
  • trunk/packages/vizservers/nanovis/CmdProc.h

    r2831 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26/*
    37 *-------------------------------------------------------------------------------
  • trunk/packages/vizservers/nanovis/Command.cpp

    r3497 r3502  
    1515 *           Purdue Rendering and Perceptualization Lab (PURPL)
    1616 *
    17  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     17 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1818 *
    1919 *  See the file "license.terms" for information on usage and
     
    6363#endif
    6464#include "dxReader.h"
     65#include "VtkReader.h"
    6566#include "Grid.h"
    6667#include "HeightMap.h"
     
    12321233
    12331234    if ((nBytes > 5) && (strncmp(bytes, "<HDR>", 5) == 0)) {
    1234         TRACE("ZincBlende stream is in");
     1235        TRACE("ZincBlende Stream loading...");
    12351236         //std::stringstream fdata(std::ios_base::out|std::ios_base::in|std::ios_base::binary);
    12361237        //fdata.write(buf.bytes(),buf.size());
     
    12591260        Tcl_SetHashValue(hPtr, volPtr);
    12601261        volPtr->name(Tcl_GetHashKey(&NanoVis::volumeTable, hPtr));
     1262    } else if ((nBytes > 14) && (strncmp(bytes, "# vtk DataFile", 14) == 0)) {
     1263        TRACE("VTK loading...");
     1264        std::stringstream fdata;
     1265        fdata.write(bytes, nBytes);
     1266        if (nBytes <= 0) {
     1267            ERROR("data buffer is empty");
     1268            abort();
     1269        }
     1270        Rappture::Outcome context;
     1271        volPtr = load_vtk_volume_stream(context, tag, fdata);
     1272        if (volPtr == NULL) {
     1273            Tcl_AppendResult(interp, context.remark(), (char*)NULL);
     1274            return TCL_ERROR;
     1275        }
    12611276    } else {
    1262         if ((nBytes > 5) && (strncmp(bytes, "<ODX>", 5) == 0)) {
    1263             bytes += 5;
    1264             nBytes -= 5;
     1277        // **Deprecated** OpenDX format
     1278        if ((nBytes > 5) && (strncmp(bytes, "<ODX>", 5) == 0)) {
     1279            bytes += 5;
     1280            nBytes -= 5;
    12651281        }
    12661282        TRACE("DX loading...");
    12671283        std::stringstream fdata;
    12681284        fdata.write(bytes, nBytes);
    1269         if (nBytes <= 0) {
    1270             ERROR("data buffer is empty");
    1271             abort();
    1272         }
     1285        if (nBytes <= 0) {
     1286            ERROR("data buffer is empty");
     1287            abort();
     1288        }
    12731289        Rappture::Outcome context;
    1274         volPtr = load_volume_stream(context, tag, fdata);
     1290        volPtr = load_dx_volume_stream(context, tag, fdata);
    12751291        if (volPtr == NULL) {
    12761292            Tcl_AppendResult(interp, context.remark(), (char*)NULL);
  • trunk/packages/vizservers/nanovis/ConvexPolygon.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/ConvexPolygon.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/FlowCmd.cpp

    r3497 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
    2 
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    36#include <assert.h>
    47#include <stdlib.h>
  • trunk/packages/vizservers/nanovis/FlowCmd.h

    r3492 r3502  
    1616 *           Purdue Rendering and Perceptualization Lab (PURPL)
    1717 *
    18  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     18 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1919 *
    2020 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/GradientFilter.cpp

    r3452 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdlib.h>
    37#include <float.h>
  • trunk/packages/vizservers/nanovis/GradientFilter.h

    r2877 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef GRADIENT_FILTER_H
    37#define GRADIENT_FILTER_H
  • trunk/packages/vizservers/nanovis/Grid.cpp

    r3470 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdlib.h>
    37#include <stdio.h>
  • trunk/packages/vizservers/nanovis/Grid.h

    r3465 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef GRID_H
    37#define GRID_H
  • trunk/packages/vizservers/nanovis/HeightMap.cpp

    r3492 r3502  
    11 /* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <float.h>
    37
  • trunk/packages/vizservers/nanovis/HeightMap.h

    r3497 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef HEIGHTMAP_H
    37#define HEIGHTMAP_H
  • trunk/packages/vizservers/nanovis/Makefile.in

    r3493 r3502  
    135135                Plane.o \
    136136                PlaneRenderer.o \
     137                ReaderCommon.o \
    137138                RenderVertexArray.o \
    138139                RpAVTranslate.o \
     
    148149                VolumeInterpolator.o \
    149150                VolumeRenderer.o \
     151                VtkReader.o \
    150152                ZincBlendeVolume.o \
    151153                dxReader.o \
    152                 dxReaderCommon.o \
    153154                nanovis.o \
    154                 md5.o 
     155                md5.o
    155156
    156157resources       = \
     
    311312PointSetRenderer.o: PointSetRenderer.cpp PointSetRenderer.h
    312313PointShader.o: PointShader.cpp PointShader.h
     314ReaderCommon.o: ReaderCommon.cpp ReaderCommon.h GradientFilter.h $(VRMATH_DIR)/include/vrmath/Vector3f.h
    313315RenderVertexArray.o: RenderVertexArray.cpp RenderVertexArray.h
    314316RpAVTranslate.o: RpAVTranslate.cpp RpAVTranslate.h nvconf.h
     
    324326VolumeInterpolator.o: VolumeInterpolator.cpp VolumeInterpolator.h Volume.h
    325327VolumeRenderer.o: VolumeRenderer.cpp VolumeRenderer.h
     328VtkReader.o: VtkReader.h Trace.h Volume.h $(VRMATH_DIR)/include/vrmath/Vector3f.h ReaderCommon.h nanovis.h
    326329ZincBlendeVolume.o: ZincBlendeVolume.cpp ZincBlendeVolume.h $(AUXSRC)
    327 dxReader.o: dxReader.cpp dxReaderCommon.h config.h nanovis.h Unirect.h ZincBlendeVolume.h NvZincBlendeReconstructor.h
    328 dxReaderCommon.o: dxReaderCommon.cpp dxReaderCommon.h GradientFilter.h $(VRMATH_DIR)/include/vrmath/Vector3f.h
     330dxReader.o: dxReader.cpp ReaderCommon.h config.h nanovis.h Unirect.h ZincBlendeVolume.h NvZincBlendeReconstructor.h
    329331nanovis.o: nanovis.cpp nanovis.h $(AUXSRC) FlowCmd.h Grid.h HeightMap.h NvCamera.h NvColorTableRenderer.h NvFlowVisRenderer.h NvLIC.h NvZincBlendeReconstructor.h PerfQuery.h PlaneRenderer.h PointSetRenderer.h PointSet.h Switch.h Trace.h Unirect.h VelocityArrowsSlice.h VolumeInterpolator.h VolumeRenderer.h ZincBlendeVolume.h Axis.h Chain.h
    330332md5.o: md5.h
  • trunk/packages/vizservers/nanovis/NvCamera.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvCamera.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvColorTableRenderer.cpp

    r3465 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdlib.h>
    37
  • trunk/packages/vizservers/nanovis/NvColorTableRenderer.h

    r3465 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_COLORTABLE_RENDERER_H
    37#define NV_COLORTABLE_RENDERER_H
  • trunk/packages/vizservers/nanovis/NvColorTableShader.cpp

    r2956 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "NvColorTableShader.h"
    37
  • trunk/packages/vizservers/nanovis/NvColorTableShader.h

    r2956 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_COLORTABLE_SHADER_H
    37#define NV_COLORTABLE_SHADER_H
  • trunk/packages/vizservers/nanovis/NvFlowVisRenderer.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvFlowVisRenderer.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NVFLOWVISRENDERER_H
    37#define NVFLOWVISRENDERER_H
  • trunk/packages/vizservers/nanovis/NvLIC.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvLIC.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvParticleAdvectionShader.cpp

    r2956 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "NvParticleAdvectionShader.h"
    37
  • trunk/packages/vizservers/nanovis/NvParticleAdvectionShader.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_PARTICLE_ADV_SHADER_H
    37#define NV_PARTICLE_ADV_SHADER_H
  • trunk/packages/vizservers/nanovis/NvParticleRenderer.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvParticleRenderer.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvRegularVolumeShader.cpp

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
    2 
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    36#include "NvRegularVolumeShader.h"
    47
  • trunk/packages/vizservers/nanovis/NvRegularVolumeShader.h

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_REGULAR_SHADER_H
    37#define NV_REGULAR_SHADER_H
  • trunk/packages/vizservers/nanovis/NvShader.cpp

    r3465 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdio.h>
    37
  • trunk/packages/vizservers/nanovis/NvShader.h

    r3452 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_SHADER_H
    37#define NV_SHADER_H
  • trunk/packages/vizservers/nanovis/NvStdVertexShader.cpp

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "NvStdVertexShader.h"
    37
  • trunk/packages/vizservers/nanovis/NvStdVertexShader.h

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_STD_VERTEX_SHADER_H
    37#define NV_STD_VERTEX_SHADER_H
  • trunk/packages/vizservers/nanovis/NvVectorField.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "nanovis.h"
    37
  • trunk/packages/vizservers/nanovis/NvVectorField.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_VECTOR_FIELD_H
    37#define NV_VECTOR_FIELD_H
  • trunk/packages/vizservers/nanovis/NvVolumeShader.cpp

    r2798 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "NvVolumeShader.h"
    37
  • trunk/packages/vizservers/nanovis/NvVolumeShader.h

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_VOLUME_SHADER_H
    37#define NV_VOLUME_SHADER_H
  • trunk/packages/vizservers/nanovis/NvZincBlendeReconstructor.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdio.h>
    37#include <string.h>
  • trunk/packages/vizservers/nanovis/NvZincBlendeReconstructor.h

    r3492 r3502  
    88 * @author Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  * Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 * See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/NvZincBlendeVolumeShader.cpp

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
    2 
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    36#include "NvZincBlendeVolumeShader.h"
    47
  • trunk/packages/vizservers/nanovis/NvZincBlendeVolumeShader.h

    r3362 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef NV_ZINCBLENDE_SHADER_H
    37#define NV_ZINCBLENDE_SHADER_H
  • trunk/packages/vizservers/nanovis/PCASplit.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdio.h>
    37
  • trunk/packages/vizservers/nanovis/PCASplit.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef PCA_SPLIT_H
    37#define PCA_SPLIT_H
  • trunk/packages/vizservers/nanovis/ParticleEmitter.cpp

    r2805 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "ParticleEmitter.h"
    37
  • trunk/packages/vizservers/nanovis/ParticleEmitter.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef PARTICLEEMITTER_H
    37#define PARTICLEEMITTER_H
  • trunk/packages/vizservers/nanovis/ParticleSystem.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "nvconf.h"
    37
  • trunk/packages/vizservers/nanovis/ParticleSystem.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef PARTICLESYSTEM_H
    37#define PARTICLESYSTEM_H
  • trunk/packages/vizservers/nanovis/ParticleSystemFactory.cpp

    r3465 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdio.h>
    37#include <string.h>
  • trunk/packages/vizservers/nanovis/ParticleSystemFactory.h

    r2860 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef PARTICLESYSTEMFACTORY_H
    37#define PARTICLESYSTEMFACTORY_H
  • trunk/packages/vizservers/nanovis/PerfQuery.cpp

    r3177 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/PerfQuery.h

    r3452 r3502  
    1010 *           Purdue Rendering and Perceptualization Lab (PURPL)
    1111 *
    12  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     12 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1313 *
    1414 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Plane.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Plane.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/PlaneRenderer.cpp

    r3177 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/PlaneRenderer.h

    r3177 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/PointSet.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <stdlib.h>
    37#include <stdio.h>
  • trunk/packages/vizservers/nanovis/PointSet.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef POINT_SET_H
    37#define POINT_SET_H
  • trunk/packages/vizservers/nanovis/PointSetRenderer.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <GL/glew.h>
    37
  • trunk/packages/vizservers/nanovis/PointSetRenderer.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef POINT_SET_RENDERER_H
    37#define POINT_SET_RENDERER_H
  • trunk/packages/vizservers/nanovis/PointShader.cpp

    r2956 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "PointShader.h"
    37
  • trunk/packages/vizservers/nanovis/PointShader.h

    r2956 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef POINTSHADER_H
    37#define POINTSHADER_H
  • trunk/packages/vizservers/nanovis/ReaderCommon.cpp

    r3500 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
    2 #include "dxReaderCommon.h"
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
     6#include "ReaderCommon.h"
    37#include "GradientFilter.h"
    48
  • trunk/packages/vizservers/nanovis/ReaderCommon.h

    r3500 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef DX_READER_COMMON_H
    37#define DX_READER_COMMON_H
  • trunk/packages/vizservers/nanovis/RenderVertexArray.cpp

    r3452 r3502  
    2929 *           Purdue Rendering and Perceptualization Lab (PURPL)
    3030 *
    31  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     31 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    3232 *
    3333 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/RenderVertexArray.h

    r3177 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/RpAVTranslate.cpp

    r3337 r3502  
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    77 *
    8  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     8 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    99 * ----------------------------------------------------------------------
    1010 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/RpAVTranslate.h

    r3492 r3502  
    66 *  AUTHOR:  Derrick Kearney, Purdue University
    77 *
    8  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     8 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    99 * ----------------------------------------------------------------------
    1010 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Texture1D.cpp

    r3452 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Texture1D.h

    r3177 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Texture2D.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Texture2D.h

    r3177 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Texture3D.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Texture3D.h

    r3362 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/TransferFunction.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/TransferFunction.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Unirect.cpp

    r3452 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 * Author: George A. Howlett <gah@purdue.edu>
     6 */
    27#include <float.h>
    38#include <tcl.h>
  • trunk/packages/vizservers/nanovis/Unirect.h

    r2922 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 * Author: George A. Howlett <gah@purdue.edu>
     6 */
    27#ifndef UNIRECT_H
    38#define UNIRECT_H
  • trunk/packages/vizservers/nanovis/VelocityArrowsSlice.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include "nvconf.h"
    37
  • trunk/packages/vizservers/nanovis/VelocityArrowsSlice.h

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef VELOCITY_ARROW_SLICE_H
    37#define VELOCITY_ARROW_SLICE_H
  • trunk/packages/vizservers/nanovis/Volume.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/Volume.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/VolumeInterpolator.cpp

    r3492 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#include <string.h>
    37#include <memory.h>
  • trunk/packages/vizservers/nanovis/VolumeInterpolator.h

    r2953 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef VOLUME_INTERPOLATOR_H
    37#define VOLUME_INTERPOLATOR_H
  • trunk/packages/vizservers/nanovis/VolumeRenderer.cpp

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/VolumeRenderer.h

    r3492 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/ZincBlendeVolume.cpp

    r3492 r3502  
    99 *           Purdue Rendering and Perceptualization Lab (PURPL)
    1010 *
    11  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     11 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1212 *
    1313 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/ZincBlendeVolume.h

    r3492 r3502  
    99 *           Purdue Rendering and Perceptualization Lab (PURPL)
    1010 *
    11  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     11 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1212 *
    1313 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/config.h

    r3474 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/define.h

    r3459 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/dxReader.cpp

    r3492 r3502  
    1212 *           Purdue Rendering and Perceptualization Lab (PURPL)
    1313 *
    14  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     14 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1515 *
    1616 *  See the file "license.terms" for information on usage and
     
    3434#include <RpFieldPrism3D.h>
    3535
    36 // common dx functions
    37 #include "dxReaderCommon.h"
     36// common file/data reader functions
     37#include "ReaderCommon.h"
    3838
    3939#include "config.h"
     
    6060 */
    6161Volume *
    62 load_volume_stream(Rappture::Outcome& result, const char *tag,
    63                    std::iostream& fin)
     62load_dx_volume_stream(Rappture::Outcome& result, const char *tag,
     63                      std::iostream& fin)
    6464{
    65     TRACE("load_volume_stream %s", tag);
     65    TRACE("Enter tag:%s", tag);
    6666
    6767    Rappture::MeshTri2D xymesh;
  • trunk/packages/vizservers/nanovis/dxReader.h

    r2877 r3502  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
     2/*
     3 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4 *
     5 */
    26#ifndef DXREADER_H
    37#define DXREADER_H
     
    1115
    1216extern Volume *
    13 load_volume_stream(Rappture::Outcome& status, const char *tag,
    14                    std::iostream& fin);
     17load_dx_volume_stream(Rappture::Outcome& status, const char *tag,
     18                      std::iostream& fin);
    1519
    1620#endif
  • trunk/packages/vizservers/nanovis/nanovis.cpp

    r3497 r3502  
    99 *           Purdue Rendering and Perceptualization Lab (PURPL)
    1010 *
    11  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     11 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1212 *
    1313 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/nanovis.h

    r3497 r3502  
    88 *           Purdue Rendering and Perceptualization Lab (PURPL)
    99 *
    10  *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
     10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
    1111 *
    1212 *  See the file "license.terms" for information on usage and
  • trunk/packages/vizservers/nanovis/nvconf.h.in

    r3335 r3502  
     1/*
     2 * Copyright (C) 2004-2013  HUBzero Foundation, LLC
     3 *
     4 */
    15/* nanovis/nvconf.h.in.  Generated from configure.in by autoheader.  */
    26
  • trunk/packages/vizservers/nanovis/protocol-nanovis.txt

    r3478 r3502  
    11================================================================================
     2
     3 Copyright (C) 2004-2013  HUBzero Foundation, LLC
     4
    25================================================================================
    36Protocol for nanovis render server. 
Note: See TracChangeset for help on using the changeset viewer.