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

#include <Brep.h>

Collaboration diagram for OctreeNode:

Public Member Functions

 OctreeNode (BREP_VERTEX *new_vertex, BREP_SOLID *sld)
 OctreeNodeのコンストラクタは,BREP_VERTEXに対して,新たに領域を作らずにポインタをコピーすることに注意!!
 
 ~OctreeNode ()
 
OctreeNodeAddWithUnique (BREP_VERTEX *new_vertex)
 
OctreeNodeAddWithDuplicates (BREP_VERTEX *new_vertex)
 
OctreeNodeFindSubtree (BREP_VERTEX *element)
 Vertex element と同じ位置にある Vertexを含むノードを返す.
 
void ComputeVerticesNormal (void)
 

Public Attributes

BREP_SOLIDsolid
 

Private Attributes

BREP_VERTEXvertex
 ルートノードの場合は NULL
 
OctreeNodechild [8]
 

Friends

BREP_VERTEX ** GetOctreeVertices (OctreeNode *octree, long int *vertexno)
 
long int OctreeGetter (OctreeNode *p, BREP_VERTEX **vtx, long int counter)
 
BREP_VERTEXAddVertex2Octree (BREP_VERTEX *vertex, OctreeNode *octree, bool dupli)
 

Detailed Description

Definition at line 291 of file Brep.h.

Constructor & Destructor Documentation

◆ OctreeNode()

OctreeNode ( BREP_VERTEX * new_vertex,
BREP_SOLID * sld )

Definition at line 658 of file Brep.cpp.

659{
660 solid = sld;
661 vertex = new_vertex;
662
663 if (solid!=NULL && vertex!=NULL) {
665 solid->vertexid++;
666 }
667
668 for (int i=0; i<8; i++) child[i] = NULL;
669}
unsigned int vertexid
頂点のカウンタ.Vertex のIDを決める際に使用
Definition Brep.h:76
long int index
シーケンシャルに増加する一意的な番号.Octree に格納されるときに設定される.
Definition Brep.h:266
OctreeNode * child[8]
Definition Brep.h:298
BREP_SOLID * solid
Definition Brep.h:294
BREP_VERTEX * vertex
ルートノードの場合は NULL
Definition Brep.h:297

References OctreeNode::child, BREP_VERTEX::index, OctreeNode::solid, OctreeNode::vertex, and BREP_SOLID::vertexid.

◆ ~OctreeNode()

~OctreeNode ( )

Definition at line 672 of file Brep.cpp.

673{
674 for (int i=0; i<8; i++) {
675 if (child[i]!=NULL) delete child[i];
676 }
677
678 if (vertex!=NULL) {
679 delete vertex;
680 if (solid!=NULL) solid->vertexno--;
681 }
682}
unsigned int vertexno
頂点の数
Definition Brep.h:75

References OctreeNode::child, OctreeNode::solid, OctreeNode::vertex, and BREP_SOLID::vertexno.

Member Function Documentation

◆ AddWithDuplicates()

OctreeNode * AddWithDuplicates ( BREP_VERTEX * new_vertex)

Octreeに Vertex new_vertex そのものを登録する.重複登録を許す. 登録した OctreeNode を返す.

OctreeNode* OctreeNode::AddWithDuplicates(BREP_VERTEX* new_vertex)

Octreeに Vertex new_vertex そのものを登録する.重複登録を許す.
登録した OctreeNodeを返す.

Definition at line 729 of file Brep.cpp.

730{
731 OctreeNode* o = NULL;
732 OctreeNode* p = this;
733 int cmp = -1;
734
735 if (new_vertex==NULL) return this;
736
737 if (p->vertex==NULL) { // 一番最初の Vertex
738 p->vertex = new_vertex;
739 if (solid!=NULL) {
740 p->vertex->index = solid->vertexid;
741 solid->vertexid++;
742 }
743 return p;
744 }
745
746 while (p!=NULL) {
747 cmp = CompareVertex(p->vertex, new_vertex);
748 o = p;
749 p = p->child[cmp%8];
750 }
751
752 if (cmp>=0 && o!=NULL) {
753 p = new OctreeNode(new_vertex, solid);
754 o->child[cmp%8] = p;
755 }
756 return p;
757}
class DllExport OctreeNode
Definition Brep.h:39
DllExport int CompareVertex(BREP_VERTEX *v1, BREP_VERTEX *v2)
Definition Brep.cpp:1007

