tiles-intersect

1.0.0 • Public • Published

tiles-intersect

Given two points which represent a line in 2D or 3D space find all tiles/voxels it intersects. It's a JavaScript implementation of A Fast Voxel Traversal Algorithm for Ray Tracing.

Usage

const tilesIntersect = require('tiles-intersect');
let line = [[0.1, 0.2], [3.5, 2.8]];
let tiles = tilesIntersect.calculate(line, 2); // [[0, 0], [1, 0], [1, 1], [2, 1], [2, 2], [3, 2]]

API

calculate(line, dimensions = 2)

Returns a 2D array of tiles/voxels intersected by a line.

line

Two-dimensional array which contains two points.

dimensions

Number of dimensions (2 or 3).

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i tiles-intersect

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    13.6 kB

    Total Files

    11

    Last publish

    Collaborators

    • vhawk