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

#include <GLTFDataTool.h>

Collaboration diagram for GLTFShellNode:

Public Member Functions

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

Public Attributes

unsigned int shell_indexes
 
unsigned int shell_vertexes
 
bool collider
 
unsigned int num_facets
 
unsigned int * facet_index
 
unsigned int * facet_vertex
 
unsigned int * vi
 
Vector< float > * vv
 
Vector< float > * vn
 
UVMap< float > * vu
 
Vector4< short unsigned > * vj
 
Vector4< float > * vw
 
float * vm
 
GLTFShellNodenext
 

Detailed Description

SHELLノード

Definition at line 131 of file GLTFDataTool.h.

Constructor & Destructor Documentation

◆ GLTFShellNode()

GLTFShellNode ( )
inline

Definition at line 134 of file GLTFDataTool.h.

134{ this->init();}

References GLTFShellNode::init().

Here is the call graph for this function:

◆ ~GLTFShellNode()

virtual ~GLTFShellNode ( void )
inlinevirtual

Definition at line 135 of file GLTFDataTool.h.

135{ this->free();}

References GLTFShellNode::free().

Here is the call graph for this function:

Member Function Documentation

◆ delete_next()

void delete_next ( void )

Definition at line 64 of file GLTFDataTool.cpp.

65{
66 if (next==NULL) return;
67
68 GLTFShellNode* _next = this->next;
69 while (_next!=NULL) {
70 GLTFShellNode* _curr_node = _next;
71 _next = _next->next;
72 _curr_node->next = NULL;
73 delete(_curr_node);
74 }
75 this->next = NULL;
76}
GLTFShellNode * next

References GLTFShellNode::next.

Referenced by GLTFShellNode::free(), and GLTFData::free().

Here is the caller graph for this function:

◆ free()

void free ( void )

Definition at line 39 of file GLTFDataTool.cpp.

40{
41 if (this->facet_index !=NULL) ::free(this->facet_index);
42 if (this->facet_vertex!=NULL) ::free(this->facet_vertex);
43 this->facet_index = NULL;
44 this->facet_vertex = NULL;
45
46 if (this->vi!=NULL) ::free(this->vi);
47 this->vi = NULL;
48 if (this->vv!=NULL) ::free(this->vv);
49 if (this->vn!=NULL) ::free(this->vn);
50 if (this->vu!=NULL) ::free(this->vu);
51 this->vv = NULL;
52 this->vn = NULL;
53 this->vu = NULL;
54
55 if (this->vj!=NULL) ::free(this->vj);
56 if (this->vw!=NULL) ::free(this->vw);
57 this->vj = NULL;
58 this->vw = NULL;
59
60 this->delete_next();
61}
Vector< float > * vn
unsigned int * facet_index
Vector4< short unsigned > * vj
unsigned int * vi
Vector< float > * vv
unsigned int * facet_vertex
UVMap< float > * vu
Vector4< float > * vw

References GLTFShellNode::delete_next(), GLTFShellNode::facet_index, GLTFShellNode::facet_vertex, GLTFShellNode::free(), GLTFShellNode::vi, GLTFShellNode::vj, GLTFShellNode::vn, GLTFShellNode::vu, GLTFShellNode::vv, and GLTFShellNode::vw.

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

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

◆ init()

void init ( void )

Definition at line 17 of file GLTFDataTool.cpp.

18{
19 this->shell_indexes = 0;
20 this->shell_vertexes = 0;
21 this->collider = true;
22
23 this->num_facets = 0;
24 this->facet_index = NULL;
25 this->facet_vertex = NULL;
26
27 this->vi = NULL;
28 this->vv = NULL;
29 this->vn = NULL;
30 this->vu = NULL;
31 this->vj = NULL;
32 this->vw = NULL;
33
34 this->next = NULL;
35 return;
36}
unsigned int shell_vertexes
unsigned int shell_indexes
unsigned int num_facets

References GLTFShellNode::collider, GLTFShellNode::facet_index, GLTFShellNode::facet_vertex, GLTFShellNode::next, GLTFShellNode::num_facets, GLTFShellNode::shell_indexes, GLTFShellNode::shell_vertexes, GLTFShellNode::vi, GLTFShellNode::vj, GLTFShellNode::vn, GLTFShellNode::vu, GLTFShellNode::vv, and GLTFShellNode::vw.

Referenced by GLTFShellNode::GLTFShellNode().

Here is the caller graph for this function:

Member Data Documentation

◆ collider

bool collider

Definition at line 141 of file GLTFDataTool.h.

Referenced by GLTFShellNode::init().

◆ facet_index

◆ facet_vertex

◆ next

◆ num_facets

◆ shell_indexes

◆ shell_vertexes

◆ vi

◆ vj

◆ vm

◆ vn

◆ vu

◆ vv

◆ vw


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