From 623c29a5b6d6cb753230bd70e9f08529d9a95d6e Mon Sep 17 00:00:00 2001 From: bugmaster Date: Fri, 27 Jun 2014 15:43:50 +0400 Subject: [PATCH] Removing non ascii characters --- src/ViewerTest/ViewerTest_ObjectCommands.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/ViewerTest/ViewerTest_ObjectCommands.cxx index dd084484ad..30368bb693 100644 --- a/src/ViewerTest/ViewerTest_ObjectCommands.cxx +++ b/src/ViewerTest/ViewerTest_ObjectCommands.cxx @@ -2182,7 +2182,7 @@ static int VCircleBuilder(Draw_Interpretor& /*di*/, Standard_Integer argc, const std::cout << "vcircle error: 2d element is a unexpected to be a point.\n"; return 1; // TCL_ERROR } - // Ñheck that the radius is >= 0 + // Check that the radius is >= 0 if (Draw::Atof(argv[4]) <= 0 ) { std::cout << "vcircle error: the radius must be >=0.\n"; @@ -2379,7 +2379,7 @@ static int VCircleBuilder(Draw_Interpretor& /*di*/, Standard_Integer argc, const // Recover the center gp_Pnt theCenter = BRep_Tool::Pnt(TopoDS::Vertex(ShapeB)); - // Ñonstruct the circle + // Construct the circle GC_MakeCircle Cir = GC_MakeCircle (theCenter, theDir ,theRad); Handle (Geom_Circle) theGeomCircle; try