Socket
Socket
Sign inDemoInstall

overlap-area

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

overlap-area

Find the Overlap Area.


Version published
Weekly downloads
91K
decreased by-8.74%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 20 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc