Skip to main content
Module

x/neo4j_lite_client/mod.ts>Point

Unofficial Neo4j Driver for Deno
Latest
class Point
Re-export
import { Point } from "https://deno.land/x/neo4j_lite_client@4.4.6/mod.ts";

Represents a single two or three-dimensional point in a particular coordinate reference system. Created Point objects are frozen with Object.freeze() in constructor and thus immutable.

Constructors

new
Point(
srid: T,
x: number,
y: number,
z?: number,
)

Type Parameters

optional
T extends NumberOrInteger = Integer

Properties

readonly
srid: T
readonly
x: number
readonly
y: number
readonly
z: number | undefined

Methods

toString(): string