2007-03-08 04:03:40 +08:00
|
|
|
/**********************************************************************
|
|
|
|
* File: rect.h (Formerly box.h)
|
|
|
|
* Description: Bounding box class definition.
|
|
|
|
* Author: Phil Cheatle
|
|
|
|
* Created: Wed Oct 16 15:18:45 BST 1991
|
|
|
|
*
|
|
|
|
* (C) Copyright 1991, Hewlett-Packard Ltd.
|
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
|
|
|
** limitations under the License.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#ifndef RECT_H
|
|
|
|
#define RECT_H
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
#include <math.h>
|
|
|
|
#include "points.h"
|
|
|
|
#include "ndminx.h"
|
|
|
|
#include "tprintf.h"
|
|
|
|
#include "scrollview.h"
|
|
|
|
|
|
|
|
class DLLSYM TBOX { // bounding box
|
2007-03-08 04:03:40 +08:00
|
|
|
public:
|
2009-07-11 10:14:57 +08:00
|
|
|
TBOX (): // empty constructor making a null box
|
2007-03-08 04:03:40 +08:00
|
|
|
bot_left (MAX_INT16, MAX_INT16), top_right (-MAX_INT16, -MAX_INT16) {
|
2009-07-11 10:14:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TBOX( // constructor
|
|
|
|
const ICOORD pt1, // one corner
|
|
|
|
const ICOORD pt2); // the other corner
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
TBOX( // constructor
|
|
|
|
inT16 left, inT16 bottom, inT16 right, inT16 top);
|
|
|
|
|
|
|
|
TBOX( // box around FCOORD
|
2007-03-08 04:03:40 +08:00
|
|
|
const FCOORD pt);
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
bool null_box() const { // Is box null
|
|
|
|
return ((left () >= right ()) || (top () <= bottom ()));
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
|
2010-11-24 02:34:14 +08:00
|
|
|
bool operator==(const TBOX& other) {
|
|
|
|
return bot_left == other.bot_left && top_right == other.top_right;
|
|
|
|
}
|
|
|
|
|
2008-04-22 08:41:37 +08:00
|
|
|
inT16 top() const { // coord of top
|
2007-03-08 04:03:40 +08:00
|
|
|
return top_right.y ();
|
|
|
|
}
|
2008-12-31 05:31:01 +08:00
|
|
|
void set_top(int y) {
|
|
|
|
top_right.set_y(y);
|
|
|
|
}
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2008-04-22 08:41:37 +08:00
|
|
|
inT16 bottom() const { // coord of bottom
|
2007-03-08 04:03:40 +08:00
|
|
|
return bot_left.y ();
|
|
|
|
}
|
2008-12-31 05:31:01 +08:00
|
|
|
void set_bottom(int y) {
|
|
|
|
bot_left.set_y(y);
|
|
|
|
}
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2008-04-22 08:41:37 +08:00
|
|
|
inT16 left() const { // coord of left
|
2007-03-08 04:03:40 +08:00
|
|
|
return bot_left.x ();
|
|
|
|
}
|
2008-12-31 05:31:01 +08:00
|
|
|
void set_left(int x) {
|
|
|
|
bot_left.set_x(x);
|
|
|
|
}
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2008-04-22 08:41:37 +08:00
|
|
|
inT16 right() const { // coord of right
|
2007-03-08 04:03:40 +08:00
|
|
|
return top_right.x ();
|
|
|
|
}
|
2008-12-31 05:31:01 +08:00
|
|
|
void set_right(int x) {
|
|
|
|
top_right.set_x(x);
|
|
|
|
}
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
const ICOORD &botleft() const { // access function
|
2007-03-08 04:03:40 +08:00
|
|
|
return bot_left;
|
|
|
|
}
|
|
|
|
|
|
|
|
ICOORD botright() const { // ~ access function
|
|
|
|
return ICOORD (top_right.x (), bot_left.y ());
|
|
|
|
}
|
|
|
|
|
|
|
|
ICOORD topleft() const { // ~ access function
|
|
|
|
return ICOORD (bot_left.x (), top_right.y ());
|
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
const ICOORD &topright() const { // access function
|
2007-03-08 04:03:40 +08:00
|
|
|
return top_right;
|
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inT16 height() const { // how high is it?
|
2007-03-08 04:03:40 +08:00
|
|
|
if (!null_box ())
|
|
|
|
return top_right.y () - bot_left.y ();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inT16 width() const { // how high is it?
|
2007-03-08 04:03:40 +08:00
|
|
|
if (!null_box ())
|
|
|
|
return top_right.x () - bot_left.x ();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inT32 area() const { // what is the area?
|
2007-03-08 04:03:40 +08:00
|
|
|
if (!null_box ())
|
|
|
|
return width () * height ();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void move_bottom_edge( // move one edge
|
2008-04-22 08:41:37 +08:00
|
|
|
const inT16 y) { // by +/- y
|
2007-03-08 04:03:40 +08:00
|
|
|
bot_left += ICOORD (0, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
void move_left_edge( // move one edge
|
2008-04-22 08:41:37 +08:00
|
|
|
const inT16 x) { // by +/- x
|
2007-03-08 04:03:40 +08:00
|
|
|
bot_left += ICOORD (x, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void move_right_edge( // move one edge
|
2008-04-22 08:41:37 +08:00
|
|
|
const inT16 x) { // by +/- x
|
2007-03-08 04:03:40 +08:00
|
|
|
top_right += ICOORD (x, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void move_top_edge( // move one edge
|
2008-04-22 08:41:37 +08:00
|
|
|
const inT16 y) { // by +/- y
|
2007-03-08 04:03:40 +08:00
|
|
|
top_right += ICOORD (0, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
void move( // move box
|
|
|
|
const ICOORD vec) { // by vector
|
|
|
|
bot_left += vec;
|
|
|
|
top_right += vec;
|
|
|
|
}
|
|
|
|
|
|
|
|
void move( // move box
|
|
|
|
const FCOORD vec) { // by float vector
|
2008-04-22 08:41:37 +08:00
|
|
|
bot_left.set_x ((inT16) floor (bot_left.x () + vec.x ()));
|
2009-07-11 10:14:57 +08:00
|
|
|
// round left
|
2008-04-22 08:41:37 +08:00
|
|
|
bot_left.set_y ((inT16) floor (bot_left.y () + vec.y ()));
|
2009-07-11 10:14:57 +08:00
|
|
|
// round down
|
2008-04-22 08:41:37 +08:00
|
|
|
top_right.set_x ((inT16) ceil (top_right.x () + vec.x ()));
|
2009-07-11 10:14:57 +08:00
|
|
|
// round right
|
2008-04-22 08:41:37 +08:00
|
|
|
top_right.set_y ((inT16) ceil (top_right.y () + vec.y ()));
|
2009-07-11 10:14:57 +08:00
|
|
|
// round up
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void scale( // scale box
|
|
|
|
const float f) { // by multiplier
|
2009-07-11 10:14:57 +08:00
|
|
|
bot_left.set_x ((inT16) floor (bot_left.x () * f)); // round left
|
|
|
|
bot_left.set_y ((inT16) floor (bot_left.y () * f)); // round down
|
|
|
|
top_right.set_x ((inT16) ceil (top_right.x () * f)); // round right
|
|
|
|
top_right.set_y ((inT16) ceil (top_right.y () * f)); // round up
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
void scale( // scale box
|
|
|
|
const FCOORD vec) { // by float vector
|
2008-04-22 08:41:37 +08:00
|
|
|
bot_left.set_x ((inT16) floor (bot_left.x () * vec.x ()));
|
|
|
|
bot_left.set_y ((inT16) floor (bot_left.y () * vec.y ()));
|
|
|
|
top_right.set_x ((inT16) ceil (top_right.x () * vec.x ()));
|
|
|
|
top_right.set_y ((inT16) ceil (top_right.y () * vec.y ()));
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
// rotate doesn't enlarge the box - it just rotates the bottom-left
|
|
|
|
// and top-right corners. Use rotate_large if you want to guarantee
|
|
|
|
// that all content is contained within the rotated box.
|
|
|
|
void rotate(const FCOORD& vec) { // by vector
|
2007-03-08 04:03:40 +08:00
|
|
|
bot_left.rotate (vec);
|
|
|
|
top_right.rotate (vec);
|
2008-04-22 08:41:37 +08:00
|
|
|
*this = TBOX (bot_left, top_right);
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
2009-07-11 10:14:57 +08:00
|
|
|
// rotate_large constructs the containing bounding box of all 4
|
|
|
|
// corners after rotating them. It therefore guarantees that all
|
|
|
|
// original content is contained within, but also slightly enlarges the box.
|
|
|
|
void rotate_large(const FCOORD& vec);
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
bool contains( // is pt inside box
|
2007-03-08 04:03:40 +08:00
|
|
|
const FCOORD pt) const;
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
bool contains( // is box inside box
|
2008-04-22 08:41:37 +08:00
|
|
|
const TBOX &box) const;
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
bool overlap( // do boxes overlap
|
|
|
|
const TBOX &box) const;
|
|
|
|
|
|
|
|
bool major_overlap( // do boxes overlap more than half
|
|
|
|
const TBOX &box) const;
|
|
|
|
|
2008-12-31 05:31:01 +08:00
|
|
|
// Do boxes overlap on x axis.
|
2009-07-11 10:14:57 +08:00
|
|
|
bool x_overlap(const TBOX &box) const;
|
2008-12-31 05:31:01 +08:00
|
|
|
|
2010-11-24 02:34:14 +08:00
|
|
|
// Return the horizontal gap between the boxes. If the boxes
|
|
|
|
// overlap horizontally then the return value is negative, indicating
|
|
|
|
// the amount of the overlap.
|
|
|
|
int x_gap(const TBOX& box) const {
|
|
|
|
return MAX(bot_left.x(), box.bot_left.x()) -
|
|
|
|
MIN(top_right.x(), box.top_right.x());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the vertical gap between the boxes. If the boxes
|
|
|
|
// overlap vertically then the return value is negative, indicating
|
|
|
|
// the amount of the overlap.
|
|
|
|
int y_gap(const TBOX& box) const {
|
|
|
|
return MAX(bot_left.y(), box.bot_left.y()) -
|
|
|
|
MIN(top_right.y(), box.top_right.y());
|
|
|
|
}
|
|
|
|
|
2008-12-31 05:31:01 +08:00
|
|
|
// Do boxes overlap on x axis by more than
|
|
|
|
// half of the width of the narrower box.
|
2009-07-11 10:14:57 +08:00
|
|
|
bool major_x_overlap(const TBOX &box) const;
|
2008-12-31 05:31:01 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
// Do boxes overlap on y axis.
|
|
|
|
bool y_overlap(const TBOX &box) const;
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
// Do boxes overlap on y axis by more than
|
|
|
|
// half of the height of the shorter box.
|
|
|
|
bool major_y_overlap(const TBOX &box) const;
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
// fraction of current box's area covered by other
|
|
|
|
double overlap_fraction(const TBOX &box) const;
|
|
|
|
|
2010-11-24 02:34:14 +08:00
|
|
|
// fraction of the current box's projected area covered by the other's
|
|
|
|
double x_overlap_fraction(const TBOX& box) const;
|
|
|
|
|
|
|
|
// fraction of the current box's projected area covered by the other's
|
|
|
|
double y_overlap_fraction(const TBOX& box) const;
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
TBOX intersection( // shared area box
|
2008-04-22 08:41:37 +08:00
|
|
|
const TBOX &box) const;
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
TBOX bounding_union( // box enclosing both
|
2008-04-22 08:41:37 +08:00
|
|
|
const TBOX &box) const;
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2010-11-24 02:34:14 +08:00
|
|
|
// Sets the box boundaries to the given coordinates.
|
|
|
|
void set_to_given_coords(int x_min, int y_min, int x_max, int y_max) {
|
|
|
|
bot_left.set_x(x_min);
|
|
|
|
bot_left.set_y(y_min);
|
|
|
|
top_right.set_x(x_max);
|
|
|
|
top_right.set_y(y_max);
|
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
void print() const { // print
|
|
|
|
tprintf("Bounding box=(%d,%d)->(%d,%d)\n",
|
|
|
|
left(), bottom(), right(), top());
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef GRAPHICS_DISABLED
|
2009-07-11 10:14:57 +08:00
|
|
|
void plot( // use current settings
|
|
|
|
ScrollView* fd) const { // where to paint
|
2008-02-01 08:36:18 +08:00
|
|
|
fd->Rectangle(bot_left.x (), bot_left.y (), top_right.x (),
|
2007-03-08 04:03:40 +08:00
|
|
|
top_right.y ());
|
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
void plot( // paint box
|
|
|
|
ScrollView* fd, // where to paint
|
|
|
|
ScrollView::Color fill_colour, // colour for inside
|
|
|
|
ScrollView::Color border_colour) const; // colour for border
|
2007-03-08 04:03:40 +08:00
|
|
|
#endif
|
|
|
|
|
2008-04-22 08:41:37 +08:00
|
|
|
friend DLLSYM TBOX & operator+= (TBOX &, const TBOX &);
|
2009-07-11 10:14:57 +08:00
|
|
|
// in place union
|
2008-04-22 08:41:37 +08:00
|
|
|
friend DLLSYM TBOX & operator-= (TBOX &, const TBOX &);
|
2010-11-24 02:34:14 +08:00
|
|
|
// in place intersection
|
2007-03-08 04:03:40 +08:00
|
|
|
|
|
|
|
private:
|
2009-07-11 10:14:57 +08:00
|
|
|
ICOORD bot_left; // bottom left corner
|
|
|
|
ICOORD top_right; // top right corner
|
2007-03-08 04:03:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**********************************************************************
|
2008-04-22 08:41:37 +08:00
|
|
|
* TBOX::TBOX() Constructor from 1 FCOORD
|
2007-03-08 04:03:40 +08:00
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inline TBOX::TBOX( // construtor
|
|
|
|
const FCOORD pt // floating centre
|
2007-03-08 04:03:40 +08:00
|
|
|
) {
|
2008-04-22 08:41:37 +08:00
|
|
|
bot_left = ICOORD ((inT16) floor (pt.x ()), (inT16) floor (pt.y ()));
|
|
|
|
top_right = ICOORD ((inT16) ceil (pt.x ()), (inT16) ceil (pt.y ()));
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
2008-04-22 08:41:37 +08:00
|
|
|
* TBOX::contains() Is point within box
|
2007-03-08 04:03:40 +08:00
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inline bool TBOX::contains(const FCOORD pt) const {
|
2007-03-08 04:03:40 +08:00
|
|
|
return ((pt.x () >= bot_left.x ()) &&
|
|
|
|
(pt.x () <= top_right.x ()) &&
|
|
|
|
(pt.y () >= bot_left.y ()) && (pt.y () <= top_right.y ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
2008-04-22 08:41:37 +08:00
|
|
|
* TBOX::contains() Is box within box
|
2007-03-08 04:03:40 +08:00
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inline bool TBOX::contains(const TBOX &box) const {
|
2007-03-08 04:03:40 +08:00
|
|
|
return (contains (box.bot_left) && contains (box.top_right));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
2008-04-22 08:41:37 +08:00
|
|
|
* TBOX::overlap() Do two boxes overlap?
|
2007-03-08 04:03:40 +08:00
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inline bool TBOX::overlap( // do boxes overlap
|
2008-04-22 08:41:37 +08:00
|
|
|
const TBOX &box) const {
|
2007-03-08 04:03:40 +08:00
|
|
|
return ((box.bot_left.x () <= top_right.x ()) &&
|
|
|
|
(box.top_right.x () >= bot_left.x ()) &&
|
|
|
|
(box.bot_left.y () <= top_right.y ()) &&
|
|
|
|
(box.top_right.y () >= bot_left.y ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
2008-04-22 08:41:37 +08:00
|
|
|
* TBOX::major_overlap() Do two boxes overlap by at least half of the smallest?
|
2007-03-08 04:03:40 +08:00
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
inline bool TBOX::major_overlap( // Do boxes overlap more that half.
|
2008-04-22 08:41:37 +08:00
|
|
|
const TBOX &box) const {
|
2007-03-08 04:03:40 +08:00
|
|
|
int overlap = MIN(box.top_right.x(), top_right.x());
|
|
|
|
overlap -= MAX(box.bot_left.x(), bot_left.x());
|
|
|
|
overlap += overlap;
|
|
|
|
if (overlap < MIN(box.width(), width()))
|
|
|
|
return false;
|
|
|
|
overlap = MIN(box.top_right.y(), top_right.y());
|
|
|
|
overlap -= MAX(box.bot_left.y(), bot_left.y());
|
|
|
|
overlap += overlap;
|
|
|
|
if (overlap < MIN(box.height(), height()))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2008-12-31 05:31:01 +08:00
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
/**********************************************************************
|
|
|
|
* TBOX::overlap_fraction() Fraction of area covered by the other box
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
inline double TBOX::overlap_fraction(const TBOX &box) const {
|
|
|
|
double fraction = 0.0;
|
|
|
|
if (this->area()) {
|
|
|
|
fraction = this->intersection(box).area() * 1.0 / this->area();
|
|
|
|
}
|
|
|
|
return fraction;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TBOX::x_overlap() Do two boxes overlap on x-axis
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
inline bool TBOX::x_overlap(const TBOX &box) const {
|
2008-12-31 05:31:01 +08:00
|
|
|
return ((box.bot_left.x() <= top_right.x()) &&
|
|
|
|
(box.top_right.x() >= bot_left.x()));
|
|
|
|
}
|
|
|
|
|
2009-07-11 10:14:57 +08:00
|
|
|
/**********************************************************************
|
|
|
|
* TBOX::major_x_overlap() Do two boxes overlap by more than half the
|
|
|
|
* width of the narrower box on the x-axis
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
inline bool TBOX::major_x_overlap(const TBOX &box) const {
|
2008-12-31 05:31:01 +08:00
|
|
|
inT16 overlap = box.width();
|
|
|
|
if (this->left() > box.left()) {
|
|
|
|
overlap -= this->left() - box.left();
|
|
|
|
}
|
|
|
|
if (this->right() < box.right()) {
|
|
|
|
overlap -= box.right() - this->right();
|
|
|
|
}
|
|
|
|
return (overlap >= box.width() / 2 || overlap >= this->width() / 2);
|
|
|
|
}
|
2009-07-11 10:14:57 +08:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TBOX::y_overlap() Do two boxes overlap on y-axis
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
inline bool TBOX::y_overlap(const TBOX &box) const {
|
|
|
|
return ((box.bot_left.y() <= top_right.y()) &&
|
|
|
|
(box.top_right.y() >= bot_left.y()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TBOX::major_y_overlap() Do two boxes overlap by more than half the
|
|
|
|
* height of the shorter box on the y-axis
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
inline bool TBOX::major_y_overlap(const TBOX &box) const {
|
|
|
|
inT16 overlap = box.height();
|
|
|
|
if (this->bottom() > box.bottom()) {
|
|
|
|
overlap -= this->bottom() - box.bottom();
|
|
|
|
}
|
|
|
|
if (this->top() < box.top()) {
|
|
|
|
overlap -= box.top() - this->top();
|
|
|
|
}
|
|
|
|
return (overlap >= box.height() / 2 || overlap >= this->height() / 2);
|
|
|
|
}
|
2010-11-24 02:34:14 +08:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TBOX::x_overlap_fraction() Calculates the horizontal overlap of the
|
|
|
|
* given boxes as a fraction of this boxes
|
|
|
|
* width.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
inline double TBOX::x_overlap_fraction(const TBOX& other) const {
|
|
|
|
int low = MAX(left(), other.left());
|
|
|
|
int high = MIN(right(), other.right());
|
|
|
|
int width = right() - left();
|
|
|
|
if (width == 0) {
|
|
|
|
int x = left();
|
|
|
|
if (other.left() <= x && x <= other.right())
|
|
|
|
return 1.0;
|
|
|
|
else
|
|
|
|
return 0.0;
|
|
|
|
} else {
|
|
|
|
return MAX(0, static_cast<double>(high - low) / width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TBOX::y_overlap_fraction() Calculates the vertical overlap of the
|
|
|
|
* given boxes as a fraction of this boxes
|
|
|
|
* height.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
inline double TBOX::y_overlap_fraction(const TBOX& other) const {
|
|
|
|
int low = MAX(bottom(), other.bottom());
|
|
|
|
int high = MIN(top(), other.top());
|
|
|
|
int height = top() - bottom();
|
|
|
|
if (height == 0) {
|
|
|
|
int y = bottom();
|
|
|
|
if (other.bottom() <= y && y <= other.top())
|
|
|
|
return 1.0;
|
|
|
|
else
|
|
|
|
return 0.0;
|
|
|
|
} else {
|
|
|
|
return MAX(0, static_cast<double>(high - low) / height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-08 04:03:40 +08:00
|
|
|
#endif
|