Changeset 3611 for trunk/packages/vizservers/nanovis/nanovis.h
- Timestamp:
- Apr 2, 2013, 8:02:50 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/vizservers/nanovis/nanovis.h
r3605 r3611 49 49 class Fonts; 50 50 } 51 52 class Camera; 53 class Flow; 54 class Grid; 55 class HeightMap; 56 class LIC; 51 57 class OrientationIndicator; 52 }53 54 class VolumeRenderer;55 class NvParticleRenderer;56 class VelocityArrowsSlice;57 class NvLIC;58 58 class PlaneRenderer; 59 59 class Texture2D; 60 class HeightMap;61 class Grid;62 class NvCamera;63 60 class TransferFunction; 61 class VelocityArrowsSlice; 64 62 class Volume; 65 class Flow;63 class VolumeRenderer; 66 64 67 65 class NanoVis … … 101 99 static void removeAllData(); 102 100 103 static const NvCamera *getCamera()101 static const Camera *getCamera() 104 102 { 105 103 return cam; … … 161 159 static unsigned char *screenBuffer; 162 160 static Texture2D *legendTexture; 163 static nv::util::Fonts *fonts;161 static util::Fonts *fonts; 164 162 static int updir; 165 static NvCamera *cam;166 static nv::graphics::RenderContext *renderContext;163 static Camera *cam; 164 static graphics::RenderContext *renderContext; 167 165 168 166 static TransferFunctionHashmap tfTable; ///< maps transfunc name to TransferFunction object … … 177 175 static VolumeRenderer *volRenderer; 178 176 static VelocityArrowsSlice *velocityArrowsSlice; 179 static NvLIC *licRenderer;177 static LIC *licRenderer; 180 178 static PlaneRenderer *planeRenderer; 181 static nv::OrientationIndicator *orientationIndicator;179 static OrientationIndicator *orientationIndicator; 182 180 static Grid *grid; 183 181 … … 192 190 }; 193 191 192 } 193 194 194 #endif
Note: See TracChangeset
for help on using the changeset viewer.