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

#include <Brep.h>

Collaboration diagram for BREP_VERTEX:

Public Member Functions

 BREP_VERTEX ()
 
virtual ~BREP_VERTEX ()
 
void CloseData ()
 
void DisconnectWing (BREP_WING *wing)
 
void ComputeNormal ()
 
void ComputeTolerance ()
 

Public Attributes

BREP_WING_LIST wing_list
 
Vector< double > point
 頂点の座標.
 
Vector< double > normal
 法線ベクトル.周りの Contour の法線ベクトルの平均.
 
UVMap< double > uvmap
 曲面のUV座標
 
ArrayParam< int > weight
 頂点の重み.要正規化.
 
long int index
 シーケンシャルに増加する一意的な番号.Octree に格納されるときに設定される.
 
bool calc_normal
 normal を計算するか? しない場合は入力値を使用する.
 
double distance2
 
double tolerance
 
BREP_VERTEX_LISTforbidden_list
 お互いに Edgeを張ることを禁止された Vertexの List
 

Detailed Description

Definition at line 255 of file Brep.h.

Constructor & Destructor Documentation

◆ BREP_VERTEX()

Definition at line 571 of file Brep.cpp.

572{
573 // Vector類は宣言された時に,既に初期化されている.
574
575 index = -1;
576 calc_normal = true;
578
579 weight.init();
580 forbidden_list = NULL;
581 distance2 = HUGE_VALF;
582}
void init(int n=0)
Definition tools++.h:51
bool calc_normal
normal を計算するか? しない場合は入力値を使用する.
Definition Brep.h:267
long int index
シーケンシャルに増加する一意的な番号.Octree に格納されるときに設定される.
Definition Brep.h:266
double distance2
Definition Brep.h:269
double tolerance
Definition Brep.h:270
ArrayParam< int > weight
頂点の重み.要正規化.
Definition Brep.h:263
BREP_VERTEX_LIST * forbidden_list
お互いに Edgeを張ることを禁止された Vertexの List
Definition Brep.h:272
double Abs_Vertex_Tolerance
Definition Tolerance.cpp:21

References jbxl::Abs_Vertex_Tolerance, BREP_VERTEX::calc_normal, BREP_VERTEX::distance2, BREP_VERTEX::forbidden_list, BREP_VERTEX::index, ArrayParam< T >::init(), BREP_VERTEX::tolerance, and BREP_VERTEX::weight.

Here is the call graph for this function:

◆ ~BREP_VERTEX()

~BREP_VERTEX ( )
virtual

Definition at line 585 of file Brep.cpp.

586{
587 // Wingリストがまだ空でない!!
588 if (!wing_list.empty()) {
589 DEBUG_MODE PRINT_MESG("~BREP_VERTEX: List of Wing is not empty!!\n");
590 }
591
592 weight.free();
593
594 if (forbidden_list!=NULL) {
595 forbidden_list->clear();
596 delete(forbidden_list);
597 }
598}
void free(void)
Definition tools++.h:66
BREP_WING_LIST wing_list
Definition Brep.h:258
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502

References DEBUG_MODE, BREP_VERTEX::forbidden_list, ArrayParam< T >::free(), PRINT_MESG, BREP_VERTEX::weight, and BREP_VERTEX::wing_list.

Here is the call graph for this function:

Member Function Documentation

◆ CloseData()

void CloseData ( )

Definition at line 647 of file Brep.cpp.

648{
650}
void ComputeTolerance()
Definition Brep.cpp:636

References BREP_VERTEX::ComputeTolerance().

Referenced by jbxl::CreateContourByVector().

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

◆ ComputeNormal()

void ComputeNormal ( )

void BREP_VERTEX::ComputeNormal()

Vertexの法線ベクトルを計算する.
Vertexの周りの Contourの法線ベクトルの加算平均を計算する

Definition at line 623 of file Brep.cpp.

624{
625 normal = Vector<double>(0.0, 0.0, 0.0);
626
627 BREP_WING_LIST::iterator iwing;
628 for (iwing=wing_list.begin(); iwing!=wing_list.end(); iwing++) {
629 BREP_WING* wing = *iwing;
630 normal = normal + (wing->contour->facet)->normal;
631 }
633}
BREP_FACET * facet
Definition Brep.h:170
Vector< double > normal
法線ベクトル.周りの Contour の法線ベクトルの平均.
Definition Brep.h:261
BREP_CONTOUR * contour
Definition Brep.h:215
Vector< T > normalize(void)
Definition Vector.h:87

References BREP_WING::contour, BREP_CONTOUR::facet, BREP_VERTEX::normal, Vector< T >::normalize(), and BREP_VERTEX::wing_list.

Referenced by OctreeNode::ComputeVerticesNormal().

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

◆ ComputeTolerance()

void ComputeTolerance ( )

Definition at line 636 of file Brep.cpp.

637{
638 double max = Xabs(point.x);
639 max = Max(max, Xabs(point.y));
640 max = Max(max, Xabs(point.z));
641
642 tolerance = Vertex_Tolerance * max; // 相対
644}
Vector< double > point
頂点の座標.
Definition Brep.h:260
#define Max(x, y)
Definition common.h:247
#define Xabs(x)
Definition common.h:257
double Vertex_Tolerance
Definition Tolerance.cpp:15

References jbxl::Abs_Vertex_Tolerance, Max, BREP_VERTEX::point, BREP_VERTEX::tolerance, jbxl::Vertex_Tolerance, Vector< T >::x, Xabs, Vector< T >::y, and Vector< T >::z.

Referenced by BREP_VERTEX::CloseData().

Here is the caller graph for this function:

◆ DisconnectWing()

void DisconnectWing ( BREP_WING * wing)

Definition at line 602 of file Brep.cpp.

603{
604 BREP_WING_LIST::iterator iwing;
605 //
606 iwing = std::find(wing_list.begin(), wing_list.end(), wing);
607 if (iwing==wing_list.end()) {
608 // この Wingは Vertexと接続していません!!
609 DEBUG_MODE PRINT_MESG("DisconnectWing: This Wing does not connect with Vertex!!\n");
610 return;
611 }
612
613 wing_list.erase(iwing);
614}

References DEBUG_MODE, PRINT_MESG, and BREP_VERTEX::wing_list.

Referenced by jbxl::DestroyWing().

Here is the caller graph for this function:

Member Data Documentation

◆ calc_normal

bool calc_normal

◆ distance2

double distance2

◆ forbidden_list

◆ index

◆ normal

◆ point

◆ tolerance

◆ uvmap

◆ weight

ArrayParam<int> weight

◆ wing_list


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