Ignore:
Timestamp:
10/11/05 19:25:27 (19 years ago)
Author:
mattausch
Message:

VisibilityInfo?: query sort operators as templates
X3dExporter: Fixed polygon wire frame, bsp splits, and bsp split planes visualization
ViewCellBsp?: Added rays to split criteria (not finished yet)
OgreOctreeSceneManager?: fixed error (mNumOctants instead of mNumOctrees)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/X3dParser.cpp

    r312 r318  
    484484                                ptr = endptr; 
    485485                                 
    486                                 float y = strtod(ptr, &endptr); 
     486                                float y = (float)strtod(ptr, &endptr); 
    487487 
    488488                                 
     
    491491                                ptr = endptr; 
    492492 
    493                                 float z = strtod(ptr, &endptr); 
     493                                float z = (float)strtod(ptr, &endptr); 
    494494 
    495495                                if (ptr == endptr) 
Note: See TracChangeset for help on using the changeset viewer.