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

HasCommonVertex() private method

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