Changeset 44 for trunk/contrib/vmap_debugger
- Timestamp:
- 11/19/08 13:27:40 (17 years ago)
- Location:
- trunk/contrib/vmap_debugger
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/vmap_debugger/ModelContainerView.cpp
r2 r44 452 452 //==================================================================== 453 453 454 Vector3 ModelContainerView::convertPositionTo MangosRep(float x, float y, float z) const {454 Vector3 ModelContainerView::convertPositionToTrinityRep(float x, float y, float z) const { 455 455 float pos[3]; 456 456 pos[0] = z; … … 491 491 i_App->defaultController.getPosition(); 492 492 Vector3 pos = i_App->defaultController.getPosition(); 493 Vector3 pos2 = convertPositionTo MangosRep(pos.x, pos.y, pos.z);493 Vector3 pos2 = convertPositionToTrinityRep(pos.x, pos.y, pos.z); 494 494 //Vector3 pos3 = iVMapManager->convertPositionToInternalRep(pos2.x, pos2.y, pos2.z); 495 495 //pos3 = iVMapManager->convertPositionToInternalRep(pos2.x, pos2.y, pos2.z); -
trunk/contrib/vmap_debugger/ModelContainerView.h
r2 r44 52 52 Array<Command> iPrevLoadCommands; 53 53 private: 54 Vector3 convertPositionTo MangosRep(float x, float y, float z) const;54 Vector3 convertPositionToTrinityRep(float x, float y, float z) const; 55 55 56 56 public: