1.4.8 • Published 3 months ago

@flatten-js/core v1.4.8

Weekly downloads
3,229
License
MIT
Repository
github
Last release
3 months ago

npm version Build Status Coverage Status npm.io @flatten-js/core

Rate on Openbase

Javascript library for 2d geometry

flatten-js is a javascript library for manipulating abstract geometrical shapes like point, vector, line, ray, segment, circle, arc and polygon. Shapes may be organized into Planar Set - searchable container which support spatial queries.

flatten-js provides a lot of useful methods and algorithms like finding intersections, checking inclusion, calculating distance, applying affine transformations, performing boolean operations and more.

Packages are distributed in 3 formats: commonjs, umd and es6 modules. Package.json file provides various entry points suitable for different targets.

TypeScript users may take advantage of static type checking with typescript definition file index.d.ts included into the package.

flatten-js does not concern too much about visualization. Anyway, all classes implement svg() method, that returns a string which may be inserted into SVG container. It works pretty well together with d3js library, but it is definitely possible to create bridges to other graphic libraries.

The best way to start working with FlattenJS is to use awesome Observable javascript interactive notebooks. Check out collection of Tutorials published in Observable Notebooks.

Full documentation may be found here: https://alexbol99.github.io/flatten-js/index.html

Contacts

Follow me on Twitter @alexbol

Installation

npm install --save @flatten-js/core

Usage

import {Point, Vector, Circle, Line, Ray, Segment, Arc, Box, Polygon, Matrix, PlanarSet} from '@flatten-js/core';

It is possible to import Flatten namespace as default import, and then destruct all classes from it.

import Flatten from '@flatten-js/core'
const {Point, Vector, Circle, Line, Ray, Segment, Arc, Box, Polygon, Matrix, PlanarSet} = Flatten;

Some classes have shortcuts to avoid annoying new constructor:

import {point, vector, circle, line, ray, segment, arc, polygon, matrix} from '@flatten-js/core';

Example

After module imported, it is possible to create some construction:

    // extract object creators
    import {point, circle, segment} from '@flatten-js/core';

    // make some construction
    let s1 = segment(10,10,200,200);
    let s2 = segment(10,160,200,30);
    let c = circle(point(200, 110), 50);
    let ip = s1.intersect(s2);

You may test the code above also in NPM RunKit

You may also check out examples section in the code which illustrate different use cases:

  • in nodejs
  • in a browser using <script> tag with unpkg.com loader
  • in a React application

Content of the library

Basic shapes

flatten-js library implements following basic shapes:

Polygon

Polygon in flatten-js library is actually a multi-polygon. Polygon is a collection of faces - closed oriented chains of edges, which may be of type Segment or Arc. The most external face called island, a face included into it is called hole. Holes in turn may have inner islands, number of inclusion levels is unlimited.

Orientation of islands and holes is matter for calculation of relationships and boolean operations, holes should have orientation opposite to islands. It means that for proper results faces in a polygon should be orientable: they should not have self-intersections. Faces also should not overlap each other. Method isValid() checks if polygon fit these rules.

Constructor of the polygon object accept various inputs:

  • Array of shapes (instances of Flatten.Segment or Flatten.Arc) that represent closed chains
  • Array of shapes as json objects that represent closed chains
  • Array of points (Flatten.Point) that represent vertices of the polygon
  • Array of numeric pairs x,y that represent vertices of the polygon
  • Instances of Circle or Box

Polygon provides various useful methods:

  • area - calculate area of a polygon
  • addFace - add a new face to polygon
  • deleteFace - removes face from polygon
  • addVertex - split an edge of polygon adn create new vertex
  • cut - cut polygon with multiline into sub-polygons
  • findEdgeByPoint - find edge in polygon
  • contains - test if polygon contains shape (point, segment or arc)
  • transform - transform polygon using affine transformation matrix
  • reverse - revert orientation of faces
  • splitToIslands - split to array of islands with holes

Multiline

