Table of Contents

Class XYPoint

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.Legacy.dll

Represents a 2D point represented using x, y coordinates.

public class XYPoint
Inheritance
XYPoint
Inherited Members
Extension Methods

Constructors

XYPoint(double, double)

Initializes a new instance of the XYPoint class.

public XYPoint(double x, double y)

Parameters

x double

The x value.

y double

The y value.

Properties

X

Gets the X value.

public double X { get; }

Property Value

double

Y

Gets the Y value.

public double Y { get; }

Property Value

double