/usr/include/oce/Select2D_SensitiveSegment.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 18 19 20 21 22 23 24 25 26 27 | // Copyright: Matra-Datavision 1995
// File: Select2D_SensitiveSegment.lxx
// Created: Mon Jan 30 16:03:00 1995
// Author: Mister rmi
// <rmi>
inline void Select2D_SensitiveSegment::Set( const Standard_Integer nbrect)
{mymaxrect =nbrect;}
inline void Select2D_SensitiveSegment::
StartPoint (const gp_Pnt2d& aPt) {mystart = aPt;}
inline const gp_Pnt2d& Select2D_SensitiveSegment::
StartPoint() const {return mystart;}
inline void Select2D_SensitiveSegment::
EndPoint(const gp_Pnt2d& aPt) {myend = aPt;}
inline const gp_Pnt2d& Select2D_SensitiveSegment::
EndPoint() const {return myend;}
inline Standard_Integer Select2D_SensitiveSegment::
MaxBoxes() const {return mymaxrect;}
|