Changeset 4897 for nanovis/trunk
- Timestamp:
- Dec 21, 2014 5:12:14 PM (6 years ago)
- Location:
- nanovis/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
nanovis/trunk/Makefile.in
r4896 r4897 352 352 Grid.o: Grid.cpp Grid.h Axis.h Chain.h $(UTIL_DIR)/Fonts.h $(VRMATH_DIR)/include/vrmath/Color4f.h $(VRMATH_DIR)/include/vrmath/Vector4f.h 353 353 HeightMap.o: HeightMap.cpp HeightMap.h Shader.h 354 LIC.o: LIC.cpp LIC.h Shader.h354 LIC.o: LIC.cpp LIC.h FlowTypes.h Shader.h define.h 355 355 OrientationIndicator.o: OrientationIndicator.cpp OrientationIndicator.h 356 356 ParticleAdvectionShader.o: ParticleAdvectionShader.cpp ParticleAdvectionShader.h Shader.h 357 357 ParticleEmitter.o: ParticleEmitter.cpp ParticleEmitter.h 358 ParticleRenderer.o: ParticleRenderer.cpp ParticleRenderer.h 358 ParticleRenderer.o: ParticleRenderer.cpp ParticleRenderer.h FlowTypes.h define.h 359 359 ParticleSystem.o: ParticleSystem.cpp ParticleSystem.h 360 360 ParticleSystemFactory.o: ParticleSystemFactory.cpp ParticleSystemFactory.h … … 381 381 TransferFunction.o: TransferFunction.cpp 382 382 Unirect.o: Unirect.cpp Unirect.h Command.h Trace.h 383 VelocityArrowsSlice.o: VelocityArrowsSlice.cpp VelocityArrowsSlice.h nanovis.h Camera.h Volume.h Shader.h383 VelocityArrowsSlice.o: VelocityArrowsSlice.cpp VelocityArrowsSlice.h nanovis.h FlowTypes.h Camera.h Volume.h Shader.h 384 384 Volume.o: Volume.cpp Volume.h config.h define.h 385 385 VolumeInterpolator.o: VolumeInterpolator.cpp VolumeInterpolator.h Volume.h -
nanovis/trunk/ReaderCommon.cpp
r3935 r4897 66 66 * \brief Normalize data to [0,1] based on vmin,vmax range 67 67 * 68 * Data outside of given range is clamped, and NaNs are set to69 * -1 in the output70 *71 68 * \param data Float array of unnormalized data, will be normalized on return 72 69 * \param count Number of elts in array 73 * \param stride Stride between values in data array74 70 * \param vmin Minimum value in data array 75 71 * \param vmax Maximum value in data array -
nanovis/trunk/Volume.h
r3935 r4897 286 286 287 287 void getOutlineColor(float *rgb); 288 288 289 289 void setPosition(const vrmath::Vector3f& pos) 290 { 290 { 291 291 _position = pos; 292 292 } … … 298 298 299 299 void setScale(const vrmath::Vector3f& scale) 300 { 300 { 301 301 _scale = scale; 302 302 } -
nanovis/trunk/dxReader.cpp
r4063 r4897 29 29 #include <string> 30 30 31 #include <Rp Field1D.h>31 #include <RpMesh1D.h> 32 32 #include <RpFieldRect3D.h> 33 33 #include <RpFieldPrism3D.h> -
nanovis/trunk/nanovis.h
r4887 r4897 30 30 #include "config.h" 31 31 #include "Camera.h" 32 #include "FlowTypes.h"33 32 34 33 //defines for the image based flow visualization
Note: See TracChangeset
for help on using the changeset viewer.