JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
BREP_SHELL Class Reference

#include <Brep.h>

Collaboration diagram for BREP_SHELL:

Public Member Functions

 BREP_SHELL (BREP_SOLID *pr_solid)
 
virtual ~BREP_SHELL ()
 
void CloseData ()
 
void ConnectFacet (BREP_FACET *facet)
 
void DisconnectFacet (BREP_FACET *facet)
 

Public Attributes

BREP_SOLIDsolid
 
BREP_FACET_LIST facets
 
RBound< double > rbound
 

Detailed Description

Definition at line 113 of file Brep.h.

Constructor & Destructor Documentation

◆ BREP_SHELL()

BREP_SHELL ( BREP_SOLID * pr_solid)

Definition at line 137 of file Brep.cpp.

138{
139 solid = pr_solid;
140 rbound.set(HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF);
141
142 if (solid!=NULL) solid->ConnectShell(this);
143}
RBound< double > rbound
Definition Brep.h:118
BREP_SOLID * solid
Definition Brep.h:116
void ConnectShell(BREP_SHELL *shell)
Definition Brep.cpp:107
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

References BREP_SOLID::ConnectShell(), BREP_SHELL::rbound, RBound< T >::set(), and BREP_SHELL::solid.

Here is the call graph for this function:

◆ ~BREP_SHELL()

~BREP_SHELL ( )
virtual

Definition at line 146 of file Brep.cpp.

147{
148 CVCounter* counter = NULL;
149 if (solid!=NULL) {
150 if (solid->counter!=NULL) {
151 counter = solid->counter->GetUsableCounter();
152 if (counter!=NULL) counter->SetMax(100);
153 }
154 solid->DisconnectShell(this);
155 }
156
157 // Facets の破棄
158 BREP_FACET* pbfc;
159 BREP_FACET_LIST::iterator ifacet = facets.begin();
160
161 int cnt = 0;
162 int itv = Max(1, (int)facets.size()/100);
163 while (ifacet!=facets.end()) {
164 pbfc = *ifacet;
165 ifacet = facets.erase(ifacet);
166 pbfc->shell = NULL;
167 delete(pbfc);
168 cnt++;
169
170 // カウンタ処理
171 if (counter!=NULL && cnt%itv==0) counter->StepIt();
172 }
173}
BREP_SHELL * shell
Definition Brep.h:138
BREP_FACET_LIST facets
Definition Brep.h:117
CVCounter * counter
仮想計量カウンタ
Definition Brep.h:90
void DisconnectShell(BREP_SHELL *shell)
Definition Brep.cpp:121
virtual void StepIt(int n=1)
カウンタのメモリを増やす
Definition ClassBox.h:171
virtual void SetMax(int m)
カウンタの最大値(最終目標)を設定
Definition ClassBox.h:161
virtual CVCounter * GetUsableCounter()
現在使用可能な目盛りの有効領域を確保
Definition ClassBox.h:177
#define Max(x, y)
Definition common.h:247

References BREP_SOLID::counter, BREP_SOLID::DisconnectShell(), BREP_SHELL::facets, CVCounter::GetUsableCounter(), Max, CVCounter::SetMax(), BREP_FACET::shell, BREP_SHELL::solid, and CVCounter::StepIt().

Here is the call graph for this function:

Member Function Documentation

◆ CloseData()

void CloseData ( )

Definition at line 176 of file Brep.cpp.

177{
178 BREP_FACET_LIST::iterator ifacet;
179 for (ifacet=facets.begin(); ifacet!=facets.end(); ifacet++) (*ifacet)->CloseData();
180 for (ifacet=facets.begin(); ifacet!=facets.end(); ifacet++) rbound.fusion((*ifacet)->rbound);
181}
void fusion(RBound< T > bound)
境界構造体 bound と融合させる
Definition Vector.h:483

References BREP_SHELL::facets, RBound< T >::fusion(), and BREP_SHELL::rbound.

Here is the call graph for this function:

◆ ConnectFacet()

void ConnectFacet ( BREP_FACET * facet)

Definition at line 185 of file Brep.cpp.

186{
187 if (facet!=NULL) {
188 facet->shell = this;
189 facets.push_back(facet);
190 }
191}

References BREP_SHELL::facets, and BREP_FACET::shell.

Referenced by BREP_FACET::BREP_FACET().

Here is the caller graph for this function:

◆ DisconnectFacet()

void DisconnectFacet ( BREP_FACET * facet)

Definition at line 195 of file Brep.cpp.

196{
197 if (facet!=NULL) {
198 BREP_FACET_LIST::iterator ifacet;
199 ifacet = std::find(facets.begin(), facets.end(), facet);
200 if (ifacet!=facets.end()) facets.erase(ifacet);
201
202 facet->shell = NULL;
203 }
204}

References BREP_SHELL::facets, and BREP_FACET::shell.

Referenced by BREP_FACET::~BREP_FACET().

Here is the caller graph for this function:

Member Data Documentation

◆ facets

◆ rbound

RBound<double> rbound

Definition at line 118 of file Brep.h.

Referenced by BREP_SHELL::BREP_SHELL(), and BREP_SHELL::CloseData().

◆ solid


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