This file is indexed.

/usr/include/opencascade/Vrml_ShapeHints.hxx is in libopencascade-visualization-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
 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
111
112
113
114
115
116
117
118
119
// 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 _Vrml_ShapeHints_HeaderFile
#define _Vrml_ShapeHints_HeaderFile

#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif

#ifndef _Vrml_VertexOrdering_HeaderFile
#include <Vrml_VertexOrdering.hxx>
#endif
#ifndef _Vrml_ShapeType_HeaderFile
#include <Vrml_ShapeType.hxx>
#endif
#ifndef _Vrml_FaceType_HeaderFile
#include <Vrml_FaceType.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _Standard_OStream_HeaderFile
#include <Standard_OStream.hxx>
#endif


//! defines a ShapeHints node of VRML specifying properties of geometry and its appearance. <br>
//!  The ShapeHints node indicates that IndexedFaceSets are solid, contain ordered vertices, or <br>
//!  contain convex faces. <br>
//!  These hints allow VRML implementations to optimize certain rendering features. <br>
//!  Optimizations that may be performed include enabling back-face culling and disabling <br>
//!  two-sided lighting. For example, if an object is solid and has ordered vertices, an <br>
//!  implementation may turn on backface culling and turn off two-sided lighting. To ensure <br>
//!  that an IndexedFaceSet can be viewed from either direction, set shapeType to be <br>
//!  UNKNOWN_SHAPE_TYPE. <br>
//!  If you know that your shapes are closed and will alwsys be viewed from the outside, set <br>
//!  vertexOrdering to be either CLOCKWISE or COUNTERCLOCKWISE (depending on <br>
//!  how you built your object), and set shapeType to be SOLID. Placing this near the top of <br>
//!  your VRML file will allow the scene to be rendered much faster. <br>
//!  The ShapeHints node also affects how default normals are generated. When an <br>
//!  IndexedFaceSet has to generate default normals, it uses the creaseAngle field to determine <br>
//!  which edges should be smoothly shaded and which ones should have a sharp crease. The <br>
//!  crease angle is the angle between surface normals on adjacent polygons. For example, a <br>
//!  crease angle of .5 radians (the default value) means that an edge between two adjacent <br>
//!  polygonal faces will be smooth shaded if the normals to the two faces form an angle that is <br>
//!  less than .5 radians (about 30 degrees). Otherwise, it will be faceted. <br>
class Vrml_ShapeHints  {
public:

  void* operator new(size_t,void* anAddress) 
  {
    return anAddress;
  }
  void* operator new(size_t size) 
  {
    return Standard::Allocate(size); 
  }
  void  operator delete(void *anAddress) 
  {
    if (anAddress) Standard::Free((Standard_Address&)anAddress); 
  }

  
  Standard_EXPORT   Vrml_ShapeHints(const Vrml_VertexOrdering aVertexOrdering = Vrml_UNKNOWN_ORDERING,const Vrml_ShapeType aShapeType = Vrml_UNKNOWN_SHAPE_TYPE,const Vrml_FaceType aFaceType = Vrml_CONVEX,const Standard_Real aAngle = 0.5);
  
  Standard_EXPORT     void SetVertexOrdering(const Vrml_VertexOrdering aVertexOrdering) ;
  
  Standard_EXPORT     Vrml_VertexOrdering VertexOrdering() const;
  
  Standard_EXPORT     void SetShapeType(const Vrml_ShapeType aShapeType) ;
  
  Standard_EXPORT     Vrml_ShapeType ShapeType() const;
  
  Standard_EXPORT     void SetFaceType(const Vrml_FaceType aFaceType) ;
  
  Standard_EXPORT     Vrml_FaceType FaceType() const;
  
  Standard_EXPORT     void SetAngle(const Standard_Real aAngle) ;
  
  Standard_EXPORT     Standard_Real Angle() const;
  
  Standard_EXPORT     Standard_OStream& Print(Standard_OStream& anOStream) const;





protected:





private:



Vrml_VertexOrdering myVertexOrdering;
Vrml_ShapeType myShapeType;
Vrml_FaceType myFaceType;
Standard_Real myAngle;


};





// other Inline functions and methods (like "C++: function call" methods)


#endif