Show / Hide Table of Contents

Class NormalizedVertex

A NormalizedVertex is a cartesian coordinate that represents a corner between two segments of a polygon.

Inheritance
object
NormalizedVertex
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class NormalizedVertex

Properties

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

In this article
Back to top