Struct Point
A point with two coordinates.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: SpiceSharpBehavioral.Builders
Assembly: SpiceSharpBehavioral.dll
Syntax
public struct Point
Constructors
Point(Double, Double)
Initializes a new instance of the Point struct.
Declaration
public Point(double x, double y)
Parameters
Type | Name | Description |
---|---|---|
System.Double | x | The x-coordinate. |
System.Double | y | The y-coordinate. |
Properties
X
Gets the x-coordinate.
Declaration
public double X { get; }
Property Value
Type | Description |
---|---|
System.Double | The x-coordinate. |
Y
Gets the y-coordinate.
Declaration
public double Y { get; }
Property Value
Type | Description |
---|---|
System.Double | The y-coordinate. |