mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024277: DRAW command that shows coordinates of a vertex
"getcoords" command added "getcoords" moved to BRepTest/BRepTest_BasicCommands
This commit is contained in:
parent
ec2eeb2dfa
commit
9f6931fb8a
@ -370,6 +370,34 @@ static Standard_Integer boundingstr(Draw_Interpretor& di,Standard_Integer n,cons
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : getcoords
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
static Standard_Integer getcoords(Draw_Interpretor& di,Standard_Integer n,const char** a)
|
||||||
|
{
|
||||||
|
if(n < 2)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
for (Standard_Integer i = 1; i < n; i++)
|
||||||
|
{
|
||||||
|
const TopoDS_Shape aShape = DBRep::Get (a[i]);
|
||||||
|
|
||||||
|
if (aShape.IsNull())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (aShape.ShapeType() == TopAbs_VERTEX)
|
||||||
|
{
|
||||||
|
const TopoDS_Vertex& aVertex = TopoDS::Vertex(aShape);
|
||||||
|
gp_Pnt aPnt = BRep_Tool::Pnt(aVertex);
|
||||||
|
|
||||||
|
di << a[i] << " (x,y,z) : " << aPnt.X() << " " << aPnt.Y() << " " << aPnt.Z() << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : bounding
|
//function : bounding
|
||||||
//purpose :
|
//purpose :
|
||||||
@ -879,6 +907,11 @@ void BRepTest::BasicCommands(Draw_Interpretor& theCommands)
|
|||||||
__FILE__,
|
__FILE__,
|
||||||
orientsolid,g);
|
orientsolid,g);
|
||||||
|
|
||||||
|
theCommands.Add("getcoords",
|
||||||
|
"getcoords vertex1 vertex 2... ; shows coords of input vertices",
|
||||||
|
__FILE__,
|
||||||
|
getcoords,g);
|
||||||
|
|
||||||
theCommands.Add("bounding",
|
theCommands.Add("bounding",
|
||||||
"bounding shape [ xmin ymin zmin xmax ymax zmax] ; draw bounds",
|
"bounding shape [ xmin ymin zmin xmax ymax zmax] ; draw bounds",
|
||||||
__FILE__,
|
__FILE__,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user