Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NormalizedCoordinate

import type { NormalizedCoordinate } from "https://googleapis.deno.dev/v1/transcoder:v1.ts";

2D normalized coordinates. Default: {0.0, 0.0}

interface NormalizedCoordinate {
x?: number;
y?: number;
}

§Properties

§
x?: number
[src]

Normalized x coordinate.

§
y?: number
[src]

Normalized y coordinate.