/usr/include/flatzebra/RCouple.h is in libflatzebra-dev 0.1.5-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | /* $Id: RCouple.h,v 1.3 2010/04/25 01:15:57 sarrazip Exp $
RCouple.h - Class representing a couple of integers.
flatzebra - Generic 2D Game Engine library
Copyright (C) 1999-2003 Pierre Sarrazin <http://sarrazip.com/>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#ifndef _H_RCouple
#define _H_RCouple
#include <flatzebra/Couple.h>
#include <math.h>
namespace flatzebra {
class RCouple
/* Class representing a RCouple of floating point numbers.
*/
{
public:
double x, y;
/* The components.
*/
RCouple();
/* Builds a RCouple with ZERO values for the components.
*/
RCouple(double a, double b);
/* Initiliazes a RCouple with x equal to a and y equal to b.
*/
RCouple(const RCouple &c);
/* Copies the components of the RCouple 'c' into the current RCouple.
*/
RCouple(const Couple &c);
/* Converts the integer couple 'c' into the current floating
point RCouple.
*/
RCouple &operator = (const RCouple &c);
/* Replaces the components of the current RCouple by those of 'c'.
*/
RCouple &operator = (const Couple &c);
/* Replaces the components of the current RCouple by a conversion
of the integer couple 'c' into a floating point couple.
*/
~RCouple();
/* Does nothing.
*/
RCouple &zero();
/* Assign zero to both components.
Returns a reference to this object.
Was void until version 0.1.
*/
bool isZero() const;
/* Returns true iff both components are zero.
*/
bool isNonZero() const;
/* Returns true iff one or both components differ from zero.
*/
double length() const;
/* Returns the length of the vector represented by the RCouple.
*/
Couple round() const;
/* Returns an integer couple created from the rounded values of
this floating point couple.
*/
Couple floor() const;
/* Returns an integer couple created from the floored values of
this floating point couple.
*/
Couple ceil() const;
/* Returns an integer couple created from the ceiled values of
this floating point couple.
*/
RCouple &operator += (const RCouple &c);
RCouple &operator -= (const RCouple &c);
RCouple &operator *= (double n);
RCouple &operator /= (double n);
/* Return the current object as modified.
*/
friend RCouple operator + (const RCouple &c1, const RCouple &c2);
friend RCouple operator - (const RCouple &c1, const RCouple &c2);
friend RCouple operator * (const RCouple &c1, double n);
friend RCouple operator * (double n, const RCouple &c1);
friend RCouple operator / (const RCouple &c1, double n);
friend bool operator == (const RCouple &c1, const RCouple &c2);
friend bool operator != (const RCouple &c1, const RCouple &c2);
};
//
// IMPLEMENTATION (inline functions)
//
inline RCouple::RCouple()
: x(0), y(0)
{
}
inline RCouple::RCouple(double a, double b)
: x(a), y(b)
{
}
inline RCouple::RCouple(const RCouple &c)
: x(c.x), y(c.y)
{
}
inline RCouple::RCouple(const Couple &c)
: x(c.x), y(c.y)
{
}
inline RCouple &RCouple::operator = (const RCouple &c)
{
x = c.x;
y = c.y;
return *this;
}
inline RCouple &RCouple::operator = (const Couple &c)
{
x = c.x;
y = c.y;
return *this;
}
inline RCouple::~RCouple()
{
}
inline RCouple &RCouple::zero()
{
x = y = 0;
return *this;
}
inline bool RCouple::isZero() const
{
return (x == 0 && y == 0);
}
inline bool RCouple::isNonZero() const
{
return (x != 0 || y != 0);
}
inline RCouple &RCouple::operator += (const RCouple &c)
{
x += c.x;
y += c.y;
return *this;
}
inline RCouple &RCouple::operator -= (const RCouple &c)
{
x -= c.x;
y -= c.y;
return *this;
}
inline RCouple &RCouple::operator *= (double n)
{
x *= n;
y *= n;
return *this;
}
inline RCouple &RCouple::operator /= (double n)
{
x /= n;
y /= n;
return *this;
}
inline RCouple operator + (const RCouple &c1, const RCouple &c2)
{
RCouple c(c1);
return c += c2;
}
inline RCouple operator - (const RCouple &c1, const RCouple &c2)
{
RCouple c(c1);
return c -= c2;
}
inline RCouple operator * (const RCouple &c1, double n)
{
RCouple c(c1);
return c *= n;
}
inline RCouple operator * (double n, const RCouple &c1)
{
RCouple c(c1);
return c *= n;
}
inline RCouple operator / (const RCouple &c1, double n)
{
RCouple c(c1);
return c /= n;
}
inline bool operator == (const RCouple &c1, const RCouple &c2)
{
return (c1.x == c2.x && c1.y == c2.y);
}
inline bool operator != (const RCouple &c1, const RCouple &c2)
{
return !(c1 == c2);
}
inline double RCouple::length() const
{
return hypot(x, y);
}
inline Couple RCouple::round() const
{
return Couple(
int(x >= 0 ? (x + 0.5) : (x - 0.5)),
int(y >= 0 ? (y + 0.5) : (y - 0.5)));
}
inline Couple RCouple::floor() const
{
return Couple(static_cast<int>(::floor(x)), static_cast<int>(::floor(y)));
}
inline Couple RCouple::ceil() const
{
return Couple(static_cast<int>(::ceil(x)), static_cast<int>(::ceil(y)));
}
} // namespace flatzebra
#endif /* _H_RCouple */
|