JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Brep.cpp
Go to the documentation of this file.
1
10#include "Brep.h"
11
12
13using namespace jbxl;
14
15
17// BREP_SOLID
18//
19
26{
27 freed = false;
28
29 facetno = 0;
30 vertexno = 0;
31 vertexid = 0;
32 vcount = 0; // 不定または未定
33 //
34 counter = NULL;
35 octree = new OctreeNode(NULL, this);
36 rbound.set(HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF);
37}
38
39
49
50
57{
58 if (freed) return;
59
60 BREP_SHELL* pbsh;
61 BREP_SHELL_LIST::iterator ishell = shells.begin();
62
63 CVCounter* cnt = NULL;
64 if (counter!=NULL) {
66 if (cnt!=NULL) cnt->SetMax(100);
67 }
68
69 int shn = (int)shells.size();
70 while (ishell!=shells.end()) {
71 if (cnt!=NULL) cnt->MakeChildCounter(100/shn);
72 pbsh = *ishell;
73 ishell = shells.erase(ishell); // Shellの数は多くないはずなので,counter処理のために
74 delete pbsh; // eraseの空処理を Shellに行わせる
75 if (cnt!=NULL) cnt->DeleteChildCounter();
76 }
77
78 contours.clear();
79 wings.clear();
80 shortage_wings.clear();
81 surplus_contours.clear();
82
83 delete octree;
84 //
85 freed = true;
86}
87
88
93{
94 BREP_SHELL_LIST::iterator ishell;
95 for (ishell=shells.begin(); ishell!=shells.end(); ishell++) (*ishell)->CloseData();
96 for (ishell=shells.begin(); ishell!=shells.end(); ishell++) rbound.fusion((*ishell)->rbound);
97
99}
100
101
108{
109 if (shell!=NULL) {
110 shell->solid = this;
111 shells.push_back(shell);
112 }
113}
114
115
122{
123 if (shell!=NULL) {
124 BREP_SHELL_LIST::iterator ishell;
125 ishell = std::find(shells.begin(), shells.end(), shell);
126 if (ishell!=shells.end()) shells.erase(ishell);
127 shell->solid = NULL;
128 }
129}
130
131
132
134// BREP_SHELL
135//
136
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}
144
145
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}
174
175
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}
182
183
184//
186{
187 if (facet!=NULL) {
188 facet->shell = this;
189 facets.push_back(facet);
190 }
191}
192
193
194//
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}
205
206
207
209// BREP_FACET
210//
211
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}
223
224
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}
238
239
241{
242 BREP_CONTOUR_LIST::iterator icon;
243 for (icon=outer_contours.begin(); icon!=outer_contours.end(); icon++) (*icon)->CloseData();
244
246}
247
248
249//
251{
252 if (contour!=NULL) {
253 contour->facet = this;
254 outer_contours.push_back(contour);
255 }
256}
257
258
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}
269
270
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}
303
304
305
307// BREP_CONTOUR
308
310{
311 facet = pr_facet;
312 if (facet!=NULL) facet->ConnectContour(this);
313
314 wing = NULL;
315 dup_edge = 0;
316 collision = false;
317 hasCollisionVector = false;
318
319 rbound.set(HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF, HUGE_VALF, -HUGE_VALF);
320}
321
322
323//
325{
326 if (facet!=NULL) facet->DisconnectContour(this);
327 DestroyWings();
328}
329
330
336
337
344{
345 if (new_wing==NULL) return;
346
347 new_wing->contour = this;
348
349 if (wing==NULL) { // 最初の Wing
350 new_wing->next = new_wing->prev = new_wing;
351 wing = new_wing;
352 }
353 else { // 2番目以降の Wing
354 new_wing->next = wing;
355 new_wing->prev = wing->prev;
356 new_wing->prev->next = new_wing->next->prev = new_wing;
357 }
358}
359
360
361//
363{
364 if (wing==dis_wing) {
365 if (dis_wing->next==dis_wing) {
366 wing = NULL;
367 }
368 else {
369 wing = dis_wing->next;
370 }
371 }
372
373 if (dis_wing->next) dis_wing->next->prev = dis_wing->prev;
374 if (dis_wing->prev) dis_wing->prev->next = dis_wing->next;
375
376 dis_wing->contour = NULL;
377 dis_wing->next = dis_wing->prev = NULL;
378}
379
380
388{
389 // 新しく作成するWingのスタートVertexは,一つ前のWingのエンドVertexと同一でなければならない.
390 // つまり Wingは順序よく作成しなければならない.
391 if (wing!=NULL && GetWingOtherSide(wing->prev)->vertex!=vertex1) {
392 DEBUG_MODE PRINT_MESG("CreateWing: Irregular order of Wings!!\n");
393 return NULL;
394 }
395
396 // vertex1をスタートVertexとしたWingを作る.すでに空のWingがある場合にはそれを返す.
397 // vertex1==vertex2 の場合は NULLを返す.
398 BREP_WING* wing = CreateWingWithoutContour(vertex1, vertex2);
399 if (wing==NULL) return NULL;
400
401 // WingをContourに登録
403 if (GetWingOtherSide(wing)->contour!=NULL) { // 対応するEdgeは2つの参照されたWingを持つ完全なEdge
404 wing->edge->complete = true;
405 }
406
407 // WingをスタートVertexのリングに登録
408 (wing->vertex)->wing_list.push_back(wing);
409
410 return wing;
411}
412
413
420{
421 BREP_WING* first = wing;
422 if (first==NULL) return;
423
424 BREP_WING* prev;
425 for (BREP_WING* swing=first->prev; swing!=first; swing=prev) {
426 prev = swing->prev;
427 DestroyWing(swing);
428 }
429 DestroyWing(first);
430}
431
432
433//
434void BREP_CONTOUR::CloseFacet(BREP_FACET* facet, double& emax, double& dmin, double& dmax)
435{
436 if (wing==NULL) return;
437
438 BREP_WING* next = wing;
439 do {
440 BREP_WING* swing = next;
441 //
442 double d = -(facet->normal * swing->vertex->point);
443 if (d < dmin) dmin = d;
444 if (d > dmax) dmax = d;
445 if (swing->vertex->tolerance>emax) emax = swing->vertex->tolerance;
446 facet->rbound.fusion(swing->vertex->point);
447 //
448 next = swing->next;
449 } while (next!=wing);
450}
451
452
459{
460 normal = Vector<double>(0.0, 0.0, 0.0);
461
463 for (BREP_WING* swing=wing; swing; swing=(swing->next==wing ? NULL:swing->next)) {
464 Vector<double> cur = next;
465 next = swing->next->vertex->point;
466 normal.x += (cur.y - next.y) * (cur.z + next.z);
467 normal.y += (cur.z - next.z) * (cur.x + next.x);
468 normal.z += (cur.x - next.x) * (cur.y + next.y);
469 }
471}
472
473
492
493
495{
496 BREP_CONTOUR* contour = new BREP_CONTOUR(facet);
497 return contour;
498}
499
500
501
503// BREP_WING
504//
505
507{
508 vertex = vx;
509 prev = NULL;
510 next = NULL;
511 edge = NULL;
512 contour = NULL;
513}
514
515
516
518// BREP_EDGE
519//
520
522{
523 wing1 = new BREP_WING(vertex1);
524 wing2 = new BREP_WING(vertex2);
525 wing1->edge = wing2->edge = this;
526
527 center = (vertex1->point + vertex2->point)/2.;
528 edge_list = NULL;
529 complete = false;
531}
532
533
535{
536 // BREP_EDGE: この Edge はまだ Contourで使われている!!
537 if (wing1->contour || wing2->contour) {
538 DEBUG_MODE PRINT_MESG("~BREP_EDGE: This Edge is still used!!\n");
539 }
540
541 delete wing1;
542 delete wing2;
543
544 if (edge_list!=NULL) {
545 BREP_EDGE_LIST::iterator iedge = std::find(edge_list->begin(), edge_list->end(), this);
546 if (iedge!=edge_list->end()) {
547 edge_list->erase(iedge);
548 }
549 if (edge_list->size()==1) {
550 (*(edge_list->begin()))->edge_list = NULL;
551 delete(edge_list);
552 }
553 }
554}
555
556
558{
559 // M.Segal, SIGGRAPH '90 p105
560 double e = (wing1->vertex)->tolerance;
561 e = Max(e, (wing2->vertex)->tolerance);
562 tolerance = Max(e, tolerance);
563}
564
565
566
568// BREP_VERTEX
569//
570
572{
573 // Vector類は宣言された時に,既に初期化されている.
574
575 index = -1;
576 calc_normal = true;
578
579 weight.init();
580 forbidden_list = NULL;
581 distance2 = HUGE_VALF;
582}
583
584
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}
599
600
601//
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}
615
616
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}
634
635
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}
645
646
651
652
653
655// OctreeNode
656//
657
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}
670
671
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}
683
684
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}
721
722
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}
758
759
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}
776
777
778//
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}
788
789
790
792// Other Functions
793//
794
803{
804 if (wing!=NULL) {
805 (wing->vertex)->wing_list.push_back(wing);
806 }
807}
808
809
818{
819 BREP_WING* wing = NULL;
820
821 // vertex1 - vertex2 間にエッジが既に登録されているかどうかチェックする.
822 BREP_EDGE* edge = FindEdge(vertex1, vertex2);
823 if (edge==NULL) { // Edgeは存在しない.
824 edge = CreateEdge(vertex1, vertex2);
825 if (edge==NULL) return NULL; // vertex1==vertex2 なら NULL
826 wing = edge->wing1;
827 }
828 else{ // Edgeは既に存在する.
829 if (edge->wing1->vertex==vertex1) wing = edge->wing1;
830 else if (edge->wing2->vertex==vertex1) wing = edge->wing2;
831
832 // Wingが既に Contourで使われている場合,他の Wingを探す.
833 if (edge->edge_list!=NULL && wing!=NULL && wing->contour!=NULL) {
834 BREP_EDGE_LIST::iterator iedge=edge->edge_list->begin();
835 while (iedge!=edge->edge_list->end() && wing->contour!=NULL) {
836 if ((*iedge)->wing1->vertex==vertex1) wing = (*iedge)->wing1;
837 else if ((*iedge)->wing2->vertex==vertex1) wing = (*iedge)->wing2;
838 iedge++;
839 }
840 }
841
842 // このWingは既に Contourで使われているか?
843 if (wing!=NULL && wing->contour!=NULL){
844 // 新しくEdgeを作り直す
845 BREP_EDGE* new_edge = CreateEdge(vertex1, vertex2);
846 if (new_edge==NULL) return NULL;
847
848 if (edge->edge_list==NULL) {
849 edge->edge_list = new BREP_EDGE_LIST();
850 edge->edge_list->push_back(edge);
851 }
852 edge->edge_list->push_back(new_edge);
853 new_edge->edge_list = edge->edge_list;
854 wing = new_edge->wing1;
855 }
856 }
857
858 return wing;
859}
860
861
866{
867 wing->vertex->DisconnectWing(wing);
868 wing->contour->DisconnectWing(wing);
869
870 if (!wing->edge->wing1->contour && !wing->edge->wing2->contour) {
871 delete wing->edge;
872 }
873 else {
874 wing->edge->complete = false;
875 }
876}
877
878
890{
891 BREP_WING_LIST list;
892 BREP_WING_LIST::iterator iwing;
893
894 list = vertex2->wing_list;
895 for (iwing=list.begin(); iwing!=list.end(); iwing++){
896 BREP_WING* wing = *iwing;
897 if (GetWingOtherSide(wing)->vertex==vertex1) return wing->edge;
898 }
899
900 list = vertex1->wing_list;
901 for (iwing=list.begin(); iwing!=list.end(); iwing++) {
902 BREP_WING* wing = *iwing;
903 if (GetWingOtherSide(wing)->vertex==vertex2) return wing->edge;
904 }
905
906 return NULL;
907}
908
909
914{
915 BREP_VERTEX** vindex = NULL;
916
917 long int num = OctreeGetter(octree, NULL, 0);
918
919 if (num>0) {
920 vindex = (BREP_VERTEX**)malloc(sizeof(BREP_VERTEX*)*num);
921 }
922 if (vindex!=NULL) {
923 memset(vindex, 0, sizeof(BREP_VERTEX*)*num);
924 OctreeGetter(octree, vindex, 0);
925 }
926 if (vertexno!=NULL) *vertexno = num;
927
928 return vindex;
929}
930
931
932long int jbxl::OctreeGetter(OctreeNode* p, BREP_VERTEX** vtx, long int counter)
933{
934 if (p->vertex!=NULL) {
935 if (vtx!=NULL && p->vertex->index>=0) vtx[p->vertex->index] = p->vertex;
936 counter++;
937 }
938
939 for (int i=0; i<8; i++) {
940 if (p->child[i]!=NULL) {
941 counter = OctreeGetter(p->child[i], vtx, counter);
942 }
943 }
944
945 return counter;
946}
947
948
972{
973 OctreeNode* node;
974
975 if (dupli) node = octree->AddWithDuplicates(vert);
976 else node = octree->AddWithUnique(vert);
977 if (node==NULL) return NULL;
978
979 if (node->vertex==vert) {
980 octree->solid->vertexno++; // Vertexを新規登録したのでカウントする.
981 }
982 return node->vertex;
983}
984
985
989{
990 if (v1==v2) return NULL;
991
992 BREP_EDGE* edge = new BREP_EDGE(v1, v2);
993 edge->CloseData();
994
995 return edge;
996}
997
998
1008{
1009 double tolerance = v1->tolerance + v2->tolerance;
1010 double dist2 = (v1->point.x - v2->point.x)*(v1->point.x - v2->point.x) +
1011 (v1->point.y - v2->point.y)*(v1->point.y - v2->point.y) +
1012 (v1->point.z - v2->point.z)*(v1->point.z - v2->point.z);
1013 if (dist2<=tolerance*tolerance) return 8; // 同じ位置.同じテクスチャマップ.
1014
1015 int code = 0;
1016 if (v1->point.x > v2->point.x) code += 1;
1017 if (v1->point.y > v2->point.y) code += 2;
1018 if (v1->point.z > v2->point.z) code += 4;
1019 return code; // x1 > x2 || y1 > y2 || z1 > z2
1020}
1021
1022
1029{
1030 if (wing==wing->edge->wing1) return wing->edge->wing2;
1031 //
1032 return wing->edge->wing1;
1033}
1034
1035
1037{
1038 TVector<double> tv;
1039
1040 tv.x = v->point.x;
1041 tv.y = v->point.y;
1042 tv.z = v->point.z;
1043 tv.n = sqrt(tv.x*tv.x + tv.y*tv.y + tv.z*tv.z);
1044 tv.t = v->tolerance;
1045
1046 return tv;
1047}
BREP_CONTOUR * CreateContour(BREP_FACET *facet)
Definition Brep.cpp:494
BREP Library Header.
void init(int n=0)
Definition tools++.h:51
void free(void)
Definition tools++.h:66
virtual ~BREP_CONTOUR()
Definition Brep.cpp:324
void ComputeDirectRS()
Definition Brep.cpp:479
int dup_edge
多重エッジの数.
Definition Brep.h:181
TVector< double > directRS
Definition Brep.h:179
void DisconnectWing(BREP_WING *wing)
Definition Brep.cpp:362
BREP_FACET * facet
Definition Brep.h:170
BREP_WING * wing
Definition Brep.h:171
BREP_WING * CreateWing(BREP_VERTEX *vertex1, BREP_VERTEX *vertex2)
Definition Brep.cpp:387
Vector< double > normal
Definition Brep.h:174
TVector< double > directS
Definition Brep.h:178
void ConnectWing(BREP_WING *wing)
Definition Brep.cpp:343
RBound< double > rbound
Definition Brep.h:173
void ComputeNormal()
Definition Brep.cpp:458
TVector< double > directR
△QRS 三角Contour衝突検出用
Definition Brep.h:177
bool hasCollisionVector
Definition Brep.h:183
void CloseFacet(BREP_FACET *facet, double &emax, double &dmin, double &dmax)
Definition Brep.cpp:434
BREP_CONTOUR(BREP_FACET *pr_facet)
Definition Brep.cpp:309
void DestroyWings()
Definition Brep.cpp:419
virtual ~BREP_EDGE()
Definition Brep.cpp:534
void CloseData()
Definition Brep.cpp:557
Vector< double > center
Definition Brep.h:236
BREP_EDGE_LIST * edge_list
多重エッジのリストへのポインタ
Definition Brep.h:237
BREP_WING * wing2
Definition Brep.h:234
double tolerance
Definition Brep.h:240
BREP_WING * wing1
Definition Brep.h:233
BREP_EDGE(BREP_VERTEX *vertex1, BREP_VERTEX *vertex2)
Definition Brep.cpp:521
bool complete
完全なエッジ.2つの Wingは共に使用されている.
Definition Brep.h:239
void DisconnectContour(BREP_CONTOUR *contour)
Definition Brep.cpp:259
BREP_SHELL * shell
Definition Brep.h:138
void CloseData()
Definition Brep.cpp:240
virtual ~BREP_FACET()
Definition Brep.cpp:225
double d
定数,原点から平面への距離*(-1)
Definition Brep.h:144
bool notdelete
削除してはいけない
Definition Brep.h:148
void ConnectContour(BREP_CONTOUR *contour)
Definition Brep.cpp:250
double tolerance
Definition Brep.h:145
Vector< double > normal
Definition Brep.h:141
BREP_CONTOUR_LIST outer_contours
Definition Brep.h:139
RBound< double > rbound
Definition Brep.h:142
bool deletable
削除できる
Definition Brep.h:147
void ComputePlaneEquation()
Definition Brep.cpp:278
BREP_FACET(BREP_SHELL *pr_shell)
Definition Brep.cpp:212
void DisconnectFacet(BREP_FACET *facet)
Definition Brep.cpp:195
void CloseData()
Definition Brep.cpp:176
void ConnectFacet(BREP_FACET *facet)
Definition Brep.cpp:185
virtual ~BREP_SHELL()
Definition Brep.cpp:146
RBound< double > rbound
Definition Brep.h:118
BREP_SOLID * solid
Definition Brep.h:116
BREP_SHELL(BREP_SOLID *pr_solid)
Definition Brep.cpp:137
BREP_FACET_LIST facets
Definition Brep.h:117
OctreeNode * octree
Definition Brep.h:80
void CloseData(void)
Definition Brep.cpp:92
unsigned int vertexno
頂点の数
Definition Brep.h:75
BREP_CONTOUR_LIST contours
Contours リスト
Definition Brep.h:83
void ConnectShell(BREP_SHELL *shell)
Definition Brep.cpp:107
CVCounter * counter
仮想計量カウンタ
Definition Brep.h:90
bool freed
開放済み確認フラグ
Definition Brep.h:92
virtual ~BREP_SOLID()
Definition Brep.cpp:45
unsigned int facetno
面の数
Definition Brep.h:74
void DisconnectShell(BREP_SHELL *shell)
Definition Brep.cpp:121
RBound< double > rbound
Definition Brep.h:81
int vcount
1面あたりの頂点数
Definition Brep.h:77
BREP_WING_LIST wings
Wings リスト
Definition Brep.h:84
BREP_WING_LIST shortage_wings
不足 Wings リスト
Definition Brep.h:87
unsigned int vertexid
頂点のカウンタ.Vertex のIDを決める際に使用
Definition Brep.h:76
BREP_CONTOUR_LIST surplus_contours
過剰 Contours リスト
Definition Brep.h:86
BREP_SHELL_LIST shells
Definition Brep.h:79
void FreeData(void)
Definition Brep.cpp:56
bool calc_normal
normal を計算するか? しない場合は入力値を使用する.
Definition Brep.h:267
long int index
シーケンシャルに増加する一意的な番号.Octree に格納されるときに設定される.
Definition Brep.h:266
void CloseData()
Definition Brep.cpp:647
void ComputeTolerance()
Definition Brep.cpp:636
Vector< double > point
頂点の座標.
Definition Brep.h:260
void DisconnectWing(BREP_WING *wing)
Definition Brep.cpp:602
double distance2
Definition Brep.h:269
double tolerance
Definition Brep.h:270
Vector< double > normal
法線ベクトル.周りの Contour の法線ベクトルの平均.
Definition Brep.h:261
BREP_WING_LIST wing_list
Definition Brep.h:258
void ComputeNormal()
Definition Brep.cpp:623
ArrayParam< int > weight
頂点の重み.要正規化.
Definition Brep.h:263
BREP_VERTEX_LIST * forbidden_list
お互いに Edgeを張ることを禁止された Vertexの List
Definition Brep.h:272
virtual ~BREP_VERTEX()
Definition Brep.cpp:585
BREP_WING(BREP_VERTEX *v)
Definition Brep.cpp:506
BREP_CONTOUR * contour
Definition Brep.h:215
BREP_WING * next
Definition Brep.h:212
BREP_VERTEX * vertex
Start of Vertex.
Definition Brep.h:210
BREP_EDGE * edge
Definition Brep.h:214
BREP_WING * prev
Definition Brep.h:211
virtual void StepIt(int n=1)
カウンタのメモリを増やす
Definition ClassBox.h:171
virtual void SetMax(int m)
カウンタの最大値(最終目標)を設定
Definition ClassBox.h:161
virtual void DeleteChildCounter()
子カウンタの削除(有効領域の無効化)
Definition ClassBox.h:179
virtual CVCounter * GetUsableCounter()
現在使用可能な目盛りの有効領域を確保
Definition ClassBox.h:177
virtual CVCounter * MakeChildCounter(int n)
子カウンタの作成(有効領域を再定義)
Definition ClassBox.h:178
OctreeNode * FindSubtree(BREP_VERTEX *element)
Vertex element と同じ位置にある Vertexを含むノードを返す.
Definition Brep.cpp:765
void ComputeVerticesNormal(void)
Definition Brep.cpp:779
OctreeNode * AddWithDuplicates(BREP_VERTEX *new_vertex)
Definition Brep.cpp:729
OctreeNode * child[8]
Definition Brep.h:298
OctreeNode * AddWithUnique(BREP_VERTEX *new_vertex)
Definition Brep.cpp:691
BREP_SOLID * solid
Definition Brep.h:294
BREP_VERTEX * vertex
ルートノードの場合は NULL
Definition Brep.h:297
OctreeNode(BREP_VERTEX *new_vertex, BREP_SOLID *sld)
OctreeNodeのコンストラクタは,BREP_VERTEXに対して,新たに領域を作らずにポインタをコピーすることに注意!!
Definition Brep.cpp:658
T xmax
x軸境界の最大値.
Definition Vector.h:427
T ymin
y軸境界の最小値.
Definition Vector.h:428
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
T zmax
z軸境界の最大値.
Definition Vector.h:431
T xmin
x軸境界の最小値.
Definition Vector.h:426
void fusion(RBound< T > bound)
境界構造体 bound と融合させる
Definition Vector.h:483
T ymax
y軸境界の最大値.
Definition Vector.h:429
T zmin
z軸境界の最小値.
Definition Vector.h:430
T t
トレランス.誤差.
Definition TVector.h:29
Vector< T > normalize(void)
Definition Vector.h:87
double norm(void)
Definition Vector.h:71
double n
ノルム
Definition Vector.h:62
#define Max(x, y)
Definition common.h:247
#define Xabs(x)
Definition common.h:257
#define DllExport
Definition common.h:105
Definition Brep.h:29
DllExport BREP_WING * GetWingOtherSide(BREP_WING *wing)
Definition Brep.cpp:1028
DllExport BREP_EDGE * FindEdge(BREP_VERTEX *vertex1, BREP_VERTEX *vertex2)
Definition Brep.cpp:889
DllExport void ConnectWingToVertex(BREP_WING *wing)
Definition Brep.cpp:802
std::list< BREP_WING * > BREP_WING_LIST
Definition Brep.h:46
std::list< BREP_EDGE * > BREP_EDGE_LIST
Definition Brep.h:45
DllExport TVector< double > Vertex2TVector(BREP_VERTEX *v)
Definition Brep.cpp:1036
DllExport BREP_EDGE * CreateEdge(BREP_VERTEX *v1, BREP_VERTEX *v2)
Definition Brep.cpp:988
double Edge_Tolerance
Definition Tolerance.cpp:16
class DllExport OctreeNode
Definition Brep.h:39
class DllExport BREP_CONTOUR
Definition Brep.h:35
DllExport BREP_VERTEX ** GetOctreeVertices(OctreeNode *octree, long int *vertexno)
Definition Brep.cpp:913
DllExport void DestroyWing(BREP_WING *wing)
Definition Brep.cpp:865
double Abs_Vertex_Tolerance
Definition Tolerance.cpp:21
double Vertex_Tolerance
Definition Tolerance.cpp:15
class DllExport BREP_WING
Definition Brep.h:37
DllExport long int OctreeGetter(OctreeNode *p, BREP_VERTEX **vtx, long int counter)
Definition Brep.cpp:932
double Facet_Tolerance
Definition Tolerance.cpp:17
class DllExport BREP_EDGE
Definition Brep.h:36
DllExport BREP_WING * CreateWingWithoutContour(BREP_VERTEX *vertex1, BREP_VERTEX *vertex2)
Definition Brep.cpp:817
DllExport BREP_VERTEX * AddVertex2Octree(BREP_VERTEX *vertex, OctreeNode *octree, bool dupli=false)
Definition Brep.cpp:971
DllExport int CompareVertex(BREP_VERTEX *v1, BREP_VERTEX *v2)
Definition Brep.cpp:1007
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502