Point.Point

Point()

Initializes a new instance of the Point class.

public Point()

See Also


Point(double, double)

Initializes a new instance of the Point class.

public Point(double x, double y)
ParameterTypeDescription
xDoubleThe value for X coordinate.
yDoubleThe value for Y coordinate.

See Also


Point(double, double, double)

Initializes a new instance of the Point class.

public Point(double x, double y, double z)
ParameterTypeDescription
xDoubleThe value for X coordinate.
yDoubleThe value for Y coordinate.
zDoubleThe value for Z coordinate.

See Also


Point(double, double, double, double)

Initializes a new instance of the Point class.

public Point(double x, double y, double z, double m)
ParameterTypeDescription
xDoubleThe value for X coordinate.
yDoubleThe value for Y coordinate.
zDoubleThe value for Z coordinate.
mDoubleThe value for M coordinate.

See Also


Point(IPoint)

Initializes a new instance of the Point class.

public Point(IPoint other)
ParameterTypeDescription
otherIPointThe other IPoint to copy data from.

Exceptions

exceptioncondition
ArgumentNullExceptionThe argument is null.

See Also