MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / localPoints

Class localPoints

src/conversion/ensight/part/ensightPart.H:106–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104
105 //- Track the points used by the part and map global to local indices
106 class localPoints
107 {
108 public:
109 //- Number of points used
110 label nPoints;
111
112 //- Map global to local indices
113 labelList list;
114
115 //- Null constructor
116 localPoints()
117 :
118 nPoints(0),
119 list(0)
120 {}
121
122 //- Construct for mesh points
123 localPoints(const pointField& pts)
124 :
125 nPoints(0),
126 list(pts.size(), -1)
127 {}
128 };
129
130
131 // Protected Member Functions

Callers 12

calcSnappedCcFunction · 0.85
calcLocalPointsMethod · 0.85
triSurface.CFile · 0.85
writeDXGeometryFunction · 0.85
moveFunction · 0.85
writeOBJFunction · 0.85
PrimitivePatch.CFile · 0.85
cyclicPolyPatch.CFile · 0.85
resetAMIFunction · 0.85
triSurfaceMesh.CFile · 0.85
updateCoeffsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected