Ejemplo n.º 1
0
        public ScreenVector(Double[] values)
        {
            if (values.Length != 1)
            {
                throw new ArgumentException("Specify two numbers to create a ScreenVector object");
            }

            Value = new OxyPlot.ScreenVector(values[0], values[1]);
        }
Ejemplo n.º 2
0
        public static OxyPlot.ScreenVector[] ConvertArray(Double[] values)
        {
            if (values.Length % 2 != 0)
            {
                throw new ArgumentException("Specify an even length array to create an array of ScreenVector objects");
            }

            var result = new OxyPlot.ScreenVector[values.Length / 2];

            for (var i = 0; i < result.Length; ++i)
            {
                result[i] = new OxyPlot.ScreenVector(values[i * 2], values[i * 2 + 1]);
            }

            return(result);
        }
Ejemplo n.º 3
0
 public ScreenVector()
 {
     Value = new OxyPlot.ScreenVector();
 }