Click or drag to resize

Point64 Structure

Defines a point in 2D space using 64-bit integer coordinates.
Inheritance Hierarchy
SystemObject
  SystemValueType
    Clipper2LibPoint64

Namespace: Clipper2Lib
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public struct Point64

The Point64 type exposes the following members.

Constructors
 NameDescription
Public methodPoint64(Point64) Initializes a new instance of the Point64 struct.
Public methodPoint64(PointD) Initializes a new instance of the Point64 struct from a PointD instance.
Public methodPoint64(Double, Double) Initializes a new instance of the Point64 struct.
Public methodPoint64(Int64, Int64) Initializes a new instance of the Point64 struct.
Public methodPoint64(Point64, Double) Initializes a new instance of the Point64 struct.
Public methodPoint64(PointD, Double) Initializes a new instance of the Point64 struct from a PointD instance, applying a scale.
Top
Methods
 NameDescription
Public methodEquals Determines if the specified object is equal to the current Point64.
(Overrides ValueTypeEquals(Object))
Public methodGetHashCode Returns the hash code for the current Point64.
(Overrides ValueTypeGetHashCode)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToString Returns a string representation of the point.
(Overrides ValueTypeToString)
Top
Operators
 NameDescription
Public operatorStatic memberAddition(Point64, Point64) Adds two Point64 instances.
Public operatorStatic memberEquality(Point64, Point64) Determines if two Point64 instances are equal.
Public operatorStatic memberInequality(Point64, Point64) Determines if two Point64 instances are not equal.
Public operatorStatic memberSubtraction(Point64, Point64) Subtracts one Point64 instance from another.
Top
Fields
 NameDescription
Public fieldX The X coordinate of the point.
Public fieldY The Y coordinate of the point.
Top
See Also