Changeset 82
- Timestamp:
- Mar 22, 2005, 2:12:17 PM (20 years ago)
- Location:
- Swollen
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Swollen/doc/contract2_priorities.txt
r76 r82 35 35 - Optional height-dependent semi-transparent water surface [0] 36 36 - Interactive positioning of light(s) [0] 37 38 39 UNDER DEVELOPMENT: 40 37 41 - Ability to have shading on bed-surface. This was the case with 38 42 distro31052004 and is very useful with large scale topographies. … … 40 44 both swwviewer and swollen and let Ole know what you think. 41 45 Perhaps default to that standard background in the absence of bedslope.jpg 42 or perhaps tie in with the geotiff item by having such a default behaviour. 43 44 45 46 UNDER DEVELOPMENT: 47 46 or perhaps tie in with the geotiff item by having such a default behaviour. [5] 47 - fix popping on shallow triangles [5] 48 48 - use of geotiff in sww file [5] 49 49 - Optional colour coding of water surface based on arbitrary fields … … 51 51 - Output coordinates defining camera position [?] 52 52 - Ability to handle scenes with a resolution of 500,000+ triangles [3] 53 - add back steep culling ability [4] 53 54 54 55 … … 56 57 BUG LIST 57 58 58 - cairns dataset reveals popping triangles (zbuffer?) 59 - culling 60 - --help not working, -h giving an "abort trap" 59 61 - steepcull dataset reveals steep angle cull problem 60 62 - dragging sww onto swollen (all in one directory) does not produce the same results as … … 62 64 - Problems with Duncan's, Chris' and Stephen Roberts' machines at GA: Swollen won't render semi 63 65 transparency. Swwviewer works fine. (This appeared to work on Dunca's computer 13/12/4?). 64 66 - with -scale, rotation seems unnatural (and initial position shifted vertically?) 65 67 66 68 -
Swollen/swollen/keyboardeventhandler.cpp
r72 r82 136 136 } 137 137 138 -
Swollen/swollen/main.cpp
r74 r82 189 189 // second camera 190 190 Producer::ref_ptr<Producer::Camera> pcam1 = viewer.getCamera(0); 191 pcam1->setProjectionRectangle( 0.0f, 0.5f, 0.0f, 1.0f ); 192 191 193 Producer::Camera* pcam2 = new Producer::Camera(); 192 pcam1->setProjectionRectangle( 0.0f, 0.75f, 0.0f, 1.0f );193 194 194 pcam2->setRenderSurface( pcam1->getRenderSurface() ); 195 195 pcam2->setProjectionRectangle( 0.76f, 1.0f, 0.0f, 0.25f ); 196 196 viewer.getCameraConfig()->addCamera( "pictureInPicture", pcam2 ); 197 197 198 osgProducer::OsgSceneHandler* sh = new osgProducer::OsgSceneHandler(); 198 199 sh->getSceneView()->setSceneData( rootnode ); 199 200 pcam2->setSceneHandler( sh ); 200 201 201 202 202 203 203 unsigned int timestep = 0; 204 204 while( !viewer.done() ) -
Swollen/swollen/version.cpp
r74 r82 1 const char* version() { const char* s = "Revision: 7 3M"; return s; }1 const char* version() { const char* s = "Revision: 76M"; return s; } -
Swollen/swwreader/swwreader.cpp
r64 r82 133 133 134 134 // default texture map without geodata 135 // FIXME: only use texture if specified on command line, otherwise colour 135 136 _bedslopetexture = new std::string("bedslope.jpg"); 136 137 _bedslopegeodata.hasData = false;
Note: See TracChangeset
for help on using the changeset viewer.