Package org.drinkless.tdlib
Class TdApi.Point
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Point
- Enclosing class:
- TdApi
A point on a Cartesian plane.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.doubleThe point's first coordinate.doubleThe point's second coordinate. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
x
public double xThe point's first coordinate. -
y
public double yThe point's second coordinate. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
Point
public Point()A point on a Cartesian plane. -
Point
public Point(double x, double y) A point on a Cartesian plane.- Parameters:
x- The point's first coordinate.y- The point's second coordinate.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-