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

#include <ContourBaseData.h>

Collaboration diagram for ContourBaseData:

Public Member Functions

 ContourBaseData (int idx=0, int num=0)
 
virtual ~ContourBaseData (void)
 
void init (int idx=0, int num=0)
 
void free (void)
 
bool getm (void)
 
void dup (ContourBaseData a)
 
void execScale (Vector< double > scale)
 
void execShift (Vector< double > shift)
 
void execRotate (Quaternion< double > quat)
 

Public Attributes

int num_index
 インデックスの数.(index の要素数)
 
int num_data
 データ数.(vertex, normal, texcrd, weight の要素数)
 
int vcount
 ポリゴンの頂点数.通常は3
 
int * index
 インデックスデータ
 
Vector< double > * vertex
 頂点データ vertex[index[0]], vertex[index[1]], vertex[index[2]], ... の順に並ぶ
 
Vector< double > * normal
 法線ベクトル normal[index[0]], normal[index[1]], normal[index[2]], ... の順に並ぶ
 
UVMap< double > * texcrd
 テクスチャマップ texcrd[index[0]], texcrd[index[1]], texcrd[index[2]], ... の順に並ぶ
 
ArrayParam< int > * weight
 Skin の Weight weight[index[0]], weight[index[1]], weight[index[2]], ... の順に並ぶ
 

Detailed Description

Definition at line 149 of file ContourBaseData.h.

Constructor & Destructor Documentation

◆ ContourBaseData()

ContourBaseData ( int idx = 0,
int num = 0 )
inline

Definition at line 163 of file ContourBaseData.h.

163{ init(idx, num);}
void init(int idx=0, int num=0)

References ContourBaseData::init().

Here is the call graph for this function:

◆ ~ContourBaseData()

virtual ~ContourBaseData ( void )
inlinevirtual

Definition at line 164 of file ContourBaseData.h.

164{ free();}

References ContourBaseData::free().

Here is the call graph for this function:

Member Function Documentation

◆ dup()

void dup ( ContourBaseData a)

Definition at line 140 of file ContourBaseData.cpp.

141{
143 num_data = a.num_data;
144 vcount = a.vcount;
145
146 if (getm()) {
147 for (int i=0; i<num_index; i++) index[i] = a.index[i];
148 for (int i=0; i<num_data; i++) {
149 vertex[i] = a.vertex[i];
150 normal[i] = a.normal[i];
151 texcrd[i] = a.texcrd[i];
152 weight[i].dup(a.weight[i]);
153 }
154 }
155 return;
156}
void dup(ArrayParam< T > a, bool del=true)
Definition tools++.h:138
int num_data
データ数.(vertex, normal, texcrd, weight の要素数)
UVMap< double > * texcrd
テクスチャマップ texcrd[index[0]], texcrd[index[1]], texcrd[index[2]], ... の順に並ぶ
int num_index
インデックスの数.(index の要素数)
Vector< double > * vertex
頂点データ vertex[index[0]], vertex[index[1]], vertex[index[2]], ... の順に並ぶ
int * index
インデックスデータ
int vcount
ポリゴンの頂点数.通常は3
ArrayParam< int > * weight
Skin の Weight weight[index[0]], weight[index[1]], weight[index[2]], ... の順に並ぶ
Vector< double > * normal
法線ベクトル normal[index[0]], normal[index[1]], normal[index[2]], ... の順に並ぶ

References ArrayParam< T >::dup(), ContourBaseData::getm(), ContourBaseData::index, ContourBaseData::normal, ContourBaseData::num_data, ContourBaseData::num_index, ContourBaseData::texcrd, ContourBaseData::vcount, ContourBaseData::vertex, and ContourBaseData::weight.

Here is the call graph for this function:

◆ execRotate()

void execRotate ( Quaternion< double > quat)

Definition at line 179 of file ContourBaseData.cpp.

180{
181 for (int i=0; i<num_data; i++) {
182 vertex[i] = VectorRotation(vertex[i], quat);
183 normal[i] = VectorRotation(normal[i], quat);
184 }
185}
Vector< T > VectorRotation(Vector< T > v, Quaternion< T > q)
Definition Rotation.h:1187

References ContourBaseData::normal, ContourBaseData::num_data, jbxl::VectorRotation(), and ContourBaseData::vertex.

Here is the call graph for this function:

◆ execScale()

void execScale ( Vector< double > scale)

Definition at line 159 of file ContourBaseData.cpp.

160{
161 for (int i=0; i<num_data; i++) {
162 vertex[i].x *= scale.x;
163 vertex[i].y *= scale.y;
164 vertex[i].z *= scale.z;
165 }
166}

References ContourBaseData::num_data, ContourBaseData::vertex, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ execShift()

void execShift ( Vector< double > shift)

Definition at line 169 of file ContourBaseData.cpp.

170{
171 for (int i=0; i<num_data; i++) {
172 vertex[i].x += shift.x;
173 vertex[i].y += shift.y;
174 vertex[i].z += shift.z;
175 }
176}

References ContourBaseData::num_data, ContourBaseData::vertex, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ free()

void free ( void )

Definition at line 105 of file ContourBaseData.cpp.

106{
111 freeArrayParams<int>(weight, num_data);
112
113 init(0, 0);
114}
void freeNull(T &p)
Definition common++.h:37

References jbxl::freeNull(), ContourBaseData::index, ContourBaseData::init(), ContourBaseData::normal, ContourBaseData::num_data, ContourBaseData::texcrd, ContourBaseData::vertex, and ContourBaseData::weight.

Referenced by jbxl::freeContourBaseData(), ContourBaseData::getm(), and ContourBaseData::~ContourBaseData().

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

◆ getm()

bool getm ( void )

Definition at line 117 of file ContourBaseData.cpp.

118{
119 index = (int*)malloc(sizeof(int)*num_index);
120 vertex = (Vector<double>*) malloc(sizeof(Vector<double>)*num_data);
121 normal = (Vector<double>*) malloc(sizeof(Vector<double>)*num_data);
122 texcrd = (UVMap <double>*) malloc(sizeof(UVMap<double>) *num_data);
124
125 if (index==NULL || vertex==NULL || normal==NULL || texcrd==NULL) {
126 this->free();
127 return false;
128 }
129
130 memset(index, 0, sizeof(int)*num_data);
131 memset(vertex, 0, sizeof(Vector<double>)*num_data);
132 memset(normal, 0, sizeof(Vector<double>)*num_data);
133 memset(texcrd, 0, sizeof(UVMap<double>) *num_data);
134 memset(weight, 0, sizeof(ArrayParam<int>)*num_data);
135
136 return true;
137}

References ContourBaseData::free(), ContourBaseData::index, ContourBaseData::normal, ContourBaseData::num_data, ContourBaseData::num_index, ContourBaseData::texcrd, ContourBaseData::vertex, and ContourBaseData::weight.

Referenced by ContourBaseData::dup().

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

◆ init()

void init ( int idx = 0,
int num = 0 )

Definition at line 91 of file ContourBaseData.cpp.

92{
93 num_index = idx;
94 num_data = num;
95 vcount = 3;
96
97 index = NULL;
98 vertex = NULL;
99 normal = NULL;
100 texcrd = NULL;
101 weight = NULL;
102}

References ContourBaseData::index, ContourBaseData::normal, ContourBaseData::num_data, ContourBaseData::num_index, ContourBaseData::texcrd, ContourBaseData::vcount, ContourBaseData::vertex, and ContourBaseData::weight.

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

Here is the caller graph for this function:

Member Data Documentation

◆ index

◆ normal

◆ num_data

◆ num_index

◆ texcrd

◆ vcount

◆ vertex

◆ weight


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