/usr/include/opencascade/PDataXtd_Position.lxx is in libopencascade-ocaf-dev 6.5.0.dfsg-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | // File: PDataXtd_Position.lxx
// Created: Tue Apr 7 13:54:37 1998
// Author: Jean-Pierre COMBE
// <jpr>
// modified Sergey Zaritchny
//=======================================================================
//function : Position
//purpose :
//=======================================================================
inline gp_Pnt PDataXtd_Position::GetPosition() const
{
return myPosition;
}
//=======================================================================
//function : Color
//purpose :
//=======================================================================
inline void PDataXtd_Position::SetPosition(const gp_Pnt& aPosition)
{
myPosition = aPosition;
}
|