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

#include <ContourBaseData.h>

Collaboration diagram for SkinJointData:

Public Member Functions

 SkinJointData (int num=0)
 
virtual ~SkinJointData (void)
 
void init (int num=0)
 
void free (void)
 

Public Attributes

int num_joints
 Jointの数.
 
double pelvis_offset
 
AffineTrans< double > * inverse_bind
 
AffineTrans< double > * alt_inverse_bind
 
AffineTrans< double > bind_shape
 
ArrayParam< char * > joint_names
 Joint名の配列.
 

Detailed Description

Definition at line 185 of file ContourBaseData.h.

Constructor & Destructor Documentation

◆ SkinJointData()

SkinJointData ( int num = 0)
inline

Definition at line 197 of file ContourBaseData.h.

197{ init(num);}

References SkinJointData::init().

Here is the call graph for this function:

◆ ~SkinJointData()

virtual ~SkinJointData ( void )
inlinevirtual

Definition at line 198 of file ContourBaseData.h.

198{ }

Member Function Documentation

◆ free()

void free ( void )

Definition at line 359 of file ContourBaseData.cpp.

360{
361 for (int i=0; i<num_joints; i++) {
362 inverse_bind[i].free();
364 }
368 //
371
372 init();
373}
void free(void)
Definition AffineTrans.h:49
void free_ptr(void)
Definition tools++.h:82
void free(void)
Definition tools++.h:66
int num_joints
Jointの数.
AffineTrans< double > bind_shape
AffineTrans< double > * alt_inverse_bind
AffineTrans< double > * inverse_bind
ArrayParam< char * > joint_names
Joint名の配列.
void freeNull(T &p)
Definition common++.h:37

References SkinJointData::alt_inverse_bind, SkinJointData::bind_shape, ArrayParam< T >::free(), AffineTrans< T >::free(), ArrayParam< T >::free_ptr(), jbxl::freeNull(), SkinJointData::init(), SkinJointData::inverse_bind, SkinJointData::joint_names, and SkinJointData::num_joints.

Here is the call graph for this function:

◆ init()

void init ( int num = 0)

Definition at line 332 of file ContourBaseData.cpp.

333{
334 num_joints = 0;
335 pelvis_offset = 0.0;
336
337 inverse_bind = NULL;
338 alt_inverse_bind = NULL;
341
342 if (n>0) {
343 num_joints = n;
344 int len_data = sizeof(AffineTrans<double>)*num_joints;
345 inverse_bind = (AffineTrans<double>*)malloc(len_data);
346 alt_inverse_bind = (AffineTrans<double>*)malloc(len_data);
347 memset(inverse_bind, 0, len_data);
348 memset(alt_inverse_bind, 0, len_data);
349 //
350 for (int i=0; i<num_joints; i++) {
351 inverse_bind[i].init();
353 }
355 }
356}
void init(void)
Definition AffineTrans.h:44
void init(int n=0)
Definition tools++.h:51

References SkinJointData::alt_inverse_bind, SkinJointData::bind_shape, ArrayParam< T >::init(), AffineTrans< T >::init(), SkinJointData::inverse_bind, SkinJointData::joint_names, SkinJointData::num_joints, and SkinJointData::pelvis_offset.

Referenced by SkinJointData::free(), and SkinJointData::SkinJointData().

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

Member Data Documentation

◆ alt_inverse_bind

AffineTrans<double>* alt_inverse_bind

◆ bind_shape

◆ inverse_bind

◆ joint_names

◆ num_joints

int num_joints

Definition at line 188 of file ContourBaseData.h.

Referenced by GLTFData::addShell(), SkinJointData::free(), and SkinJointData::init().

◆ pelvis_offset

double pelvis_offset

Definition at line 189 of file ContourBaseData.h.

Referenced by SkinJointData::init().


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