Table of Contents

Class Point

Namespace
Cryville.EEW.Features
Assembly
Cryville.EEW.Features.dll
Represents a point.
public record Point : Geometry, IEquatable<Geometry>, IEquatable<Point>
Inheritance
Point
Implements
Inherited Members

Constructors

Point(Coordinates)

Represents a point.
public Point(Coordinates Coordinates)

Parameters

Coordinates Coordinates
The coordinates, a single position.

Point(double, double)

Creates an instance of the Point class.
public Point(double longitude, double latitude)

Parameters

longitude double
The longitude in degrees.
latitude double
The latitude in degrees.

Properties

Coordinates

The coordinates, a single position.
public Coordinates Coordinates { get; init; }

Property Value

Coordinates