Пример #1
0
 /// <summary>
 /// Indicates whether this instance and a specified object are equal.
 /// </summary>
 /// <param name="other">
 /// The object to compare this instance to.
 /// </param>
 /// <returns>
 /// Whether or not this instance is equal to the specified object.
 /// </returns>
 public bool Equals(VertexPositionNormalColorBlendable other)
 {
     return(this.Position.Equals(other.Position) && this.Normal.Equals(other.Normal) && this.BoneWeights.Equals(other.BoneWeights) && this.BoneIndices.Equals(other.BoneIndices));
 }
 /// <summary>
 /// Indicates whether this instance and a specified object are equal.
 /// </summary>
 /// <param name="other">
 /// The object to compare this instance to.
 /// </param>
 /// <returns>
 /// Whether or not this instance is equal to the specified object.
 /// </returns>
 public bool Equals(VertexPositionNormalColorBlendable other)
 {
     return this.Position.Equals(other.Position) && this.Normal.Equals(other.Normal) && this.Color.Equals(other.Color) && this.BoneWeights.Equals(other.BoneWeights) && this.BoneIndices.Equals(other.BoneIndices);
 }