GridCell¶
Namespace: ThinkGeo.Core
Represents the GridCell class.
public class GridCell
Properties¶
CenterX¶
Gets or sets the CenterX.
public double CenterX { get; set; }
Property Value¶
CenterY¶
Gets or sets the CenterY.
public double CenterY { get; set; }
Property Value¶
Value¶
Gets or sets the Value.
public double Value { get; set; }
Property Value¶
Weight¶
Gets or sets the Weight.
public double Weight { get; set; }
Property Value¶
Constructors¶
GridCell()¶
Initializes a new instance of the GridCell class.
public GridCell()
GridCell(double, double, double)¶
Initializes a new instance of the GridCell class.
public GridCell(double centerX, double centerY, double value)
Parameters¶
centerX double
centerY double
value double
GridCell(double, double, double, double)¶
Initializes a new instance of the GridCell class.
public GridCell(double centerX, double centerY, double value, double weight)
Parameters¶
centerX double
centerY double
value double
weight double
Methods¶
GetHashCode()¶
Returns the hash code for the current instance.
public int GetHashCode()
Returns¶
int
The result of the operation.