From 907fb7a5e01ad81ea15093cb15e38ea783ff59c7 Mon Sep 17 00:00:00 2001 From: apl Date: Fri, 10 Jun 2016 16:35:00 +0300 Subject: [PATCH] 0027591: TKViewerTest, ViewerTest_CmdParser regression - methods ArgVec3f, ArgVec3d return inccorect values Fix regression in methods ViewerTest_CmdParser::ArgVec3f, ::ArgVec3d, ::ArgVec, ::ArgPnt. --- src/ViewerTest/ViewerTest_CmdParser.cxx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/ViewerTest/ViewerTest_CmdParser.cxx b/src/ViewerTest/ViewerTest_CmdParser.cxx index bc3889626f..2fd09c4730 100644 --- a/src/ViewerTest/ViewerTest_CmdParser.cxx +++ b/src/ViewerTest/ViewerTest_CmdParser.cxx @@ -177,9 +177,9 @@ std::string ViewerTest_CmdParser::Arg (const std::string& theOptionName, Standar //=============================================================================================== Graphic3d_Vec3 ViewerTest_CmdParser::ArgVec3f (const std::string& theOptionName, Standard_Integer theArgumentIndex) { - return Graphic3d_Vec3 (static_cast (Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str())), - static_cast (Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str())), - static_cast (Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str()))); + return Graphic3d_Vec3 (static_cast (Draw::Atof (Arg (theOptionName, theArgumentIndex ).c_str())), + static_cast (Draw::Atof (Arg (theOptionName, theArgumentIndex + 1).c_str())), + static_cast (Draw::Atof (Arg (theOptionName, theArgumentIndex + 2).c_str()))); } //=============================================================================================== @@ -188,9 +188,9 @@ Graphic3d_Vec3 ViewerTest_CmdParser::ArgVec3f (const std::string& theOptionName, //=============================================================================================== Graphic3d_Vec3d ViewerTest_CmdParser::ArgVec3d (const std::string& theOptionName, Standard_Integer theArgumentIndex) { - return Graphic3d_Vec3d ( Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str()), - Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str()), - Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str())); + return Graphic3d_Vec3d ( Draw::Atof (Arg (theOptionName, theArgumentIndex ).c_str()), + Draw::Atof (Arg (theOptionName, theArgumentIndex + 1).c_str()), + Draw::Atof (Arg (theOptionName, theArgumentIndex + 2).c_str())); } //=============================================================================================== @@ -199,9 +199,9 @@ Graphic3d_Vec3d ViewerTest_CmdParser::ArgVec3d (const std::string& theOptionName //=============================================================================================== gp_Vec ViewerTest_CmdParser::ArgVec (const std::string& theOptionName, Standard_Integer theArgumentIndex) { - return gp_Vec ( Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str()), - Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str()), - Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str())); + return gp_Vec ( Draw::Atof (Arg (theOptionName, theArgumentIndex ).c_str()), + Draw::Atof (Arg (theOptionName, theArgumentIndex + 1).c_str()), + Draw::Atof (Arg (theOptionName, theArgumentIndex + 2).c_str())); } //=============================================================================================== @@ -210,9 +210,9 @@ gp_Vec ViewerTest_CmdParser::ArgVec (const std::string& theOptionName, Standard_ //=============================================================================================== gp_Pnt ViewerTest_CmdParser::ArgPnt (const std::string& theOptionName, Standard_Integer theArgumentIndex) { - return gp_Pnt ( Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str()), - Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str()), - Draw::Atof (Arg (theOptionName, theArgumentIndex).c_str())); + return gp_Pnt ( Draw::Atof (Arg (theOptionName, theArgumentIndex ).c_str()), + Draw::Atof (Arg (theOptionName, theArgumentIndex + 1).c_str()), + Draw::Atof (Arg (theOptionName, theArgumentIndex + 2).c_str())); } //===============================================================================================