Show / Hide Table of Contents

Class NormalizedVertex

An (x, y) coordinate in the image with dimensions normalized from zero to one. The origin is at top left, with the positive x-axis pointing right and the positive y-axis pointing down. The bottom right corner is at (1, 1).

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.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class NormalizedVertex

Properties

X

Declaration
[Required(ErrorMessage = "X is required.")]
[JsonProperty(PropertyName = "x")]
public double X { get; set; }
Property Value
Type Description
double

The X-axis normalized coordinate.

Remarks

Required

Y

Declaration
[Required(ErrorMessage = "Y is required.")]
[JsonProperty(PropertyName = "y")]
public double Y { get; set; }
Property Value
Type Description
double

The Y-axis normalized coordinate.

Remarks

Required

In this article
Back to top