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

#include <Brep.h>

Collaboration diagram for BREP_FACET:

Public Member Functions

 BREP_FACET (BREP_SHELL *pr_shell)
 
virtual ~BREP_FACET ()
 
void CloseData ()
 
void ConnectContour (BREP_CONTOUR *contour)
 
void DisconnectContour (BREP_CONTOUR *contour)
 
void ComputePlaneEquation ()
 

Public Attributes

BREP_SHELLshell
 
BREP_CONTOUR_LIST outer_contours
 
Vector< double > normal
 
RBound< double > rbound
 
double d
 定数,原点から平面への距離*(-1)
 
double tolerance
 
bool deletable
 削除できる
 
bool notdelete
 削除してはいけない
 

Detailed Description

Definition at line 135 of file Brep.h.

Constructor & Destructor Documentation

◆ BREP_FACET()

BREP_FACET ( BREP_SHELL * pr_shell)

Definition at line 212 of file Brep.cpp.

213{
214 shell = pr_shell;
215 if (shell!=NULL) shell->ConnectFacet(this);
216
217 deletable = false;
218 notdelete = false;
220
221 rbound.set(HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF);
222}
BREP_SHELL * shell
Definition Brep.h:138
bool notdelete
削除してはいけない
Definition Brep.h:148
double tolerance
Definition Brep.h:145
RBound< double > rbound
Definition Brep.h:142
bool deletable
削除できる
Definition Brep.h:147
void ConnectFacet(BREP_FACET *facet)
Definition Brep.cpp:185
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
double Facet_Tolerance
Definition Tolerance.cpp:17

References BREP_SHELL::ConnectFacet(), BREP_FACET::deletable, jbxl::Facet_Tolerance, BREP_FACET::notdelete, BREP_FACET::rbound, RBound< T >::set(), BREP_FACET::shell, and BREP_FACET::tolerance.

Here is the call graph for this function:

◆ ~BREP_FACET()

~BREP_FACET ( )
virtual

Definition at line 225 of file Brep.cpp.

226{
227 if (shell!=NULL) shell->DisconnectFacet(this);
228
229 BREP_CONTOUR* bpcn;
230 BREP_CONTOUR_LIST::iterator icon = outer_contours.begin();
231 while (icon!=outer_contours.end()) {
232 bpcn = *icon;
233 icon = outer_contours.erase(icon);
234 bpcn->facet = NULL;
235 delete (bpcn);
236 }
237}
BREP_FACET * facet
Definition Brep.h:170
BREP_CONTOUR_LIST outer_contours
Definition Brep.h:139
void DisconnectFacet(BREP_FACET *facet)
Definition Brep.cpp:195

References BREP_SHELL::DisconnectFacet(), BREP_CONTOUR::facet, BREP_FACET::outer_contours, and BREP_FACET::shell.

Here is the call graph for this function:

Member Function Documentation

◆ CloseData()

void CloseData ( )

Definition at line 240 of file Brep.cpp.

241{
242 BREP_CONTOUR_LIST::iterator icon;
243 for (icon=outer_contours.begin(); icon!=outer_contours.end(); icon++) (*icon)->CloseData();
244
246}
void ComputePlaneEquation()
Definition Brep.cpp:278

References BREP_FACET::CloseData(), BREP_FACET::ComputePlaneEquation(), and BREP_FACET::outer_contours.

Referenced by BREP_FACET::CloseData(), jbxl::PatchupContour(), and jbxl::ReverseContours().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ComputePlaneEquation()

void ComputePlaneEquation ( )

void BREP_FACET::ComputePlaneEquation()

Note
平面の方程式 N・P+d = 0
(N:法線ベクトル,P:平面の点の位置ベクトル,d:定数,原点から平面への距離x-1)

Definition at line 278 of file Brep.cpp.

279{
280 normal = outer_contours.front()->normal;
281
282 double emax = 0.0;
283 double dmin = HUGE_VALF;
284 double dmax = -HUGE_VALF;
285
286 BREP_CONTOUR_LIST::iterator icon;
287 for (icon=outer_contours.begin(); icon!=outer_contours.end(); icon++) {
288 (*icon)->CloseFacet(this, emax, dmin, dmax);
289 }
290
291 d = (dmin + dmax)/2.0;
292 tolerance = Max((dmax - dmin)/2.0, Facet_Tolerance);
293 tolerance = Max(emax, tolerance);
294
295 double extent = tolerance + emax;
296 rbound.xmin -= extent;
297 rbound.ymin -= extent;
298 rbound.zmin -= extent;
299 rbound.xmax += extent;
300 rbound.ymax += extent;
301 rbound.zmax += extent;
302}
double d
定数,原点から平面への距離*(-1)
Definition Brep.h:144
Vector< double > normal
Definition Brep.h:141
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 Max(x, y)
Definition common.h:247

References BREP_FACET::d, jbxl::Facet_Tolerance, Max, BREP_FACET::normal, BREP_FACET::outer_contours, BREP_FACET::rbound, BREP_FACET::tolerance, RBound< T >::xmax, RBound< T >::xmin, RBound< T >::ymax, RBound< T >::ymin, RBound< T >::zmax, and RBound< T >::zmin.

Referenced by BREP_FACET::CloseData().

Here is the caller graph for this function:

◆ ConnectContour()

void ConnectContour ( BREP_CONTOUR * contour)

Definition at line 250 of file Brep.cpp.

251{
252 if (contour!=NULL) {
253 contour->facet = this;
254 outer_contours.push_back(contour);
255 }
256}

References BREP_CONTOUR::facet, and BREP_FACET::outer_contours.

Referenced by BREP_CONTOUR::BREP_CONTOUR().

Here is the caller graph for this function:

◆ DisconnectContour()

void DisconnectContour ( BREP_CONTOUR * contour)

Definition at line 259 of file Brep.cpp.

260{
261 if (contour!=NULL) {
262 BREP_CONTOUR_LIST::iterator icon;
263 icon = std::find(outer_contours.begin(), outer_contours.end(), contour);
264 if (icon!=outer_contours.end()) outer_contours.erase(icon);
265
266 contour->facet = NULL;
267 }
268}

References BREP_CONTOUR::facet, and BREP_FACET::outer_contours.

Referenced by BREP_CONTOUR::~BREP_CONTOUR().

Here is the caller graph for this function:

Member Data Documentation

◆ d

double d

Definition at line 144 of file Brep.h.

Referenced by BREP_FACET::ComputePlaneEquation().

◆ deletable

bool deletable

◆ normal

Vector<double> normal

Definition at line 141 of file Brep.h.

Referenced by BREP_CONTOUR::CloseFacet(), and BREP_FACET::ComputePlaneEquation().

◆ notdelete

bool notdelete

Definition at line 148 of file Brep.h.

Referenced by BREP_FACET::BREP_FACET().

◆ outer_contours

◆ rbound

◆ shell

◆ tolerance

double tolerance

Definition at line 145 of file Brep.h.

Referenced by BREP_FACET::BREP_FACET(), and BREP_FACET::ComputePlaneEquation().


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