Axiom.Core.ProgressiveMesh.PMVertex.IsManifoldEdgeWith C# (CSharp) Method

IsManifoldEdgeWith() private method

private IsManifoldEdgeWith ( PMVertex v ) : bool
v PMVertex
return bool
			internal bool IsManifoldEdgeWith( PMVertex v )
			{
				// Check the sides involving both these verts
				// If there is only 1 this is a manifold edge
				ushort sidesCount = 0;
				foreach ( PMTriangle face in faces )
				{
					if ( face.HasCommonVertex( v ) )
						sidesCount++;
				}

				return ( sidesCount == 1 );
			}
			internal void NotifyRemoved()