JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CNiJoints Class Reference

#include <NiJointsTool.h>

Public Member Functions

 CNiJoints (void)
 
 CNiJoints (NiSDK_Lib lib)
 
virtual ~CNiJoints (void)
 
void clear (void)
 
void init (void)
 
void clearNiJointsData (void)
 
void connectJointsData (Vector< double > *vct, Quaternion< double > *qut, Vector< int > *crd, double *agl, CRingBuffer *vrg, CRingBuffer *qrg)
 
void copyJoints2NiJoints (BOOL mirror)
 

Public Attributes

NiSDK_Lib sdk_lib
 
Vector< double > * posVect
 
Quaternion< double > * rotQuat
 
Vector< int > * crdVect
 
double * jntAngl
 
CRingBuffer * posRing
 
CRingBuffer * rotRing
 
Vector< double > niPosVect [NI_TOTAL_JOINT_NUM]
 
Quaternion< double > niRotQuat [NI_TOTAL_JOINT_NUM]
 
double niJntAngl [NI_TOTAL_JOINT_NUM]
 

Detailed Description

Definition at line 234 of file NiJointsTool.h.

Constructor & Destructor Documentation

◆ CNiJoints() [1/2]

CNiJoints ( void )
inline

Definition at line 237 of file NiJointsTool.h.

237{ init();}

References CNiJoints::init().

Here is the call graph for this function:

◆ CNiJoints() [2/2]

CNiJoints ( NiSDK_Lib lib)
inline

Definition at line 238 of file NiJointsTool.h.

238{ init(); sdk_lib = lib;}

References CNiJoints::init(), and CNiJoints::sdk_lib.

Here is the call graph for this function:

◆ ~CNiJoints()

virtual ~CNiJoints ( void )
inlinevirtual

Definition at line 239 of file NiJointsTool.h.

239{}

Member Function Documentation

◆ clear()

void clear ( void )
inline

Definition at line 241 of file NiJointsTool.h.

241{ init();}

References CNiJoints::init().

Here is the call graph for this function:

◆ clearNiJointsData()

void clearNiJointsData ( void )

Definition at line 640 of file NiJointsTool.cpp.

641{
642 //
643 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
644 //
645 niPosVect[j].init(-1.0);
646 niRotQuat[j].init(-1.0);
647 niJntAngl[j] = 0.0;
648 }
649
650 return;
651}
#define NI_TOTAL_JOINT_NUM
Quaternion< double > niRotQuat[NI_TOTAL_JOINT_NUM]
Vector< double > niPosVect[NI_TOTAL_JOINT_NUM]
double niJntAngl[NI_TOTAL_JOINT_NUM]

References NI_TOTAL_JOINT_NUM, CNiJoints::niJntAngl, CNiJoints::niPosVect, and CNiJoints::niRotQuat.

Referenced by CNiJoints::init().

Here is the caller graph for this function:

◆ connectJointsData()

void connectJointsData ( Vector< double > * vct,
Quaternion< double > * qut,
Vector< int > * crd,
double * agl,
CRingBuffer * vrg,
CRingBuffer * qrg )

Definition at line 655 of file NiJointsTool.cpp.

657{
658 posVect = vct;
659 rotQuat = qut;
660 jntAngl = agl;
661 crdVect = crd;
662 posRing = vrg;
663 rotRing = qrg;
664}
Vector< int > * crdVect
Vector< double > * posVect
CRingBuffer * rotRing
CRingBuffer * posRing
Quaternion< double > * rotQuat

References CNiJoints::crdVect, CNiJoints::jntAngl, CNiJoints::posRing, CNiJoints::posVect, CNiJoints::rotQuat, and CNiJoints::rotRing.

◆ copyJoints2NiJoints()

void copyJoints2NiJoints ( BOOL mirror)

Definition at line 668 of file NiJointsTool.cpp.

669{
670 if (posVect!=NULL) {
671 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
672 int n = Ni2SDKPosJointNum(j, sdk_lib);
673 if (n>=0) {
674 niPosVect[j] = posVect[n];
675 }
676 }
677 }
678
679 if (rotQuat!=NULL) {
680 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
681 int n = Ni2SDKRotJointNum(j, sdk_lib);
682 if (n>=0) {
683 niRotQuat[j] = rotQuat[n];
684 }
685 }
686 }
687
688 if (jntAngl!=NULL) {
689 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
690 int n = Ni2SDKRotJointNum(j, sdk_lib);
691 if (n>=0) {
692 //if (mirror) n = NiSDKMirrorJointNum(n, sdk_lib);
693 niJntAngl[j] = jntAngl[n];
694 }
695 }
696 }
697
698 return;
699}
int Ni2SDKPosJointNum(int joint, NiSDK_Lib lib)
int Ni2SDKRotJointNum(int joint, NiSDK_Lib lib)

References CNiJoints::jntAngl, jbxwl::Ni2SDKPosJointNum(), jbxwl::Ni2SDKRotJointNum(), NI_TOTAL_JOINT_NUM, CNiJoints::niJntAngl, CNiJoints::niPosVect, CNiJoints::niRotQuat, CNiJoints::posVect, CNiJoints::rotQuat, and CNiJoints::sdk_lib.

Here is the call graph for this function:

◆ init()

void init ( void )

Definition at line 624 of file NiJointsTool.cpp.

625{
627
628 posVect = NULL;
629 rotQuat = NULL;
630 jntAngl = NULL;
631
632 posRing = NULL;
633 rotRing = NULL;
634
636}
void clearNiJointsData(void)
@ NiSDK_None
Definition NiToolWin.h:37

References CNiJoints::clearNiJointsData(), CNiJoints::jntAngl, jbxwl::NiSDK_None, CNiJoints::posRing, CNiJoints::posVect, CNiJoints::rotQuat, CNiJoints::rotRing, and CNiJoints::sdk_lib.

Referenced by CNiJoints::clear(), CNiJoints::CNiJoints(), and CNiJoints::CNiJoints().

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

Member Data Documentation

◆ crdVect

Vector<int>* crdVect

Definition at line 257 of file NiJointsTool.h.

Referenced by CNiJoints::connectJointsData().

◆ jntAngl

double* jntAngl

◆ niJntAngl

double niJntAngl[NI_TOTAL_JOINT_NUM]

Definition at line 266 of file NiJointsTool.h.

Referenced by CNiJoints::clearNiJointsData(), and CNiJoints::copyJoints2NiJoints().

◆ niPosVect

Vector<double> niPosVect[NI_TOTAL_JOINT_NUM]

Definition at line 264 of file NiJointsTool.h.

Referenced by CNiJoints::clearNiJointsData(), and CNiJoints::copyJoints2NiJoints().

◆ niRotQuat

Quaternion<double> niRotQuat[NI_TOTAL_JOINT_NUM]

Definition at line 265 of file NiJointsTool.h.

Referenced by CNiJoints::clearNiJointsData(), and CNiJoints::copyJoints2NiJoints().

◆ posRing

CRingBuffer* posRing

Definition at line 261 of file NiJointsTool.h.

Referenced by CNiJoints::connectJointsData(), and CNiJoints::init().

◆ posVect

Vector<double>* posVect

◆ rotQuat

Quaternion<double>* rotQuat

◆ rotRing

CRingBuffer* rotRing

Definition at line 262 of file NiJointsTool.h.

Referenced by CNiJoints::connectJointsData(), and CNiJoints::init().

◆ sdk_lib


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