/usr/include/oce/AIS_Shape.lxx is in liboce-visualization-dev 0.9.1-3.
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 | // File: AIS_Shape.lxx
// Created: Wed Jan 8 10:17:34 1997
// Author: Robert COUBLANC
// <rob@robox.paris1.matra-dtv.fr>
inline void AIS_Shape::Set(const TopoDS_Shape& ashap)
{
myshape = ashap;
myCompBB = Standard_True;
}
inline const TopoDS_Shape&
AIS_Shape::Shape() const
{
return myshape;
}
|