// File: StdPrs_ToolVertex.cxx // Created: Tue Mai 18 18:45:41 1993 // Author: Laurent PAINNOT // #include #include #include void StdPrs_ToolVertex::Coord (const TopoDS_Vertex& aVertex, Standard_Real& X, Standard_Real& Y, Standard_Real& Z) { gp_Pnt P = BRep_Tool::Pnt(aVertex); X = P.X(); Y = P.Y(); Z = P.Z(); }