ProjNet.CoordinateSystems.Transformations.ConcatenatedTransform.Transform C# (CSharp) Méthode

Transform() public méthode

Transforms a point
public Transform ( double point ) : double[]
point double
Résultat double[]
        public override double[] Transform(double[] point)
        {
            foreach (ICoordinateTransformation ct in _CoordinateTransformationList)
                point = ct.MathTransform.Transform(point);
            return point;
        }