JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
RBound< T > Class Template Reference

#include <Vector.h>

Public Member Functions

 RBound (T XMin=(T) 0, T XMax=(T) 0, T YMin=(T) 0, T YMax=(T) 0, T ZMin=(T) 0, T ZMax=(T) 0, T TMin=(T) 0, T TMax=(T) 0)
 
virtual ~RBound ()
 
void set (T XMin=(T) 0, T XMax=(T) 0, T YMin=(T) 0, T YMax=(T) 0, T ZMin=(T) 0, T ZMax=(T) 0, T TMin=(T) 0, T TMax=(T) 0)
 
void init ()
 
void enlarge (T f)
 境界構造体 bound を広げる
 
void multiple (T f)
 
void fusion (RBound< T > bound)
 境界構造体 bound と融合させる
 
void fusion (Vector< T > vect)
 ベクトル vect と融合させる

 
void fusion (T x, T y, T z)
 ポイントと融合させる

 
void commonarea (RBound< T > bound)
 境界構造体 bound との共通領域 共通領域がない場合は,min>max になる
 
void cutdown (RBound< T > bound)
 切り出した場合の境界
 
void cutdown (Vector< T > vect)
 
void cutdown (T x, T y, T z)
 
bool outofBounds (Vector< T > vect)
 ベクトルが位置ベクトルの場合,その点は境界外か? 境界外:true,境界内:false
 
bool outofBounds (T x, T y, T z)
 その点は境界外か? 境界外:true,境界内:false
 

Public Attributes

xmin
 x軸境界の最小値.
 
xmax
 x軸境界の最大値.
 
ymin
 y軸境界の最小値.
 
ymax
 y軸境界の最大値.
 
zmin
 z軸境界の最小値.
 
zmax
 z軸境界の最大値.
 
tmin
 汎用.
 
tmax
 汎用.
 

Detailed Description

template<typename T = int>
class jbxl::RBound< T >

template <typename T=int>> class RBound

3Dデータの境界情報を保存する型.

Definition at line 423 of file Vector.h.

Constructor & Destructor Documentation

◆ RBound()

template<typename T = int>
RBound ( T XMin = (T)0,
T XMax = (T)0,
T YMin = (T)0,
T YMax = (T)0,
T ZMin = (T)0,
T ZMax = (T)0,
T TMin = (T)0,
T TMax = (T)0 )
inline

Definition at line 437 of file Vector.h.

437 {
438 set(XMin, XMax, YMin, YMax, ZMin, ZMax, TMin, TMax);
439 }
void set(T XMin=(T) 0, T XMax=(T) 0, T YMin=(T) 0, T YMax=(T) 0, T ZMin=(T) 0, T ZMax=(T) 0, T TMin=(T) 0, T TMax=(T) 0)
Definition Vector.h:444

◆ ~RBound()

template<typename T = int>
virtual ~RBound ( )
inlinevirtual

Definition at line 441 of file Vector.h.

441{}

Member Function Documentation

◆ commonarea()

template<typename T = int>
void commonarea ( RBound< T > bound)
inline

Definition at line 516 of file Vector.h.

516 {
517 xmin = Max(xmin, bound.xmin);
518 ymin = Max(ymin, bound.ymin);
519 zmin = Max(zmin, bound.zmin);
520 xmax = Min(xmax, bound.xmax);
521 ymax = Min(ymax, bound.ymax);
522 zmax = Min(zmax, bound.zmax);
523 }
T xmax
x軸境界の最大値.
Definition Vector.h:427
T ymin
y軸境界の最小値.
Definition Vector.h:428
T zmax
z軸境界の最大値.
Definition Vector.h:431
T xmin
x軸境界の最小値.
Definition Vector.h:426
T ymax
y軸境界の最大値.
Definition Vector.h:429
T zmin
z軸境界の最小値.
Definition Vector.h:430
#define Min(x, y)
Definition common.h:250
#define Max(x, y)
Definition common.h:247

References Max, Min, RBound< T >::xmax, RBound< T >::xmin, RBound< T >::ymax, RBound< T >::ymin, RBound< T >::zmax, and RBound< T >::zmin.

Referenced by jbxl::cut_object_MSGraph(), jbxl::cut_object_MSGraph(), and jbxl::cut_object_MSGraph().

Here is the caller graph for this function:

◆ cutdown() [1/3]

template<typename T = int>
void cutdown ( RBound< T > bound)
inline

Definition at line 527 of file Vector.h.

527 {
528 xmin += bound.xmin;
529 ymin += bound.ymin;
530 zmin += bound.zmin;
531 xmax += bound.xmin;
532 ymax += bound.ymin;
533 zmax += bound.zmin;
534 }

References RBound< T >::xmin, RBound< T >::ymin, and RBound< T >::zmin.

Referenced by jbxl::cut_object_MSGraph(), jbxl::cut_object_MSGraph(), jbxl::cut_object_MSGraph(), and jbxl::get_boundary_MSGraph().

Here is the caller graph for this function:

◆ cutdown() [2/3]

template<typename T = int>
void cutdown ( T x,
T y,
T z )
inline

Definition at line 547 of file Vector.h.

547 {
548 xmin += x;
549 ymin += y;
550 zmin += z;
551 xmax += x;
552 ymax += y;
553 zmax += z;
554 }

