NormalizedVertex¶
-
class
oci.data_labeling_service_dataplane.models.NormalizedVertex(**kwargs)¶ Bases:
objectA NormalizedVertex is a cartesian coordinate that represents a corner between two segments of a polygon.
Methods
__init__(**kwargs)Initializes a new NormalizedVertex object with values from keyword arguments. Attributes
x[Required] Gets the x of this NormalizedVertex. y[Required] Gets the y of this NormalizedVertex. -
__init__(**kwargs)¶ Initializes a new NormalizedVertex object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - x (float) – The value to assign to the x property of this NormalizedVertex.
- y (float) – The value to assign to the y property of this NormalizedVertex.
-
x¶ [Required] Gets the x of this NormalizedVertex. The X axis coordinate.
Returns: The x of this NormalizedVertex. Return type: float
-
y¶ [Required] Gets the y of this NormalizedVertex. The Y axis coordinate.
Returns: The y of this NormalizedVertex. Return type: float
-