Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace Microsoft.Research.DynamicDataDisplay
|
---|
7 | {
|
---|
8 | public static class DataDomains
|
---|
9 | {
|
---|
10 | private static readonly DataRect xPositive = DataRect.FromPoints(Double.Epsilon, Double.MinValue / 2, Double.MaxValue, Double.MaxValue / 2);
|
---|
11 | public static DataRect XPositive
|
---|
12 | {
|
---|
13 | get { return xPositive; }
|
---|
14 | }
|
---|
15 |
|
---|
16 | private static readonly DataRect yPositive = DataRect.FromPoints(Double.MinValue / 2, Double.Epsilon, Double.MaxValue / 2, Double.MaxValue);
|
---|
17 | public static DataRect YPositive
|
---|
18 | {
|
---|
19 | get { return yPositive; }
|
---|
20 | }
|
---|
21 |
|
---|
22 | private static readonly DataRect xyPositive = DataRect.FromPoints(Double.Epsilon, Double.Epsilon, Double.MaxValue, Double.MaxValue);
|
---|
23 | public static DataRect XYPositive
|
---|
24 | {
|
---|
25 | get { return xyPositive; }
|
---|
26 | }
|
---|
27 | }
|
---|
28 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.