@vx/point
TypeScript icon, indicating that this package has built-in type declarations

0.0.199 • Public • Published

@vx/point

npm install --save @vx/point

A simple class to represent an x, y coordinate.

Example Usage

import { Point } from '@vx/point';

const point = new Point({ x: 2, y: 3 });
const { x, y } = point.value(); // Get the coords as an object
const [x, y] = point.toArray(); // or array

Methods

point.value()

Returns an { x, y } object with the x and y coordinates.

point.toArray()

Returns the coordinates as an array [x, y].

Versions

Current Tags

Version History

Package Sidebar

Install

npm i @vx/point

Weekly Downloads

78,199

Version

0.0.199

License

MIT

Unpacked Size

4.9 kB

Total Files

11

Last publish

Collaborators

  • hshoff
  • christopher.card.williams
  • vx-hshoff