Example #1
0
        /// <summary>
        /// GetTransformedFigureCollection - inherited from Geometry.
        /// Basically, this is used to collapse this Geometry into an existing PathGeometry.
        /// </summary>
        internal override PathFigureCollection GetTransformedFigureCollection(Transform transform)
        {
            PathGeometry thisAsPathGeometry = GetAsPathGeometry();

            if (null != thisAsPathGeometry)
            {
                return(thisAsPathGeometry.GetTransformedFigureCollection(transform));
            }
            else
            {
                return(null);
            }
        }