Skip to content

SpiderStrategies/node-bounding-box

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bounding box

Determine the bounding box of a rotated rectangle

Bounding Box

example

var bb = require('bounding-box')

var obj = {left: 221, top: 211, height: 220, width: 586}

console.log(bb(obj, 45))

With custom center point

var bb = require('bounding-box')

var obj = {left: 221, top: 211, height: 220, width: 586}

// Rotate from top/left corner (origin 0 0)
console.log(bb(obj, 45, {
  x: 221,
  y: 211
}))

install

With npm,

npm install bounding-box

license

BSD

About

Determines the bounding box of some object.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •