@@ -39,10 +39,10 @@ void BoundarySphere :: findOutsiders(oofem::FloatArray &boundaries)
3939 //For nodes: 0 = inside, 1 = outside, 2 = on boundary
4040 //For elements: 0 = inside, 1 = completetly outside (one node could be on boundary), 2 = one node inside and one outside, 3 = on boundary
4141
42- IntArray nodes ;
42+ oofem :: IntArray nodes ;
4343 oofem ::FloatArray coords , coordsOne , coordsTwo ;
4444 int outsideFlag ;
45- IntArray locationArray (2 );
45+ oofem :: IntArray locationArray (2 );
4646
4747 double newTol = 1.e3 * this -> grid -> giveTol ();
4848
@@ -143,10 +143,10 @@ void BoundarySphere :: findOutsiders(oofem::FloatArray &boundaries)
143143int
144144BoundarySphere :: modifyVoronoiCrossSection (int elementNumber )
145145{
146- IntArray crossSectionElements ;
147- IntArray crossSectionVertices ;
146+ oofem :: IntArray crossSectionElements ;
147+ oofem :: IntArray crossSectionVertices ;
148148
149- IntArray nodes (2 );
149+ oofem :: IntArray nodes (2 );
150150
151151 oofem ::FloatArray coords (3 );
152152
@@ -183,7 +183,7 @@ BoundarySphere :: modifyVoronoiCrossSection(int elementNumber)
183183
184184 //Resize cross-section elements
185185 int newSize = elementSize - elementCounter ;
186- IntArray modifiedCrossSectionElements (newSize );
186+ oofem :: IntArray modifiedCrossSectionElements (newSize );
187187 int help = 0 ;
188188 for ( int i = 0 ; i < elementSize ; i ++ ) {
189189 if ( crossSectionElements .at (i + 1 ) == 0 ) {
@@ -204,7 +204,7 @@ BoundarySphere :: modifyVoronoiCrossSection(int elementNumber)
204204 }
205205
206206 //Write modified vertex vector
207- IntArray modifiedCrossSectionVertices (vertexSize - nodeCounter );
207+ oofem :: IntArray modifiedCrossSectionVertices (vertexSize - nodeCounter );
208208 help = 0 ;
209209 for ( int i = 0 ; i < vertexSize ; i ++ ) {
210210 if ( crossSectionVertices .at (i + 1 ) == 0 ) {
0 commit comments