Exemplo n.º 1
0
        private bool ComputationallyEqual(Helmert7Transformation a, Helmert7Transformation b)
        {
            if (a == b)
            {
                return(true);
            }
            if (a == null || b == null)
            {
                return(false);
            }

            return(a.Equals(b));

            throw new NotImplementedException();
        }