overlap-area
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

Overlap Area

npm version

Find the Overlap Area.

Demo / API / Main Project

📄 API Documents

⚙️ Installation

$ npm install overlap-area
<script src="//daybrush.com/overlap-area/release/latest/dist/overlap-area.min.js"></script>

🚀 How to use

import { isInside, getOverlapPoints, getOverlapSize } from "overlap-area";

const points1 = [
    [0, 0],
    [100, 0],
    [120, 100],
    [0, 100],
];
const points2 = [
    [100, 0],
    [150, 0],
    [150, 100],
    [100, 100],
];

// true
console.log(isInside([50, 50], points1));
// false
console.log(isInside([50, 50], points2));

// [100, 0], [120, 100], [100, 100]
console.log(getOverlapPoints(points1, points2));

// 1000
console.log(getOverlapSize(points1, points2));

User Overlap Areas

Get the areas of the overlapped part of two shapes. Overlap Areas

import { getOverlapAreas } from "overlap-area";

const points1 = [
    [150, 100],
    [200, 50],
    [250, 60],
    [300, 100],
    [250, 160],
    [150, 150],
    [200, 120],
];
const points2 = [
    [250, 100],
    [300, 50],
    [350, 60],
    [400, 100],
    [350, 160],
    [220, 150],
    [300, 120],
];

/*
[
    [
        [272.2222222, 77.7777778],
        [300, 100],
        [287.5, 115],
        [250, 100],
    ],
    [
        [275.7575758, 129.0909091],
        [256.0240964, 152.7710843],
        [220, 150],
    ],
]
*/
console.log(getOverlapAreas(points1, points2));

User Unoverlap Areas

Get non-overlapping areas of two shapes based on points1.

Unoverlap Areas

import { getUnoverlapAreas } from "overlap-area";

const points1 = [
    [150, 100],
    [200, 50],
    [250, 60],
    [300, 100],
    [250, 160],
    [150, 150],
    [200, 120],
];
const points2 = [
    [250, 100],
    [300, 50],
    [350, 60],
    [400, 100],
    [350, 160],
    [220, 150],
    [300, 120],
];

/*
[
    [
        [150, 100],
        [200, 50],
        [250, 60],
        [272.2222222, 77.7777778],
        [250, 100],
        [287.5, 115],
        [275.7575758, 129.0909091],
        [220, 150],
        [256.0240964, 152.7710843],
        [250, 160],
        [150, 150],
        [200, 120],
    ],
]
*/
console.log(getUnoverlapAreas(points1, points2));

Calculate the overlap of elements

import { getElementInfo } from "moveable";
import { getOverlapPoints, getOverlapSize } from "overlap-area";

function getPoints(info) {
    const { left, top, pos1, pos2, pos3, pos4 } = info;

    return [pos1, pos2, pos4, pos3].map(pos => [left + pos[0], top + pos[1]]);
}

const points1 = getPoints(getElementInfo(element1));
const points2 = getPoints(getElementInfo(element2));

// Points of the overlapped area
getOverlapPoints(points1, points2);

// Size of the overlapped area
getOverlapSize(points1, points2);

⭐️ Show Your Support

Please give a ⭐️ if this project helped you!

👏 Contributing

If you have any questions or requests or want to contribute to overlap-area or other packages, please write the issue or give me a Pull Request freely.

🐞 Bug Report

If you find a bug, please report to us opening a new Issue on GitHub.

📝 License

This project is MIT licensed.

MIT License

Copyright (c) 2020 Daybrush

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

/overlap-area/

    Package Sidebar

    Install

    npm i overlap-area

    Weekly Downloads

    51,690

    Version

    1.1.0

    License

    MIT

    Unpacked Size

    265 kB

    Total Files

    27

    Last publish

    Collaborators

    • younkue