1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
/********************************************************************************
* *
* S i n g l e - P r e c i s i o n E x t e n t C l a s s *
* *
*********************************************************************************
* Copyright (C) 2004,2022 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "FXArray.h"
#include "FXHash.h"
#include "FXStream.h"
#include "FXVec2f.h"
#include "FXExtentf.h"
/*
Notes:
*/
using namespace FX;
/************************** E x t e n t C l a s s *************************/
namespace FX {
// Longest side
FXfloat FXExtentf::longest() const {
FXfloat x=upper.x-lower.x;
FXfloat y=upper.y-lower.y;
return Math::fmax(x,y);
}
// Shortest side
FXfloat FXExtentf::shortest() const {
FXfloat x=upper.x-lower.x;
FXfloat y=upper.y-lower.y;
return Math::fmin(x,y);
}
// Length of diagonal
FXfloat FXExtentf::diameter() const {
FXfloat x=upper.x-lower.x;
FXfloat y=upper.y-lower.y;
return Math::sqrt(x*x+y*y);
}
// Get radius of box
FXfloat FXExtentf::radius() const {
return diameter()*0.5f;
}
// Get diagonal of box
FXVec2f FXExtentf::diagonal() const {
return upper-lower;
}
// Get center of box
FXVec2f FXExtentf::center() const {
return 0.5f*(upper+lower);
}
// Test if empty
FXbool FXExtentf::empty() const {
return upper.x<lower.x || upper.y<lower.y;
}
// Test if box contains point
FXbool FXExtentf::contains(FXfloat x,FXfloat y) const {
return lower.x<=x && x<=upper.x && lower.y<=y && y<=upper.y;
}
// Test if box contains point p
FXbool FXExtentf::contains(const FXVec2f& p) const {
return lower.x<=p.x && p.x<=upper.x && lower.y<=p.y && p.y<=upper.y;
}
// Test if box contains another box
FXbool FXExtentf::contains(const FXExtentf& ext) const {
return lower.x<=ext.lower.x && ext.upper.x<=upper.x && lower.y<=ext.lower.y && ext.upper.y<=upper.y;
}
// Include point into range
FXExtentf& FXExtentf::include(FXfloat x,FXfloat y){
lower.x=Math::fmin(x,lower.x);
lower.y=Math::fmin(y,lower.y);
upper.x=Math::fmax(x,upper.x);
upper.y=Math::fmax(y,upper.y);
return *this;
}
// Include point into range
FXExtentf& FXExtentf::include(const FXVec2f& v){
return include(v.x,v.y);
}
// Include given box into box's range
FXExtentf& FXExtentf::include(const FXExtentf& ext){
lower.x=Math::fmin(ext.lower.x,lower.x);
lower.y=Math::fmin(ext.lower.y,lower.y);
upper.x=Math::fmax(ext.upper.x,upper.x);
upper.y=Math::fmax(ext.upper.y,upper.y);
return *this;
}
// Intersect box with ray u-v
FXbool FXExtentf::intersect(const FXVec2f& u,const FXVec2f& v) const {
FXfloat hits[2];
return intersect(u,v-u,hits) && 0.0f<=hits[1] && hits[0]<=1.0f;
}
// Intersect box with ray pos+lambda*dir, returning true if hit
FXbool FXExtentf::intersect(const FXVec2f& pos,const FXVec2f& dir,FXfloat hit[]) const {
FXfloat f= FLT_MAX;
FXfloat n=-FLT_MAX;
FXfloat ni,fi;
if(__likely(dir.x!=0.0f)){
if(0.0f<dir.x){
ni=(lower.x-pos.x)/dir.x;
fi=(upper.x-pos.x)/dir.x;
}
else{
ni=(upper.x-pos.x)/dir.x;
fi=(lower.x-pos.x)/dir.x;
}
if(ni>n) n=ni;
if(fi<f) f=fi;
}
else{
if((pos.x<lower.x) || (pos.x>upper.x)) return false;
}
if(__likely(dir.y!=0.0f)){
if(0.0f<dir.y){
ni=(lower.y-pos.y)/dir.y;
fi=(upper.y-pos.y)/dir.y;
}
else{
ni=(upper.y-pos.y)/dir.y;
fi=(lower.y-pos.y)/dir.y;
}
if(ni>n) n=ni;
if(fi<f) f=fi;
if(n>f) return false;
}
else{
if((pos.y<lower.y) || (pos.y>upper.y)) return false;
}
hit[0]=n;
hit[1]=f;
return true;
}
// Test if overlap
FXbool overlap(const FXExtentf& a,const FXExtentf& b){
return a.upper.x>=b.lower.x && a.lower.x<=b.upper.x && a.upper.y>=b.lower.y && a.lower.y<=b.upper.y;
}
// Union of two boxes
FXExtentf unite(const FXExtentf& a,const FXExtentf& b){
return FXExtentf(lo(a.lower,b.lower),hi(a.upper,b.upper));
}
// Intersection of two boxes
FXExtentf intersect(const FXExtentf& a,const FXExtentf& b){
return FXExtentf(hi(a.lower,b.lower),lo(a.upper,b.upper));
}
// Saving
FXStream& operator<<(FXStream& store,const FXExtentf& ext){
store << ext.lower.x << ext.upper.x;
store << ext.lower.y << ext.upper.y;
return store;
}
// Loading
FXStream& operator>>(FXStream& store,FXExtentf& ext){
store >> ext.lower.x >> ext.upper.x;
store >> ext.lower.y >> ext.upper.y;
return store;
}
}
|