Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 14, 2008, 5:58:59 PM (16 years ago)
Author:
rgrieder
Message:

Minor adjustments to OgreODE when compiling under gcc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/physics/src/ogreode/OgreOdeGeometry.cpp

    r1919 r1922  
    2020Geometry::Geometry(World *world, Space* space):
    2121    UserDefinedObject(),
     22        _geom (0),
     23        _max_contacts (32),
    2224        _contact_high_water_mark (0),
    2325    _last_contact_num(0),
    24         _max_contacts (32),
    25     _debug_contacts (0),
    2626        _contacts (0),
    27         _encapsulator (0),
    2827        _debug_obj (0),
    2928        _debug_node (0),
     29    _debug_contacts (0),
     30        _encapsulator (0),
    3031        _user_data (0),
    3132        _user_object (0),
    32         _geom (0),
    3333    _world(world)
    3434{
     
    12111211                                Ogre::Real thickness) :
    12121212                        Geometry(world, space),
     1213                        _max_height (scale.y),
    12131214                        _sample_width(scale.x),
    12141215                        _sample_height(scale.z),
    1215                         _max_height (scale.y),
     1216                        _centered(centered),
    12161217                        _halfWorldSizeX(worldSizeX * 0.5),
    1217                         _halfWorldSizeZ(worldSizeZ * 0.5),
    1218                         _centered(centered)
     1218                        _halfWorldSizeZ(worldSizeZ * 0.5)
    12191219{
    12201220        dHeightfieldDataID heightid = dGeomHeightfieldDataCreate();
Note: See TracChangeset for help on using the changeset viewer.