Multiline represent an unclosed chain of edges of type Segment or Arc

Planar Set

Planar Set is a container of shapes that enables spatial seach by rectangular query.

Transformations

All the classes have methods translate, rotate and scale which may be chained. Example:

// Rotate segment by 45 deg around its center
let {point,segment,matrix} = Flatten;
let s = segment(point(20,30), point(60,70));
let center = s.box.center;
let angle = 45.*Math.PI/180.;
let rotated_segment = s.rotate(angle, center)

Intersection points

All classes have method intersect(otherShape) that return array of intersection points, if two shapes intersect each other, or empty array otherwise. The is no predefined order of intersection points in the array.

Please don't be confused, there are another two methods BooleanOperations.intersect() that performs boolean intersection of polygons and logical predicate Relations.intersect() that check if two shapes intersected or not.

Distance between shapes

All basic classes and polygon have method distanceTo(othershape) that calculate distance to other shape. Together with the distance function returns the shortest segment between two shapes - segment between two closest point, where the first point lays on this shape, and the second - on the other shape, see example:

let s = segment(point(10,30), point(150, 40));
let c = circle(point(75,75),10);
let [dist,shortest_segment] = s.distanceTo(c);

Intersection model (DE-9IM)

The Dimensionally Extended nine-Intersection Model (DE-9IM) is a topological model and a standard used to describe the spatial relations of two geometries in 2-dimensional plane.

First, for every shape we define:

  • An interior
  • A boundary
  • An exterior

    For polygons, the interior, boundary and exterior are obvious, other types have some exclusions:

  • Point has no interior

  • Line has no boundary

    The DE-9IM model based on a 3×3 intersection matrix with the form:

             [ I(a) ^ I(b)   B(a) ^ I(b)   E(a) ^ I(b)
    de9im =    I(a) ^ B(b)   B(a) ^ B(b)   E(a) ^ B(b)
               I(a) ^ E(b)   B(a) ^ E(b)   E(a) ^ E(b)  ]
where ```a```and  ```b``` are two shapes (geometries), 

```I(), B(), E()``` denotes interior, boundary and exterior operator and

```^``` denotes operation of intersection. 
Dimension of intersection result depends on the dimension of shapes, for example,
* intersection between an interior of the line and an interior of the polygon is an
 array of segments
* intersection between an interior of the line and boundary polygon is 
an array of points (may include segments in case of touching)
* intersection between interiors of two polygons (if exists) will be
a polygon. 

DE-9IM matrix describes any possible relationships between two shapes on the plane.

DE-9IM matrix is available via method ```relate``` under namespace ```Relations```.

Each element of DE-9IM matrix is an array of the objects representing corresponding intersection.
Empty array represents case of no intersection.
If intersection is not applicable (i.e. intersection with a boundary for a line which has no boundary),
correspondent cell left undefined.

Intersection between two exteriors not calculated because usually it is meaningless.

