Changeset 82


Ignore:
Timestamp:
Mar 22, 2005, 2:12:17 PM (19 years ago)
Author:
darran
Message:
  • unknown changes, likely to do with Picture in Picture testing.
Location:
Swollen
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • Swollen/doc/contract2_priorities.txt

    r76 r82  
    3535- Optional height-dependent semi-transparent water surface [0]
    3636- Interactive positioning of light(s) [0]
     37
     38 
     39UNDER DEVELOPMENT:
     40
    3741- Ability to have shading on bed-surface. This was the case with
    3842  distro31052004 and is very useful with large scale topographies.
     
    4044  both swwviewer and swollen and let Ole know what you think.
    4145  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]
    4848- use of geotiff in sww file [5]
    4949- Optional colour coding of water surface based on arbitrary fields
     
    5151- Output coordinates defining camera position [?]
    5252- Ability to handle scenes with a resolution of 500,000+ triangles [3]
     53- add back steep culling ability [4]
    5354
    5455
     
    5657BUG LIST
    5758
    58 - cairns dataset reveals popping triangles (zbuffer?)
     59- culling
     60- --help not working, -h giving an "abort trap"
    5961- steepcull dataset reveals steep angle cull problem
    6062- dragging sww onto swollen (all in one directory) does not produce the same results as
     
    6264- Problems with Duncan's, Chris' and Stephen Roberts' machines at GA: Swollen won't render semi
    6365  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?)
    6567
    6668
  • Swollen/swollen/keyboardeventhandler.cpp

    r72 r82  
    136136}
    137137
    138 
  • Swollen/swollen/main.cpp

    r74 r82  
    189189    // second camera
    190190    Producer::ref_ptr<Producer::Camera> pcam1 = viewer.getCamera(0);
     191    pcam1->setProjectionRectangle( 0.0f, 0.5f, 0.0f, 1.0f );
     192
    191193    Producer::Camera* pcam2 = new Producer::Camera();
    192     pcam1->setProjectionRectangle( 0.0f, 0.75f, 0.0f, 1.0f );
    193 
    194194    pcam2->setRenderSurface( pcam1->getRenderSurface() );
    195195    pcam2->setProjectionRectangle( 0.76f, 1.0f, 0.0f, 0.25f );
    196196    viewer.getCameraConfig()->addCamera( "pictureInPicture", pcam2 );
     197
    197198    osgProducer::OsgSceneHandler* sh = new osgProducer::OsgSceneHandler();
    198199    sh->getSceneView()->setSceneData( rootnode );
    199200    pcam2->setSceneHandler( sh );
    200201
    201 
    202 
     202   
    203203    unsigned int timestep = 0;
    204204    while( !viewer.done() )
  • Swollen/swollen/version.cpp

    r74 r82  
    1 const char* version() { const char* s = "Revision: 73M"; return s; }
     1const char* version() { const char* s = "Revision: 76M"; return s; }
  • Swollen/swwreader/swwreader.cpp

    r64 r82  
    133133
    134134    // default texture map without geodata
     135    // FIXME: only use texture if specified on command line, otherwise colour
    135136    _bedslopetexture = new std::string("bedslope.jpg");
    136137    _bedslopegeodata.hasData = false;
Note: See TracChangeset for help on using the changeset viewer.