◆ cutdown() [3/3]

template<typename T = int>
void cutdown ( Vector< T > vect)
inline

Definition at line 537 of file Vector.h.

537 {
538 xmin += vect.x;
539 ymin += vect.y;
540 zmin += vect.z;
541 xmax += vect.x;
542 ymax += vect.y;
543 zmax += vect.z;
544 }

References Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ enlarge()

template<typename T = int>
void enlarge ( T f)
inline

Definition at line 461 of file Vector.h.

461 {
462 xmin -= f;
463 ymin -= f;
464 zmin -= f;
465 xmax += f;
466 ymax += f;
467 zmax += f;
468 }

Referenced by jbxl::cut_object_MSGraph(), and jbxl::cut_object_MSGraph().

Here is the caller graph for this function:

◆ fusion() [1/3]

template<typename T = int>
void fusion ( RBound< T > bound)
inline

Definition at line 483 of file Vector.h.

483 {
484 xmin = Min(xmin, bound.xmin);
485 ymin = Min(ymin, bound.ymin);
486 zmin = Min(zmin, bound.zmin);
487 xmax = Max(xmax, bound.xmax);
488 ymax = Max(ymax, bound.ymax);
489 zmax = Max(zmax, bound.zmax);
490 }

References Max, Min, RBound< T >::xmax, RBound< T >::xmin, RBound< T >::ymax, RBound< T >::ymin, RBound< T >::zmax, and RBound< T >::zmin.

Referenced by BREP_SHELL::CloseData(), BREP_SOLID::CloseData(), BREP_CONTOUR::CloseFacet(), jbxl::cut_object_MSGraph(), jbxl::cut_object_MSGraph(), and jbxl::get_boundary_MSGraph().

Here is the caller graph for this function:

◆ fusion() [2/3]

template<typename T = int>
void fusion ( T x,
T y,
T z )
inline

Definition at line 503 of file Vector.h.

503 {
504 xmin = Min(xmin, x);
505 ymin = Min(ymin, y);
506 zmin = Min(zmin, z);
507 xmax = Max(xmax, x);
508 ymax = Max(ymax, y);
509 zmax = Max(zmax, z);
510 }

References Max, and Min.

◆ fusion() [3/3]

template<typename T = int>
void fusion ( Vector< T > vect)
inline

Definition at line 493 of file Vector.h.

493 {
494 xmin = Min(xmin, vect.x);
495 ymin = Min(ymin, vect.y);
496 zmin = Min(zmin, vect.z);
497 xmax = Max(xmax, vect.x);
498 ymax = Max(ymax, vect.y);
499 zmax = Max(zmax, vect.z);
500 }

References Max, Min, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ init()

template<typename T = int>
void init ( )
inline

Definition at line 455 of file Vector.h.

455{ xmin = xmax = ymin = ymax = zmin = zmax = tmin = tmax = (T)0;}
T tmax
汎用.
Definition Vector.h:433
T tmin
汎用.
Definition Vector.h:432

Referenced by MSGraph< T >::init().

Here is the caller graph for this function:

◆ multiple()

template<typename T = int>
void multiple ( T f)
inline

Definition at line 470 of file Vector.h.

470 {
471 xmin *= f;
472 ymin *= f;
473 zmin *= f;
474 xmax *= f;
475 ymax *= f;
476 zmax *= f;
477 }

◆ outofBounds() [1/2]

template<typename T = int>
bool outofBounds ( T x,
T y,
T z )
inline

Definition at line 564 of file Vector.h.

564 {
565 return x < xmin || x > xmax ||
566 y < ymin || y > ymax ||
567 z < zmin || z > zmax;
568 }

◆ outofBounds() [2/2]

template<typename T = int>
bool outofBounds ( Vector< T > vect)
inline

Definition at line 557 of file Vector.h.

557 {
558 return vect.x < xmin || vect.x > xmax ||
559 vect.y < ymin || vect.y > ymax ||
560 vect.z < zmin || vect.z > zmax;
561 }

References Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ set()

template<typename T = int>
void set ( T XMin = (T)0,
T XMax = (T)0,
T YMin = (T)0,
T YMax = (T)0,
T ZMin = (T)0,
T ZMax = (T)0,
T TMin = (T)0,
T TMax = (T)0 )
inline

Definition at line 444 of file Vector.h.

444 {
445 xmin = XMin;
446 ymin = YMin;
447 zmin = ZMin;
448 xmax = XMax;
449 ymax = YMax;
450 zmax = ZMax;
451 tmin = TMin;
452 tmax = TMax;
453 }

Referenced by BREP_CONTOUR::BREP_CONTOUR(), BREP_FACET::BREP_FACET(), BREP_SHELL::BREP_SHELL(), BREP_SOLID::BREP_SOLID(), jbxl::get_boundary_MSGraph(), jbxl::readGraphicSlices(), and MSGraph< T >::set().

Here is the caller graph for this function:

Member Data Documentation

◆ tmax

template<typename T = int>
T tmax

Definition at line 433 of file Vector.h.

◆ tmin

template<typename T = int>
T tmin

Definition at line 432 of file Vector.h.

◆ xmax

◆ xmin

◆ ymax

◆ ymin

◆ zmax

◆ zmin


The documentation for this class was generated from the following file: