Class NormalizedVertex
A NormalizedVertex is a cartesian coordinate that represents a corner between two segments of a polygon.
Inherited Members
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class NormalizedVertexProperties
X
Declaration
[Required(ErrorMessage = "X is required.")]
[JsonProperty(PropertyName = "x")]
public float? X { get; set; }Property Value
| Type | Description | 
|---|---|
| float? | The X axis coordinate. | 
Remarks
Required
Y
Declaration
[Required(ErrorMessage = "Y is required.")]
[JsonProperty(PropertyName = "y")]
public float? Y { get; set; }Property Value
| Type | Description | 
|---|---|
| float? | The Y axis coordinate. | 
Remarks
Required