References OctreeNode::child, jbxl::CompareVertex(), BREP_VERTEX::index, jbxl::OctreeNode, OctreeNode::solid, OctreeNode::vertex, and BREP_SOLID::vertexid.

Referenced by jbxl::AddVertex2Octree().

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

◆ AddWithUnique()

OctreeNode * AddWithUnique ( BREP_VERTEX * new_vertex)

Octreeに Vertex new_vertexそのものを登録する.登録した OctreeNodeを返す. 既に同じ位置のVertexが登録済み(UVマップも比べる)の場合は,その OctreeNodeを返す.

OctreeNode* OctreeNode::AddWithUnique(BREP_VERTEX* new_vertex)

Octreeに Vertex new_vertexそのものを登録する.登録した OctreeNodeを返す. 既に同じ位置のVertexが登録済みの場合は,その OctreeNodeを返す.

Definition at line 691 of file Brep.cpp.

692{
693 OctreeNode* o = NULL;
694 OctreeNode* p = this;
695 int cmp = -1;
696
697 if (new_vertex==NULL) return NULL;
698
699 if (p->vertex==NULL) { // 一番最初の Vertex
700 p->vertex = new_vertex;
701 if (solid!=NULL) {
702 p->vertex->index = solid->vertexid;
703 solid->vertexid++;
704 }
705 return p;
706 }
707
708 while (p!=NULL) {
709 cmp = CompareVertex(p->vertex, new_vertex);
710 if (cmp==8) return p; // 既に同じ位置のVertexが登録済み
711 o = p;
712 p = p->child[cmp];
713 }
714
715 if (cmp>=0 && o!=NULL) {
716 p = new OctreeNode(new_vertex, solid);
717 o->child[cmp] = p;
718 }
719 return p;
720}

References OctreeNode::child, jbxl::CompareVertex(), BREP_VERTEX::index, jbxl::OctreeNode, OctreeNode::solid, OctreeNode::vertex, and BREP_SOLID::vertexid.

Referenced by jbxl::AddVertex2Octree().

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

◆ ComputeVerticesNormal()

void ComputeVerticesNormal ( void )

Definition at line 779 of file Brep.cpp.

780{
781 for (int i=0; i<8; i++) {
782 if (child[i]!=NULL) {
784 }
785 }
786 if (vertex!=NULL && vertex->calc_normal) vertex->ComputeNormal();
787}
bool calc_normal
normal を計算するか? しない場合は入力値を使用する.
Definition Brep.h:267
void ComputeNormal()
Definition Brep.cpp:623
void ComputeVerticesNormal(void)
Definition Brep.cpp:779

References BREP_VERTEX::calc_normal, OctreeNode::child, BREP_VERTEX::ComputeNormal(), OctreeNode::ComputeVerticesNormal(), and OctreeNode::vertex.

Referenced by BREP_SOLID::CloseData(), and OctreeNode::ComputeVerticesNormal().

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

◆ FindSubtree()

OctreeNode * FindSubtree ( BREP_VERTEX * element)

OctreeNode* OctreeNode::FindSubtree(BREP_VERTEX* element)

Vertex element と同じ位置にある Vertexを含むノードを返す.

Definition at line 765 of file Brep.cpp.

766{
767 OctreeNode* p = this;
768 while(p!=NULL){
769 int cmp = CompareVertex(p->vertex, element);
770 if (cmp==8) return p;
771 if (cmp<0) return NULL;
772 p = p->child[cmp];
773 }
774 return NULL;
775}

References OctreeNode::child, jbxl::CompareVertex(), and OctreeNode::vertex.

Here is the call graph for this function:

Friends And Related Symbol Documentation

◆ AddVertex2Octree

BREP_VERTEX * AddVertex2Octree ( BREP_VERTEX * vertex,
OctreeNode * octree,
bool dupli )
friend

◆ GetOctreeVertices

BREP_VERTEX ** GetOctreeVertices ( OctreeNode * octree,
long int * vertexno )
friend

◆ OctreeGetter

long int OctreeGetter ( OctreeNode * p,
BREP_VERTEX ** vtx,
long int counter )
friend

Member Data Documentation

◆ child

◆ solid

◆ vertex


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