Axiom.Core.ProgressiveMesh.PMTriangle.HasFaceVertex C# (CSharp) Method

HasFaceVertex() private method

private HasFaceVertex ( PMFaceVertex v ) : bool
v PMFaceVertex
return bool
			bool HasFaceVertex( PMFaceVertex v )
			{
				return ( v == vertex[ 0 ] ||
						v == vertex[ 1 ] ||
						v == vertex[ 2 ] );
			}
			internal PMFaceVertex GetFaceVertexFromCommon( PMVertex commonVert )