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

#include <OBJDataTool.h>

Collaboration diagram for OBJFacetGeoNode:

Public Member Functions

 OBJFacetGeoNode ()
 
virtual ~OBJFacetGeoNode (void)
 
void init (void)
 
void free (void)
 
void delete_next (void)
 

Public Attributes

Buffer material
 
int num_index
 
int num_vertex
 
bool collider
 
int * data_index
 
Vector< double > * vv
 
Vector< double > * vn
 
UVMap< double > * vt
 
AffineTrans< double > * uvmap_trans
 
OBJFacetGeoNodenext
 

Detailed Description

Definition at line 102 of file OBJDataTool.h.

Constructor & Destructor Documentation

◆ OBJFacetGeoNode()

OBJFacetGeoNode ( )
inline

Definition at line 105 of file OBJDataTool.h.

105{ this->init();}

References OBJFacetGeoNode::init().

Here is the call graph for this function:

◆ ~OBJFacetGeoNode()

virtual ~OBJFacetGeoNode ( void )
inlinevirtual

Definition at line 106 of file OBJDataTool.h.

106{ this->free();}

References OBJFacetGeoNode::free().

Here is the call graph for this function:

Member Function Documentation

◆ delete_next()

void delete_next ( void )

Definition at line 450 of file OBJDataTool.cpp.

451{
452 if (next==NULL) return;
453
454 OBJFacetGeoNode* _next = this->next;
455 while (_next!=NULL) {
456 OBJFacetGeoNode* _curr_node = _next;
457 _next = _next->next;
458 _curr_node->next = NULL;
459 delete(_curr_node);
460 }
461 this->next = NULL;
462}
OBJFacetGeoNode * next

References OBJFacetGeoNode::next.

Referenced by OBJFacetGeoNode::free().

Here is the caller graph for this function:

◆ free()

void free ( void )

Definition at line 428 of file OBJDataTool.cpp.

429{
430 free_Buffer(&(this->material));
431 this->num_index = 0;
432 this->num_vertex = 0;
433
434 if (this->data_index!=NULL) ::free(this->data_index);
435 this->data_index = NULL;
436
437 if (this->vv!=NULL) ::free(this->vv);
438 if (this->vn!=NULL) ::free(this->vn);
439 if (this->vt!=NULL) ::free(this->vt);
440 this->vv = this->vn = NULL;
441 this->vt = NULL;
442
444 this->uvmap_trans = NULL;
445
446 this->delete_next();
447}
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
UVMap< double > * vt
Vector< double > * vv
Vector< double > * vn
AffineTrans< double > * uvmap_trans
void freeAffineTrans(AffineTrans< T > *&affine)

References OBJFacetGeoNode::data_index, OBJFacetGeoNode::delete_next(), OBJFacetGeoNode::free(), free_Buffer(), jbxl::freeAffineTrans(), OBJFacetGeoNode::material, OBJFacetGeoNode::num_index, OBJFacetGeoNode::num_vertex, OBJFacetGeoNode::uvmap_trans, OBJFacetGeoNode::vn, OBJFacetGeoNode::vt, and OBJFacetGeoNode::vv.

Referenced by OBJFacetGeoNode::free(), and OBJFacetGeoNode::~OBJFacetGeoNode().

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

◆ init()

void init ( void )

Definition at line 413 of file OBJDataTool.cpp.

414{
415 this->material = init_Buffer();
416 this->collider = true;
417 this->num_index = 0;
418 this->num_vertex = 0;
419
420 this->data_index = NULL;
421 this->vv = this->vn = NULL;
422 this->vt = NULL;
423 this->uvmap_trans = NULL;
424 this->next = NULL;
425}
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47

References OBJFacetGeoNode::collider, OBJFacetGeoNode::data_index, init_Buffer(), OBJFacetGeoNode::material, OBJFacetGeoNode::next, OBJFacetGeoNode::num_index, OBJFacetGeoNode::num_vertex, OBJFacetGeoNode::uvmap_trans, OBJFacetGeoNode::vn, OBJFacetGeoNode::vt, and OBJFacetGeoNode::vv.

Referenced by OBJFacetGeoNode::OBJFacetGeoNode().

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

Member Data Documentation

◆ collider

bool collider

Definition at line 112 of file OBJDataTool.h.

Referenced by OBJFacetGeoNode::init().

◆ data_index

int* data_index

◆ material

Buffer material

◆ next

◆ num_index

int num_index

◆ num_vertex

◆ uvmap_trans

AffineTrans<double>* uvmap_trans

Definition at line 119 of file OBJDataTool.h.

Referenced by OBJFacetGeoNode::free(), and OBJFacetGeoNode::init().

◆ vn

◆ vt

UVMap<double>* vt

◆ vv


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