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

CartesianCoordinates

import type { CartesianCoordinates } from "https://aws-api.deno.dev/v0.4/services/iotroborunner.ts?docs=full";

Cartesian coordinates in 3D space relative to the RoboRunner origin.

interface CartesianCoordinates {
x: number;
y: number;
z?: number | null;
}

§Properties

§
x: number
[src]

X coordinate.

§
y: number
[src]

Y coordinate.

§
z?: number | null
[src]

Z coordinate.