コード例 #1
0
        /// <summary>Applies any transforms (rotate,scale etc) now. Note that tranforms are post-processes
        /// so they are very fast and mostly done by paint events.</summary>
        public void ApplyTransform()
        {
            MeshBlock block = FirstBlock;

            while (block != null)
            {
                if (block.Transform != null)
                {
                    block.Layout();
                }
                block = block.LocalBlockAfter;
            }
        }