diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/ViewerTest/ViewerTest_ObjectCommands.cxx index ceea7819a4..289c8ed825 100755 --- a/src/ViewerTest/ViewerTest_ObjectCommands.cxx +++ b/src/ViewerTest/ViewerTest_ObjectCommands.cxx @@ -245,57 +245,56 @@ static int VTrihedron2D (Draw_Interpretor& di, Standard_Integer argc, const char //============================================================================== //function : VTriherdron -//author : ege //purpose : Create a trihedron. If no arguments are set, the default // trihedron (Oxyz) is created. //Draw arg : vtrihedron name [Xo] [Yo] [Zo] [Zu] [Zv] [Zw] [Xu] [Xv] [Xw] //============================================================================== -static int VTrihedron (Draw_Interpretor& di, Standard_Integer argc, const char** argv) - +static int VTrihedron (Draw_Interpretor& theDi, + Standard_Integer theArgsNb, + const char** theArgVec) { - // Verification des arguments - if ( argc<2 || argc>11) {di< 5 && argc!=11) - {di<2){ - Standard_Integer i ; - for( i=0;i<=2;i++) - coord[i]= atof(argv[2+i]); - - if(argc>5){ - for(i=0;i<=2;i++){ - coord[3+i] = atof(argv[6+i]); - coord[6+i] = atof(argv[8+i]); - } + aX = atof (theArgVec[anArgIter++]); + aY = atof (theArgVec[anArgIter++]); + aZ = atof (theArgVec[anArgIter++]); + aDirX.SetCoord (aX, aY, aZ); } } - gp_Pnt ThePoint(coord[0],coord[1],coord[2]); - gp_Dir TheZVector(coord[3],coord[4],coord[5]); - gp_Dir TheXVector(coord[6],coord[7],coord[8]); - if ( !TheZVector.IsNormal(TheXVector,M_PI/180)) {di<Display(aShape); + if (!aDirZ.IsNormal (aDirX, M_PI / 180.0)) + { + theDi << theArgVec[0] << " - VectorX is not normal to VectorZ\n"; + return 1; + } + Handle(Geom_Axis2Placement) aPlacement = new Geom_Axis2Placement (anOrigin, aDirZ, aDirX); + Handle(AIS_Trihedron) aShape = new AIS_Trihedron (aPlacement); + VDisplayAISObject (theArgVec[1], aShape); return 0; } - - - //============================================================================== //function : VSize //author : ege