Code Monkey home page Code Monkey logo

php-rectslib's Introduction

PHP-RECTSLIB

This class Lib help you to construct the rectangles using various logical operations such as Union, Intersect and Subtract. It will generate the border edges of non-overlapped rectangles. JScript version

Algorythm

Algorythm is very simple.

  • A region on which contains all the rectangles is divided into several rectangles according to the corners of the rectangles.
  • Remove the rectangles above which does not lie inside all rectangles. This step gives the non-overlapped union of the rectangles.
  • Then choose or remove the rectangles which lies inside the subject rectangles according to boolean operation union, intersect or subtract.

Operation procedure

Create rectangles

Rectangles are represenred by the associative array in which diagonal points p1 and p2 are stored. Other variables for drawing are name, color and state. Point p1 is always upper left corner and p2 is for lower right of rectangles so that p1 has smaller value of x and y then p2.

$rectslib = new RectsLib();
$A = $rectslib->p1p2(10, 10, 300, 200, "A", $green);
$B = $rectslib->p1p2(40, 30, 200, 300, "B", $red);
$C = $rectslib->p1p2(150, 40, 400, 150, "C", $orange);
$D = $rectslib->p1p2(140, 320, 200, 400, "D", $blue);
$E = $rectslib->p1p2(80, 160, 250, 250, "E", $brown);
$rects = [$A, $B, $C, $D, $E];

Merge all rectangles into mesh

List all x and y coordinates from the corner points p1, p2 of rectangles. Sort x and y list and then create rectangles for all x and y. Get (2n-1)^2 mesh rectangles for n original rectangles.

$all = $rectslib->merge($rects, $grey);

Generate rectangle operation

Select mesh by checking inside or not the desired rectangles which for logical operation. Eg. If A B C D E are the recangles,

  • For union of [A B C] & [D E], mesh must be lied in side both of [A B C] & [D E].
  • For subtract [B E] from [A B C D], mesh must be inside the [A B C D] and outside of [B E].
  • For intersect [A B C D] & [B E], mesh must be inside of both [A B C] & [D E].
$uni = $rectslib->union([$A, $B, $C], [$E, $D]);
$subt = $rectslib->subtract([$A, $B, $C, $D], [$B, $E]);
$Intersect = $rectslib->intersect([$A, $B, $C, $D], [$B, $E]);

Generate bounding edges

Generate edges of each rectangles and select external edges by removing common edges.

$edges = $rectslib->genEdges($subt);
$rectslib->drawEdges($img, $edges, $white);

Check with Images

Original Rectangles

  • A-GREEN-{10,10:300,200}
  • B-RED-{40,30:200,300}
  • C-ORANGE-{150,40:400,150}
  • D-BLUE-{140,320:200,400}
  • E-BROWN-{80,160:250,250}

PHP-RECTSLIB

Start meshing for all rectangles

PHP-RECTSLIB

Meshing and get union of rectangles

  • Union of [A B] & [C D]
  • [A B] โ‹ƒ [C D] PHP-RECTSLIB

Intersection of all with 2 rectangles

  • Intersect of [A B C D] & [B E]
  • [A B C D] โ‹‚ [B E] PHP-RECTSLIB

Subtract of 2 from all

  • Subtract [B E] from [A B C D]
  • [A B C D] - [B E] PHP-RECTSLIB

Contact

Contact me for comercial use via mail [email protected].

php-rectslib's People

Contributors

winaungcho avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.