Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CalculatedPoint.cs
2{
6 public struct CalculatedPoint
7 {
13 public CalculatedPoint(float X, float Y)
14 {
15 this.X = X;
16 this.Y = Y;
17 this.Ok = true;
18 }
19
26 private CalculatedPoint(float X, float Y, bool Ok)
27 {
28 this.X = X;
29 this.Y = Y;
30 this.Ok = Ok;
31 }
32
36 public float X;
37
41 public float Y;
42
46 public bool Ok;
47
51 public static readonly CalculatedPoint Empty = new CalculatedPoint(0, 0, false);
52 }
53}
Represents a calculated point.
CalculatedPoint(float X, float Y)
Represents a successfully calculated point.
static readonly CalculatedPoint Empty
No point calculated.
bool Ok
If point is successfully evaluated