Protogame.VertexPositionNormal.Equals C# (CSharp) Méthode

Equals() public méthode

Indicates whether this instance and a specified object are equal.
public Equals ( VertexPositionNormal other ) : bool
other VertexPositionNormal /// The object to compare this instance to. ///
Résultat bool
        public bool Equals(VertexPositionNormal other)
        {
            return this.Position.Equals(other.Position) && this.Normal.Equals(other.Normal);
        }

Same methods

VertexPositionNormal::Equals ( object obj ) : bool