Changeset 44 for trunk/contrib
- Timestamp:
- 11/19/08 13:27:40 (17 years ago)
- Location:
- trunk/contrib
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/Makefile.am
r23 r44 5 5 # This program is free software; you can redistribute it and/or modify 6 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 3of the License, or7 # the Free Software Foundation; either version 2 of the License, or 8 8 # (at your option) any later version. 9 9 # -
trunk/contrib/extractor/Makefile
r24 r44 17 17 # This program is free software; you can redistribute it and/or modify 18 18 # it under the terms of the GNU General Public License as published by 19 # the Free Software Foundation; either version 3of the License, or19 # the Free Software Foundation; either version 2 of the License, or 20 20 # (at your option) any later version. 21 21 # -
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: