Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/BasicTypes/SvgAnimatedAngle.cs @ 12762

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

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

File size: 732 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5    public sealed class SvgAnimatedAngle : ISvgAnimatedAngle
6  {
7        #region Fields
8        private ISvgAngle baseVal;
9        private ISvgAngle animVal;
10        #endregion
11
12        #region Constructor
13    public SvgAnimatedAngle(string s, string defaultValue)
14    {
15      animVal = baseVal = new SvgAngle(s, defaultValue, false);
16    }
17
18    public SvgAnimatedAngle(ISvgAngle angle)
19    {
20      animVal = baseVal = angle;
21    }
22        #endregion
23
24    #region Implementation of ISvgAnimatedAngle
25    public ISvgAngle BaseVal
26    {
27      get
28      {
29        return baseVal;
30      }
31    }
32   
33    public ISvgAngle AnimVal
34    {
35      get
36      {
37        return animVal;
38      }
39    }
40    #endregion
41  }
42}
Note: See TracBrowser for help on using the repository browser.