StoredTransformList Class Reference

A List of stored transforms, that can be compared for equality

Public Member Functions

 StoredTransformList (List< Transform > store)
 constructor used to generate a new StoredTransformList provided a List of transforms
 
override bool Equals (object obj)
 Used to check equality of the transforms contained in the List, with those in the provided object
 
override int GetHashCode ()
 This class is dynamic and does not provide unique hash codes
 

Static Public Member Functions

static implicit operator StoredTransformList (List< Transform > transformList_to_copy)
 Implicitly converts a List of transforms into a StoredTransformList
 
static bool operator!= (StoredTransformList lhs, StoredTransformList rhs)
 Checks to see if the two objects are NOT equal, by invoking == and negating the result.
 
static bool operator== (StoredTransformList lhs, StoredTransformList rhs)
 Compares the transforms in the provided objects to see if they are equal, by first comparing references, and then comparing all the transforms contained within the StoredTransformLists.