This file is indexed.

/usr/include/oce/MeshVS_DeformedDataSource.hxx is in liboce-visualization-dev 0.18.2-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
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to 
// this header file considered to be the "object code" form of the original source.

#ifndef _MeshVS_DeformedDataSource_HeaderFile
#define _MeshVS_DeformedDataSource_HeaderFile

#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_MeshVS_DeformedDataSource.hxx>

#include <Handle_MeshVS_DataSource.hxx>
#include <TColStd_PackedMapOfInteger.hxx>
#include <MeshVS_DataMapOfIntegerVector.hxx>
#include <Standard_Real.hxx>
#include <MeshVS_DataSource.hxx>
#include <Standard_Boolean.hxx>
#include <Standard_Integer.hxx>
#include <MeshVS_EntityType.hxx>
#include <Handle_MeshVS_HArray1OfSequenceOfInteger.hxx>
#include <Standard_Address.hxx>
class MeshVS_DataSource;
class TColStd_Array1OfReal;
class MeshVS_HArray1OfSequenceOfInteger;
class TColStd_Array1OfInteger;
class MeshVS_DataMapOfIntegerVector;
class gp_Vec;


//! The class provides default class which helps to represent node displacements by deformed mesh
//! This class has an internal handle to canonical non-deformed mesh data source and
//! map of displacement vectors. The displacement can be magnified to useful size.
//! All methods is implemented with calling the corresponding methods of non-deformed data source.
class MeshVS_DeformedDataSource : public MeshVS_DataSource
{

public:

  
  //! Constructor
  //! theNonDeformDS is canonical non-deformed data source, by which we are able to calculate
  //! deformed mesh geometry
  //! theMagnify is coefficient of displacement magnify
  Standard_EXPORT MeshVS_DeformedDataSource(const Handle(MeshVS_DataSource)& theNonDeformDS, const Standard_Real theMagnify);
  
  Standard_EXPORT virtual   Standard_Boolean GetGeom (const Standard_Integer ID, const Standard_Boolean IsElement, TColStd_Array1OfReal& Coords, Standard_Integer& NbNodes, MeshVS_EntityType& Type)  const;
  
  Standard_EXPORT virtual   Standard_Boolean GetGeomType (const Standard_Integer ID, const Standard_Boolean IsElement, MeshVS_EntityType& Type)  const;
  
  Standard_EXPORT virtual   Standard_Boolean Get3DGeom (const Standard_Integer ID, Standard_Integer& NbNodes, Handle(MeshVS_HArray1OfSequenceOfInteger)& Data)  const;
  
  Standard_EXPORT virtual   Standard_Address GetAddr (const Standard_Integer ID, const Standard_Boolean IsElement)  const;
  
  Standard_EXPORT virtual   Standard_Boolean GetNodesByElement (const Standard_Integer ID, TColStd_Array1OfInteger& NodeIDs, Standard_Integer& NbNodes)  const;
  
  Standard_EXPORT virtual  const  TColStd_PackedMapOfInteger& GetAllNodes()  const;
  
  Standard_EXPORT virtual  const  TColStd_PackedMapOfInteger& GetAllElements()  const;
  
  //! This method returns map of nodal displacement vectors
  Standard_EXPORT  const  MeshVS_DataMapOfIntegerVector& GetVectors()  const;
  
  //! This method sets map of nodal displacement vectors (Map).
  Standard_EXPORT   void SetVectors (const MeshVS_DataMapOfIntegerVector& Map) ;
  
  //! This method returns vector ( Vect ) assigned to node number ID.
  Standard_EXPORT   Standard_Boolean GetVector (const Standard_Integer ID, gp_Vec& Vect)  const;
  
  //! This method sets vector ( Vect ) assigned to node number ID.
  Standard_EXPORT   void SetVector (const Standard_Integer ID, const gp_Vec& Vect) ;
  
  Standard_EXPORT   void SetNonDeformedDataSource (const Handle(MeshVS_DataSource)& theDS) ;
  
  //! With this methods you can read and change internal canonical data source
  Standard_EXPORT   Handle(MeshVS_DataSource) GetNonDeformedDataSource()  const;
  
  Standard_EXPORT   void SetMagnify (const Standard_Real theMagnify) ;
  
  //! With this methods you can read and change magnify coefficient of nodal displacements
  Standard_EXPORT   Standard_Real GetMagnify()  const;




  DEFINE_STANDARD_RTTI(MeshVS_DeformedDataSource)

protected:




private: 


  Handle(MeshVS_DataSource) myNonDeformedDataSource;
  TColStd_PackedMapOfInteger myEmptyMap;
  MeshVS_DataMapOfIntegerVector myVectors;
  Standard_Real myMagnify;


};







#endif // _MeshVS_DeformedDataSource_HeaderFile