```javascript
let {relate} = Flatten.Relations;
// 
// define two shapes: polygon1, polygon2
//
let de9im = relate(polygon1, polygon2);
//
// explore 8 of 9 fields of the de9im matrix:
// de9im.I2I  de9im.B2I  de9im.E2I
// de9im.I2B  de9im.B2B  de9im.E2B
// de9im.I2E  de9im.B2E     N/A

Another common way to represent DE-9IM matrix is a string where

  • T represent intersection where array is not impty
  • F represent intersection where array is empty
  • . means not relevant or not applicable

String may be obtained with de9im.toString() method.

Relationship predicates

The spatial relationships between two shapes exposed via namespace Relations. The spatial predicates return true if relationship match and false otherwise.

let {intersect, disjoint, equal, touch, inside, contain, covered, cover} = Flatten.Relations;
// define shape a and shape b
let p = intersect(a, b);
console.log(p)             // true / false
  • intersect - shapes a and b have at least one common point
  • disjoint - opposite to intersect
  • equal - shapes a and b are topologically equal
  • touch - shapes a and b have at least one point in common but their interiors not intersect
  • inside - shape a lies in the interior of shape b
  • contain - shape b lies in the interior of shape b
  • covered - every point of a lies or in the interior or on the boundary of shape b
  • covered - every point of b lies or in the interior or on the boundary of shape a

Boolean operations

Boolean operations on polygons available via namespace BooleanOperations. Polygons in boolean operation should be valid: both operands should have same meaning of face orientation, faces should not overlap each other and should not have self-intersections.

User is responsible to provide valid polygons, boolean operation methods do not check validity.

let {unify, subtract, intersect, innerClip, outerClip} = BooleanOperations;
  • unify - unify two polygons and return resulted polygon
  • subtract - subtract second polygon from the first and return resulted polygon
  • intersect - intersect two polygons and return resulted polygon
  • innerClip - intersect two polygons and return boundary of intersection as 2 arrays. The first aray contains edges of the first polygon, the second - the edges of the second
  • outerClip - clip boundary of the first polygon with the interior of the second polygon

Implementation based on Weiler-Atherton clipping algorithm, described in the article Hidden Surface Removal Using Polygon Area Sorting

Serialization

All flatten-js shape objects may be serialized using JSON.stringify() method. JSON.stringify transforms object to string using .toJSON() formatter implemented in the class. JSON.parse restore object from a string, and then constructor can use this object to create Flatten object.

let {lint, point} = Flatten;
let l = line(point(4, 0), point(0, 4));
// Serialize
let str = JSON.stringify(l);  
// Parse and reconstruct
let l_json = JSON.parse(str);
let l_parsed = line(l_json);

Visualization

All classes provide svg() method, that create svg string that may be inserted into svg container element in a very straightforward way:

<body>
    <svg id="stage" width="500" height="500"></svg>
<script>
    const Flatten = window["@flatten-js/core"];
    const {point, circle, segment} = Flatten;

    // make some construction
    let s1 = segment(10,10,200,200);
    let s2 = segment(10,160,200,30);
    let c = circle(point(200, 110), 50);
    let ip = s1.intersect(s2);

    document.getElementById("stage").innerHTML = s1.svg() + s2.svg() + c.svg() + ip[0].svg();
</script>
</body>

Method svg() may accept as a parameter an object that enables to define several basic attributes of svg element: stroke, strokeWidth, fill, fillRule, fillOpacity, id and className. If attributes not provided, method svg() use default values.

Other packages

Other packages, published under scope @flatten-js/:

NameDescription
@flatten-js/interval-treeInterval binary search tree
@flatten-js/boolean-opBoolean operations (deprecated, use this functionality from the core package)
@flatten-js/polygon-offsetPolygon offset

Support

1.4.8

3 months ago

1.4.6

4 months ago

1.4.7

4 months ago

1.4.5

4 months ago

1.4.4

6 months ago

1.4.3

7 months ago

1.4.2

7 months ago

1.4.1

7 months ago

1.4.0

8 months ago

1.3.10

9 months ago

1.3.11

9 months ago

1.3.12

9 months ago

1.3.9

9 months ago

1.3.8

10 months ago

1.3.7

10 months ago

1.3.6

10 months ago

1.3.5

2 years ago

1.3.4

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.27

3 years ago

1.2.26

3 years ago

1.2.25

3 years ago

1.2.24

3 years ago

1.2.23

3 years ago

1.2.21

3 years ago

1.2.22

3 years ago

1.2.20

3 years ago

1.2.19

3 years ago

1.2.18

3 years ago

1.2.17

3 years ago

1.2.16

3 years ago

1.2.15

4 years ago

1.2.14

4 years ago

1.2.13

4 years ago

1.2.12

4 years ago

1.2.11

4 years ago

1.2.10

4 years ago

1.2.9

4 years ago

1.2.8

4 years ago

1.2.6

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.19

4 years ago

1.0.18

4 years ago

1.0.17

5 years ago

1.0.16

5 years ago

1.0.15

5 years ago

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago