Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/SvgTransformOrder.cs @ 13825

Last change on this file since 13825 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 492 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5    /// <summary>
6    /// Specifies the order for matrix transform operations.
7    /// </summary>
8    [Serializable]
9    public enum SvgTransformOrder
10    {
11        /// <summary>
12        /// The new operation is applied after the old operation.
13        /// </summary>
14      Prepend = 0,
15        /// <summary>
16        /// The new operation is applied before the old operation.
17        /// </summary>
18      Append  = 1,
19    }
20}
Note: See TracBrowser for help on using the repository browser.