/usr/include/vtk-6.3/vtkPixelExtent.h is in libvtk6-dev 6.3.0+dfsg1-5.
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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkPixelExtenth.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkPixelExtent -- Index space representation of a pixel plane
// .SECTION Description
// Representation of a cartesian pixel plane and common operations
// on it. The implementation is intended to be fast and light
// so that it may be used in place of int[4] with little or no
// performance penalty.
//
// NOTE in most cases operation on an empty object produces
// incorrect results. If it an issue query Empty() first.
#ifndef vtkPixelExtent_h
#define vtkPixelExtent_h
#include "vtkSystemIncludes.h" // for VTK's system header config
#include "vtkCommonDataModelModule.h" // for export
#include <deque> // for inline impl
#include <algorithm> // for inline impl
#include <iostream> // for inline impl
#include <climits> // for inline impl
class VTKCOMMONDATAMODEL_EXPORT vtkPixelExtent
{
public:
vtkPixelExtent();
template<typename T>
vtkPixelExtent(const T *ext);
template<typename T>
vtkPixelExtent(T ilo, T ihi, T jlo, T jhi);
template<typename T>
vtkPixelExtent(T width, T height)
{ this->SetData(T(0), width-T(1), T(0), height-T(1)); }
vtkPixelExtent(const vtkPixelExtent &other);
vtkPixelExtent &operator=(const vtkPixelExtent &other);
// Description:
// Element access
int &operator[](int i){ return this->Data[i]; }
const int &operator[](int i) const { return this->Data[i]; }
// Description:
// Set the extent.
void SetData(const vtkPixelExtent &ext);
template<typename T>
void SetData(const T *ext);
template<typename T>
void SetData(T ilo, T ihi, T jlo, T jhi);
void Clear();
// Description:
// Direct access to internal data.
int *GetData(){ return this->Data; }
const int *GetData() const { return this->Data; }
template<typename T>
void GetData(T data[4]) const;
unsigned int *GetDataU()
{ return reinterpret_cast<unsigned int*>(this->Data); }
const unsigned int *GetDataU() const
{ return reinterpret_cast<const unsigned int*>(this->Data); }
// Description:
// Get the start/end index.
void GetStartIndex(int first[2]) const;
void GetStartIndex(int first[2], const int origin[2]) const;
void GetEndIndex(int last[2]) const;
// Description:
// Return true if empty.
int Empty() const;
// Description:
// Test for equivalence.
int operator==(const vtkPixelExtent &other) const;
// Description:
// Return non-zero if this extent conatins the other.
int Contains(const vtkPixelExtent &other) const;
int Contains(int i, int j) const;
// Description:
// Return non-zero if the extent is disjoint from the other
int Disjoint(vtkPixelExtent other) const;
// Description:
// Get the number in each direction.
template<typename T>
void Size(T nCells[2]) const;
// Description:
// Get the total number.
size_t Size() const;
// Description:
//In place intersection.
void operator&=(const vtkPixelExtent &other);
// Description:
// In place union
void operator|=(const vtkPixelExtent &other);
// Description:
// Expand the extents by n.
void Grow(int n);
void Grow(int q, int n);
void GrowLow(int q, int n);
void GrowHigh(int q, int n);
// Description:
// Shrink the extent by n.
void Shrink(int n);
void Shrink(int q, int n);
// Description:
// Shifts by low corner of this, moving to the origin.
void Shift();
// Description:
// Shift by low corner of the given extent.
void Shift(const vtkPixelExtent &ext);
// Description:
// Shift by the given amount.
void Shift(int *n);
// Description:
// Shift by the given amount in the given direction.
void Shift(int q, int n);
// Description:
// Divide the extent in half in the given direction. The
// operation is done in-place the other half of the split
// extent is returned. The retunr will be empty if the split
// could not be made.
vtkPixelExtent Split(int dir);
// Description:
// In-place conversion from cell based to node based extent, and vise-versa.
void CellToNode();
void NodeToCell();
// Description:
// Get the number in each direction.
template<typename T>
static
void Size(const vtkPixelExtent &ext, T nCells[2]);
// Description:
// Get the total number.
static
size_t Size(const vtkPixelExtent &ext);
// Description:
// Add or remove ghost cells. If a problem domain is
// provided then the result is clipled to be within the
// problem domain.
static vtkPixelExtent Grow(const vtkPixelExtent &inputExt, int n);
static vtkPixelExtent Grow(
const vtkPixelExtent &inputExt,
const vtkPixelExtent &problemDomain,
int n);
static vtkPixelExtent GrowLow(
const vtkPixelExtent &ext,
int q,
int n);
static vtkPixelExtent GrowHigh(
const vtkPixelExtent &ext,
int q,
int n);
// Description:
// Remove ghost cells. If a problem domain is
// provided the input is pinned at the domain.
static vtkPixelExtent Shrink(
const vtkPixelExtent &inputExt,
const vtkPixelExtent &problemDomain,
int n);
static vtkPixelExtent Shrink(
const vtkPixelExtent &inputExt,
int n);
// Description:
// Convert from point extent to cell extent
// while respecting the dimensionality of the data.
static vtkPixelExtent NodeToCell(const vtkPixelExtent &inputExt);
// Description:
// Convert from cell extent to point extent
// while respecting the dimensionality of the data.
static vtkPixelExtent CellToNode(const vtkPixelExtent &inputExt);
// Description:
// Shift by the given amount while respecting mode.
static void Shift(int *ij, int n);
static void Shift(int *ij, int *n);
// Description:
// Split ext at i,j, resulting extents (up to 4) are appended
// to newExts. If i,j is outside ext, ext is passed through
// unmodified.
static void Split(
int i,
int j,
const vtkPixelExtent &ext,
std::deque<vtkPixelExtent> &newExts);
// Description:
// A - B = C
// C is a set of disjoint extents such that the
// intersection of B and C is empty and the intersection
// of A and C is C.
static void Subtract(
const vtkPixelExtent &A,
vtkPixelExtent B,
std::deque<vtkPixelExtent> &newExts);
// Description:
// Merge compatible extents in the list. Extents are compatible
// if they are directly adjacent nad have the same extent along
// the adjacent edge.
static void Merge(std::deque<vtkPixelExtent> &exts);
private:
int Data[4];
};
// Description:
// Stream insertion operator for formatted output of pixel extents.
VTKCOMMONDATAMODEL_EXPORT
std::ostream &operator<<(std::ostream &os, const vtkPixelExtent &ext);
//-----------------------------------------------------------------------------
template<typename T>
void vtkPixelExtent::SetData(const T *ext)
{
Data[0] = static_cast<int>(ext[0]);
Data[1] = static_cast<int>(ext[1]);
Data[2] = static_cast<int>(ext[2]);
Data[3] = static_cast<int>(ext[3]);
}
//-----------------------------------------------------------------------------
template<typename T>
void vtkPixelExtent::SetData(T ilo, T ihi, T jlo, T jhi)
{
T ext[4] = {ilo, ihi, jlo, jhi};
this->SetData(ext);
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::SetData(const vtkPixelExtent &other)
{
this->SetData(other.GetData());
}
//-----------------------------------------------------------------------------
template<typename T>
void vtkPixelExtent::GetData(T data[4]) const
{
data[0] = static_cast<T>(this->Data[0]);
data[1] = static_cast<T>(this->Data[1]);
data[2] = static_cast<T>(this->Data[2]);
data[3] = static_cast<T>(this->Data[3]);
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Clear()
{
this->SetData<int>(INT_MAX, INT_MIN, INT_MAX, INT_MIN);
}
//-----------------------------------------------------------------------------
inline
vtkPixelExtent::vtkPixelExtent()
{
this->Clear();
}
//-----------------------------------------------------------------------------
template<typename T>
vtkPixelExtent::vtkPixelExtent(const T *ext)
{
this->SetData(ext);
}
//-----------------------------------------------------------------------------
template<typename T>
vtkPixelExtent::vtkPixelExtent(
T ilo,
T ihi,
T jlo,
T jhi)
{
this->SetData(ilo, ihi, jlo, jhi);
}
//-----------------------------------------------------------------------------
inline
vtkPixelExtent &vtkPixelExtent::operator=(const vtkPixelExtent &other)
{
if (&other == this)
{
return *this;
}
this->SetData(other);
return *this;
}
//-----------------------------------------------------------------------------
inline
vtkPixelExtent::vtkPixelExtent(const vtkPixelExtent &other)
{
*this = other;
}
//-----------------------------------------------------------------------------
template<typename T>
void vtkPixelExtent::Size(const vtkPixelExtent &ext, T nCells[2])
{
nCells[0] = ext[1] - ext[0] + 1;
nCells[1] = ext[3] - ext[2] + 1;
}
//-----------------------------------------------------------------------------
inline
size_t vtkPixelExtent::Size(const vtkPixelExtent &ext)
{
return (ext[1] - ext[0] + 1) * (ext[3] - ext[2] + 1);
}
//-----------------------------------------------------------------------------
template<typename T>
void vtkPixelExtent::Size(T nCells[2]) const
{
vtkPixelExtent::Size(*this, nCells);
}
//-----------------------------------------------------------------------------
inline
size_t vtkPixelExtent::Size() const
{
return vtkPixelExtent::Size(*this);
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::GetStartIndex(int first[2]) const
{
first[0] = this->Data[0];
first[1] = this->Data[2];
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::GetStartIndex(int first[2], const int origin[2]) const
{
first[0] = this->Data[0] - origin[0];
first[1] = this->Data[2] - origin[1];
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::GetEndIndex(int last[2]) const
{
last[0] = this->Data[1];
last[1] = this->Data[3];
}
//-----------------------------------------------------------------------------
inline
int vtkPixelExtent::Empty() const
{
if ( this->Data[0] > this->Data[1]
|| this->Data[2] > this->Data[3])
{
return 1;
}
return 0;
}
//-----------------------------------------------------------------------------
inline
int vtkPixelExtent::operator==(const vtkPixelExtent &other) const
{
if ( (this->Data[0] == other.Data[0])
&& (this->Data[1] == other.Data[1])
&& (this->Data[2] == other.Data[2])
&& (this->Data[3] == other.Data[3]) )
{
return 1;
}
return 0;
}
//-----------------------------------------------------------------------------
inline
int vtkPixelExtent::Contains(const vtkPixelExtent &other) const
{
if ( (this->Data[0] <= other.Data[0])
&& (this->Data[1] >= other.Data[1])
&& (this->Data[2] <= other.Data[2])
&& (this->Data[3] >= other.Data[3]) )
{
return 1;
}
return 0;
}
//-----------------------------------------------------------------------------
inline
int vtkPixelExtent::Contains(int i, int j) const
{
if ( (this->Data[0] <= i)
&& (this->Data[1] >= i)
&& (this->Data[2] <= j)
&& (this->Data[3] >= j) )
{
return 1;
}
return 0;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::operator&=(const vtkPixelExtent &other)
{
if (this->Empty())
{
return;
}
if (other.Empty())
{
this->Clear();
return;
}
this->Data[0] = std::max(this->Data[0], other.Data[0]);
this->Data[1] = std::min(this->Data[1], other.Data[1]);
this->Data[2] = std::max(this->Data[2], other.Data[2]);
this->Data[3] = std::min(this->Data[3], other.Data[3]);
if (this->Empty())
{
this->Clear();
}
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::operator|=(const vtkPixelExtent &other)
{
if (other.Empty())
{
return;
}
if (this->Empty())
{
this->SetData(other.GetData());
return;
}
this->Data[0] = std::min(this->Data[0], other.Data[0]);
this->Data[1] = std::max(this->Data[1], other.Data[1]);
this->Data[2] = std::min(this->Data[2], other.Data[2]);
this->Data[3] = std::max(this->Data[3], other.Data[3]);
}
//-----------------------------------------------------------------------------
inline
int vtkPixelExtent::Disjoint(vtkPixelExtent other) const
{
other &= *this;
return other.Empty();
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Grow(int n)
{
this->Data[0] -= n;
this->Data[1] += n;
this->Data[2] -= n;
this->Data[3] += n;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Grow(int q, int n)
{
q *= 2;
this->Data[q ] -= n;
this->Data[q+1] += n;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::GrowLow(int q, int n)
{
this->Data[2*q] -= n;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::GrowHigh(int q, int n)
{
this->Data[2*q+1] += n;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Shrink(int n)
{
this->Data[0] += n;
this->Data[1] -= n;
this->Data[2] += n;
this->Data[3] -= n;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Shrink(int q, int n)
{
q *= 2;
this->Data[q ] += n;
this->Data[q+1] -= n;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Shift(int *n)
{
this->Data[0] += n[0];
this->Data[1] += n[0];
this->Data[2] += n[1];
this->Data[3] += n[1];
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Shift(int q, int n)
{
q *= 2;
this->Data[q ] += n;
this->Data[q+1] += n;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Shift(const vtkPixelExtent &other)
{
for (int q=0; q<2; ++q)
{
int qq = q*2;
int n = -other[qq];
this->Data[qq ] += n;
this->Data[qq+1] += n;
}
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::Shift()
{
for (int q=0; q<2; ++q)
{
int qq = q*2;
int n =- this->Data[qq];
this->Data[qq ] += n;
this->Data[qq+1] += n;
}
}
//-----------------------------------------------------------------------------
inline
vtkPixelExtent vtkPixelExtent::Split(int dir)
{
vtkPixelExtent half;
int q = 2 * dir;
int l = this->Data[q+1] - this->Data[q] + 1;
int s = l/2;
if (s)
{
s += this->Data[q];
half = *this;
half.Data[q] = s;
this->Data[q+1] = s - 1;
}
return half;
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::CellToNode()
{
++this->Data[1];
++this->Data[3];
}
//-----------------------------------------------------------------------------
inline
void vtkPixelExtent::NodeToCell()
{
--this->Data[1];
--this->Data[3];
}
//-----------------------------------------------------------------------------
inline
bool operator<(const vtkPixelExtent &l, const vtkPixelExtent &r)
{
return l.Size() < r.Size();
}
#endif
// VTK-HeaderTest-Exclude: vtkPixelExtent.h
|