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

#include <MeshObjectData.h>

Collaboration diagram for MeshObjectData:

Public Member Functions

 MeshObjectData (const char *name=NULL)
 
virtual ~MeshObjectData (void)
 
void init (const char *name=NULL)
 
void free (void)
 
void free_value (void)
 
void clear (void)
 
void setName (const char *str)
 
char * getName (void)
 
void setAltName (const char *str)
 
char * getAltName (void)
 
void setAffineTrans (AffineTrans< double > a)
 
void delAffineTrans (void)
 
bool addData (ContourBaseData *facetdata, MaterialParam *param)
 
bool addNode (ContourBaseData *facetdata, const char *name, MaterialParam *param)
 
bool addData (Vector< double > *vct, Vector< double > *nrm, UVMap< double > *map, ArrayParam< int > *wgt, int vnum, MaterialParam *param, bool useBrep)
 
bool addData (TriPolygonData *tridata, int tnum, int fnum, MaterialParam *param, bool useBrep)
 処理するFACETを選択できる
 
bool importTriData (Vector< double > *vct, Vector< double > *nrm, UVMap< double > *map, ArrayParam< int > *wgt, int vnum)
 
bool importTriData (TriPolygonData *tridata, int tnum, int fnum=-1)
 
bool addNode (const char *name, MaterialParam *param, bool useBrep)
 
void joinData (MeshObjectData *&data)
 data は削除される.
 
void setMaterialParam (MaterialParam param, int num=-1)
 

Public Attributes

Buffer data_name
 データ名
 
Buffer alt_name
 別名
 
int ttl_index
 インデックスの総数(実質的データ数)
 
int ttl_vertex
 頂点データの総数.
 
int ttl_texcrd
 テクスチャ画像の座標総数.通常は ttl_vertexと同じ値.
 
int num_node
 テクスチャー単位の面の数(Node の数)
 
int num_vcount
 1ポリゴン あたりの頂点数.現在は 3のみサポート
 
MeshFacetNodefacet
 FACETデータ(1面のポリゴンデータ)のリストへのポインタ
 
MeshFacetNodefacet_end
 FACETデータのリストの最後のデータへのポインタ
 
AffineTrans< double > * affineTrans
 アフィン変換.ここで使用するのは,shift, rotate, scale(size) のみ
 

Private Attributes

int num_import
 入力データの数
 
Vector< double > * impvtx_value
 入力された頂点データ.3個で 1ポリゴンを表現.法線方向は右手順.
 
Vector< double > * impnrm_value
 入力された頂点の法線ベクトル.impvtx_value と対応.
 
UVMap< double > * impmap_value
 入力されたテクスチャ座標データ.impvtx_value と対応.
 
ArrayParam< int > * impwgt_value
 入力された頂点の重み.Jointを持つデータに使用される.
 

Detailed Description

class MeshObjectData

Definition at line 21 of file MeshObjectData.h.

Constructor & Destructor Documentation

◆ MeshObjectData()

MeshObjectData ( const char * name = NULL)
inline

Definition at line 47 of file MeshObjectData.h.

47{ init(name);}
void init(const char *name=NULL)

References MeshObjectData::init().

Here is the call graph for this function:

◆ ~MeshObjectData()

virtual ~MeshObjectData ( void )
inlinevirtual

Definition at line 48 of file MeshObjectData.h.

48{ free();}

References MeshObjectData::free().

Here is the call graph for this function:

Member Function Documentation

◆ addData() [1/3]

bool addData ( ContourBaseData * contours,
MaterialParam * param )

bool MeshObjectData::addData(ContourBaseData* contours, MaterialParam* param)

インデックス化された ContourBaseDataを importTriData()を介さずに,直接 Nodeデータに書き込む.
CONTOUR(ポリゴン)を選択的に処理することはできない.予め CONTOURに分解しておくか,CONTOURが1つのみの場合に使用する. この後 MeshFacetNode::computeVertexDirect() を使用して頂点データの計算を行う.

Parameters
contours
param
Return values
true処理の成功.false: 処理の失敗.

Definition at line 87 of file MeshObjectData.cpp.

88{
89 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for ContourBaseData: start.\n");
90 char* name = NULL;
91 if (param!=NULL) name = param->getParamString();
92
93 bool ret = addNode(contours, name, param);
94 if (ret && param!=NULL) facet_end->setMaterialParam(*param); // Materialデータを追加
95
96 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for ContourBaseData: end.\n");
97 return ret;
98}
char * getParamString(void)
void setMaterialParam(MaterialParam param)
ノードにマテリアルパラメータを設定し,他のノードに同じマテリアルが存在するかチャックする.
MeshFacetNode * facet_end
FACETデータのリストの最後のデータへのポインタ
bool addNode(ContourBaseData *facetdata, const char *name, MaterialParam *param)
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502

References MeshObjectData::addNode(), DEBUG_MODE, MeshObjectData::facet_end, MaterialParam::getParamString(), PRINT_MESG, and MeshFacetNode::setMaterialParam().

Here is the call graph for this function:

◆ addData() [2/3]

bool addData ( TriPolygonData * tridata,
int tnum,
int pnum,
MaterialParam * param,
bool useBrep )

bool MeshObjectData::addData(TriPolygonData* tridata, int tnum, int pnum, MaterialParam* param, bool useBrep)

TriPolygonData (三角ポリゴンデータ) を単位としてデータを追加し,MeshObjectのデータを作成する.
pnum を指定すると,指定されたポリゴンデータのみが追加される.これにより面ごとのデータ構造を形成することができる.

Parameters
tridata追加対象の三角ポリゴンデータへのポインタ
tnum三角ポリゴンデータの数
pnum追加するデータのポリゴン番号(選択的に追加する場合に指定する).-1以下なら全てのポリゴンデータを追加する.
paramマテリアル用パラメータへのポインタ
useBrepBREPを使用して頂点を配置する.
Return values
true処理の成功.false: 処理の失敗.

Definition at line 146 of file MeshObjectData.cpp.

147{
148 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for TriPolygonData: start.\n");
149
150 bool ret = importTriData(tridata, tnum, pnum);
151 if (ret) {
152 char* name = NULL;
153 if (param!=NULL) name = param->getParamString();
154 ret = addNode(name, param, useBrep);
155 }
156 //
157 if (ret) {
158 if (pnum>=0) facet_end->setFacetNo(pnum);
159 if (param!=NULL) facet_end->setMaterialParam(*param); // Materialデータを追加
160 }
161
162 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for TriPolygonData: end.\n");
163 return ret;
164}
void setFacetNo(int no)
bool importTriData(Vector< double > *vct, Vector< double > *nrm, UVMap< double > *map, ArrayParam< int > *wgt, int vnum)

References MeshObjectData::addNode(), DEBUG_MODE, MeshObjectData::facet_end, MaterialParam::getParamString(), MeshObjectData::importTriData(), PRINT_MESG, MeshFacetNode::setFacetNo(), and MeshFacetNode::setMaterialParam().

Here is the call graph for this function:

◆ addData() [3/3]

bool addData ( Vector< double > * vct,
Vector< double > * nrm,
UVMap< double > * map,
ArrayParam< int > * wgt,
int vnum,
MaterialParam * param,
bool useBrep )

bool MeshObjectData::addData(Vector<double>* vct, Vector<double>* nrm, UVMap<double>* map, ArrayParam<int>* wgt, int vnum, MaterialParam* param, bool useBrep)

指定した頂点ベクトルのデータを追加し,MeshObjectのデータ(通常はCONTOUR すなわちポリゴン単位)を作成する.
vct, nrm, map は3個づつ組になって三角ポリゴンを表す.従って vnumは必ず3の倍数になるはず.
その後 MeshFacetNode::computeVertexDirect() または MeshFacetNode::computeVertexByBREP() を使用して頂点データの計算を行う.

Parameters
vct追加対象の頂点座標データへのポインタ
nrm追加対象の頂点の法線ベクトルのデータへのポインタ
map追加対象のテクスチャ座標のデータへのポインタ
wgt頂点の重みデータへのポインタ(オプション)
vnumデータ数
paramマテリアル用パラメータへのポインタ
useBrepBREPを使用して頂点を配置する.
Return values
true処理の成功.false: 処理の失敗.

Definition at line 117 of file MeshObjectData.cpp.

118{
119 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for Vector<>: start.\n");
120 bool ret = importTriData(vct, nrm, map, wgt, vnum);
121 if (ret) {
122 char* name = NULL;
123 if (param!=NULL) name = param->getParamString();
124 ret = addNode(name, param, useBrep);
125 }
126 if (ret && param!=NULL) facet_end->setMaterialParam(*param); // Materialデータを追加
127
128 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for Vector<>: end.\n");
129 return ret;
130}

References MeshObjectData::addNode(), DEBUG_MODE, MeshObjectData::facet_end, MaterialParam::getParamString(), MeshObjectData::importTriData(), PRINT_MESG, and MeshFacetNode::setMaterialParam().

Here is the call graph for this function:

◆ addNode() [1/2]

bool addNode ( const char * name,
MaterialParam * param,
bool useBrep )

bool MeshObjectData::addNode(const char* name, MaterialParam* param, bool useBrep)

Parameters
nameノードの名前
useBrepBREPを使用して頂点を配置する.

Definition at line 400 of file MeshObjectData.cpp.

401{
402 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for TriPolygonData or Vector<>: start.\n");
403
404 bool ret = false;
405 if (impvtx_value==NULL) return ret;
406
407 MeshFacetNode* node = new MeshFacetNode();
408 if (node==NULL) return ret;
409 //
410 if (param!=NULL) node->setMaterialParam(*param);
411 node->setMaterialID(name);
412
413 if (useBrep) {
415 }
416 else {
418 }
419 if (ret) {
420 if (facet==NULL) facet = facet_end = node;
422 num_node++;
423 ttl_index += node->num_index;
424 ttl_vertex += node->num_vertex;
425 ttl_texcrd += node->num_texcrd;
426 }
427 //
431 freeArrayParams<int>(impwgt_value, node->num_vertex);
432 impwgt_value = NULL;
433
434 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for TriPolygonData or Vector<>: end.\n");
435 return ret;
436}
MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る.
bool computeVertexByBREP(ContourBaseData *facetdata)
int num_texcrd
テクスチャ画像の座標数.通常は num_vertex に等しい.(texcrd_value の要素数)
int num_index
頂点の延べ数.num_polygon*MeshObjectData::num_vcount (num_polygon*3)(data_index の要素数)
bool computeVertexDirect(ContourBaseData *facetdata)
void setMaterialID(const char *str)
int num_vertex
頂点のデータ数.(vertex_value, normal_value の要素数)
int ttl_texcrd
テクスチャ画像の座標総数.通常は ttl_vertexと同じ値.
int num_node
テクスチャー単位の面の数(Node の数)
int num_import
入力データの数
Vector< double > * impvtx_value
入力された頂点データ.3個で 1ポリゴンを表現.法線方向は右手順.
int ttl_index
インデックスの総数(実質的データ数)
int num_vcount
1ポリゴン あたりの頂点数.現在は 3のみサポート
MeshFacetNode * facet
FACETデータ(1面のポリゴンデータ)のリストへのポインタ
Vector< double > * impnrm_value
入力された頂点の法線ベクトル.impvtx_value と対応.
int ttl_vertex
頂点データの総数.
ArrayParam< int > * impwgt_value
入力された頂点の重み.Jointを持つデータに使用される.
UVMap< double > * impmap_value
入力されたテクスチャ座標データ.impvtx_value と対応.
MeshFacetNode * AddMeshFacetNode(MeshFacetNode *list, MeshFacetNode *node)
void freeNull(T &p)
Definition common++.h:37

References jbxl::AddMeshFacetNode(), MeshFacetNode::computeVertexByBREP(), MeshFacetNode::computeVertexDirect(), DEBUG_MODE, MeshObjectData::facet, MeshObjectData::facet_end, jbxl::freeNull(), MeshObjectData::impmap_value, MeshObjectData::impnrm_value, MeshObjectData::impvtx_value, MeshObjectData::impwgt_value, MeshObjectData::num_import, MeshFacetNode::num_index, MeshObjectData::num_node, MeshFacetNode::num_texcrd, MeshObjectData::num_vcount, MeshFacetNode::num_vertex, PRINT_MESG, MeshFacetNode::setMaterialID(), MeshFacetNode::setMaterialParam(), MeshObjectData::ttl_index, MeshObjectData::ttl_texcrd, and MeshObjectData::ttl_vertex.

Here is the call graph for this function:

◆ addNode() [2/2]

bool addNode ( ContourBaseData * facetdata,
const char * name,
MaterialParam * param )

bool MeshObjectData::addNode(ContourBaseData* facetdata, const char* name, MaterialParam* param)

Definition at line 367 of file MeshObjectData.cpp.

368{
369 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for ContourBaseData: start.\n");
370 bool ret = false;
371
372 MeshFacetNode* node = new MeshFacetNode();
373 if (node==NULL) return ret;
374 //
375 if (param!=NULL) node->setMaterialParam(*param);
376 node->setMaterialID(name);
377
378 ret = node->computeVertexDirect(facetdata);
379
380 if (ret) {
381 if (facet==NULL) facet = facet_end = node;
383 num_node++;
384 ttl_index += node->num_index;
385 ttl_vertex += node->num_vertex;
386 ttl_texcrd += node->num_texcrd;
387 }
388
389 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for ContourBaseData: end.\n");
390 return ret;
391}

References jbxl::AddMeshFacetNode(), MeshFacetNode::computeVertexDirect(), DEBUG_MODE, MeshObjectData::facet, MeshObjectData::facet_end, MeshFacetNode::num_index, MeshObjectData::num_node, MeshFacetNode::num_texcrd, MeshFacetNode::num_vertex, PRINT_MESG, MeshFacetNode::setMaterialID(), MeshFacetNode::setMaterialParam(), MeshObjectData::ttl_index, MeshObjectData::ttl_texcrd, and MeshObjectData::ttl_vertex.

Referenced by MeshObjectData::addData(), MeshObjectData::addData(), and MeshObjectData::addData().

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

◆ clear()

void clear ( void )

Definition at line 69 of file MeshObjectData.cpp.

70{
71 this->free();
72 init();
73}

References MeshObjectData::free(), and MeshObjectData::init().

Here is the call graph for this function:

◆ delAffineTrans()

void delAffineTrans ( void )
inline

Definition at line 62 of file MeshObjectData.h.

AffineTrans< double > * affineTrans
アフィン変換.ここで使用するのは,shift, rotate, scale(size) のみ
void freeAffineTrans(AffineTrans< T > *&affine)

References MeshObjectData::affineTrans, and jbxl::freeAffineTrans().

Referenced by MeshObjectData::free(), and MeshObjectData::setAffineTrans().

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

◆ free()

void free ( void )

Definition at line 42 of file MeshObjectData.cpp.

43{
46 free_value();
47
49
51 facet = facet_end = NULL;
52}
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
Buffer data_name
データ名
void freeMeshFacetList(MeshFacetNode *&node)

References MeshObjectData::alt_name, MeshObjectData::data_name, MeshObjectData::delAffineTrans(), MeshObjectData::facet, MeshObjectData::facet_end, free_Buffer(), MeshObjectData::free_value(), and jbxl::freeMeshFacetList().

Referenced by MeshObjectData::clear(), jbxl::freeMeshObjectData(), and MeshObjectData::~MeshObjectData().

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

◆ free_value()

void free_value ( void )

Definition at line 55 of file MeshObjectData.cpp.

56{
60 freeArrayParams<int>(impwgt_value, num_import);
61
62 impvtx_value = NULL;
63 impnrm_value = NULL;
64 impmap_value = NULL;
65 impwgt_value = NULL;
66}

References jbxl::freeNull(), MeshObjectData::impmap_value, MeshObjectData::impnrm_value, MeshObjectData::impvtx_value, MeshObjectData::impwgt_value, and MeshObjectData::num_import.

Referenced by MeshObjectData::free(), MeshObjectData::importTriData(), and MeshObjectData::importTriData().

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

◆ getAltName()

char * getAltName ( void )
inline

Definition at line 59 of file MeshObjectData.h.

59{ return _tochar(alt_name.buf);}
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39
#define _tochar(a)
Definition tools.h:207

References _tochar, MeshObjectData::alt_name, and Buffer::buf.

◆ getName()

char * getName ( void )
inline

Definition at line 57 of file MeshObjectData.h.

57{ return _tochar(data_name.buf);}

References _tochar, Buffer::buf, and MeshObjectData::data_name.

◆ importTriData() [1/2]

bool importTriData ( TriPolygonData * tridata,
int tnum,
int pnum = -1 )

TriPolygonData (三角ポリゴンデータ) を単位としてデータを取り込む.
pnum を指定すると,指定されたポリゴンデータのみが追加される.

Parameters
tridata三角ポリゴンデータへのポインタ
tnum三角ポリゴンデータの数
pnum追加するデータの三角ポリゴンの番号(選択的に追加する番号).-1以下なら全てのポリゴンデータを追加する.
Return values
true処理の成功.false: 処理の失敗.

Definition at line 256 of file MeshObjectData.cpp.

257{
258 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for TriPolygonData: start.\n");
259 if (tridata==NULL) return false;
260
261 free_value();
262
263 int num = 0;
264 if (pnum>=0) {
265 for (int i=0; i<tnum; i++) {
266 if (tridata[i].polygonNum==pnum) num++;
267 }
268 if (num==0) return false;
269 }
270 else num = tnum;
271
272 int vnum = num*3;
273 int lsize = sizeof(Vector<double>)*vnum;
274
275 // Vertex Position
277 impvtx_value = (Vector<double>*)malloc(lsize);
278 if (impvtx_value!=NULL) {
279 int n = 0;
280 for (int i=0; i<tnum; i++) {
281 if (tridata[i].polygonNum==pnum || pnum<0) {
282 impvtx_value[n*3] = tridata[i].vertex[0];
283 impvtx_value[n*3+1] = tridata[i].vertex[1];
284 impvtx_value[n*3+2] = tridata[i].vertex[2];
285 n++;
286 }
287 }
288 }
289 else return false;
290
291 // Normal Vector
293 if (tridata[0].has_normal) {
294 impnrm_value = (Vector<double>*)malloc(lsize);
295 if (impnrm_value!=NULL) {
296 int n = 0;
297 for (int i=0; i<tnum; i++) {
298 if (tridata[i].polygonNum==pnum || pnum<0) {
299 impnrm_value[n*3] = tridata[i].normal[0];
300 impnrm_value[n*3+1] = tridata[i].normal[1];
301 impnrm_value[n*3+2] = tridata[i].normal[2];
302 n++;
303 }
304 }
305 }
306 else {
308 return false;
309 }
310 }
311
312 // UV Map
314 if (tridata[0].has_texcrd) {
315 int msize = sizeof(UVMap<double>)*vnum;
316 impmap_value = (UVMap<double>*)malloc(msize);
317 if (impmap_value!=NULL) {
318 int n = 0;
319 for (int i=0; i<tnum; i++) {
320 if (tridata[i].polygonNum==pnum || pnum<0) {
321 impmap_value[n*3] = tridata[i].texcrd[0];
322 impmap_value[n*3+1] = tridata[i].texcrd[1];
323 impmap_value[n*3+2] = tridata[i].texcrd[2];
324 n++;
325 }
326 }
327 }
328 else {
331 return false;
332 }
333
334 }
335
336 // Vertex Weight (option)
337 if (impwgt_value!=NULL) freeArrayParams<int>(impwgt_value, num_import);
338 if (tridata[0].has_weight) {
339 int wsize = sizeof(ArrayParam<int>)*vnum;
340 impwgt_value = (ArrayParam<int>*)malloc(wsize);
341 if (impwgt_value!=NULL) {
342 memset(impwgt_value, 0, vnum);
343 for (int i=0, n=0; i<tnum; i++) {
344 if (tridata[i].polygonNum==pnum || pnum<0) {
345 impwgt_value[n*3] .dup(tridata[i].weight[0], false);
346 impwgt_value[n*3+1].dup(tridata[i].weight[1], false);
347 impwgt_value[n*3+2].dup(tridata[i].weight[2], false);
348 n++;
349 }
350 }
351 }
352 }
353
354 //
355 num_vcount = 3; // Contour(ポリゴン)を形成する頂点数
356 num_import = vnum; // 総頂点数
357
358 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for TriPolygonData (%d): end.\n", vnum);
359 return true;
360}
void dup(ArrayParam< T > a, bool del=true)
Definition tools++.h:138
Vector< double > vertex[3]
UVMap< double > texcrd[3]
Vector< double > normal[3]

References DEBUG_MODE, ArrayParam< T >::dup(), MeshObjectData::free_value(), jbxl::freeNull(), MeshObjectData::impmap_value, MeshObjectData::impnrm_value, MeshObjectData::impvtx_value, MeshObjectData::impwgt_value, TriPolygonData::normal, MeshObjectData::num_import, MeshObjectData::num_vcount, PRINT_MESG, TriPolygonData::texcrd, and TriPolygonData::vertex.

Here is the call graph for this function:

◆ importTriData() [2/2]

bool importTriData ( Vector< double > * vct,
Vector< double > * nrm,
UVMap< double > * map,
ArrayParam< int > * wgt,
int vnum )

bool MeshObjectData::importTriData(Vector<double>* vct, Vector<double>* nrm, UVMap<double>* map, ArrayParam<int>* wgt, int vnum)

指定した頂点ベクトルのデータを取り込む.
vct, nrm, map は3個づつ組になって三角ポリゴンを表す.従って vnumは必ず3の倍数になるはず.

Parameters
vct頂点座標データへのポインタ
nrm頂点の法線ベクトルのデータへのポインタ
mapテクスチャ座標のデータへのポインタ
wgt頂点の重みデータへのポインタ(オプション)
vnumデータ数
Return values
true処理の成功.false: 処理の失敗.

Definition at line 180 of file MeshObjectData.cpp.

181{
182 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for Vector<>: start.\n");
183 if (vct==NULL) return false;
184 //
185 free_value();
186
187 int lsize = sizeof(Vector<double>)*vnum;
188
189 // Vertex Position
191 impvtx_value = (Vector<double>*)malloc(lsize);
192 if (impvtx_value!=NULL) {
193 memcpy(impvtx_value, vct, lsize);
194 }
195 else return false;
196
197 // Normal Vector
198 if (nrm!=NULL) {
200 impnrm_value = (Vector<double>*)malloc(lsize);
201 if (impnrm_value!=NULL) {
202 memcpy(impnrm_value, nrm, lsize);
203 }
204 else {
206 return false;
207 }
208 }
209
210 // UV Map
211 if (map!=NULL) {
212 int msize = sizeof(UVMap<double>)*vnum;
214 impmap_value = (UVMap<double>*)malloc(msize);
215 if (impmap_value!=NULL) {
216 memcpy(impmap_value, map, msize);
217 }
218 else {
221 return false;
222 }
223 }
224
225 // Vertex Weight (option)
226 if (wgt!=NULL) {
227 if (impwgt_value!=NULL) freeArrayParams<int>(impwgt_value, num_import);
228 int wsize = sizeof(ArrayParam<int>)*vnum;
229 impwgt_value = (ArrayParam<int>*)malloc(wsize);
230 if (impwgt_value!=NULL) {
231 memset(impwgt_value, 0, wsize);
232 for (int i=0; i<vnum; i++) {
233 impwgt_value[i].dup(wgt[i]);
234 }
235 }
236 }
237
238 //
239 num_vcount = 3; // Contour(ポリゴン)を形成する頂点数
240 num_import = vnum; // 総頂点数
241
242 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for Vector<>: end.\n");
243 return true;
244}

References DEBUG_MODE, ArrayParam< T >::dup(), MeshObjectData::free_value(), jbxl::freeNull(), MeshObjectData::impmap_value, MeshObjectData::impnrm_value, MeshObjectData::impvtx_value, MeshObjectData::impwgt_value, MeshObjectData::num_import, MeshObjectData::num_vcount, and PRINT_MESG.

Referenced by MeshObjectData::addData(), and MeshObjectData::addData().

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

◆ init()

void init ( const char * name = NULL)

Definition at line 17 of file MeshObjectData.cpp.

18{
23
24 ttl_index = 0;
25 ttl_vertex = 0;
26 ttl_texcrd = 0;
27 num_node = 0;
28 num_vcount = 3;
29
30 facet = NULL;
31 facet_end = NULL;
32 affineTrans = NULL;
33
34 num_import = 0;
35 impvtx_value = NULL;
36 impnrm_value = NULL;
37 impmap_value = NULL;
38 impwgt_value = NULL;
39}
#define make_Buffer_str(str)
set_Buffer()
Definition buffer.h:61
#define TRUE
Definition common.h:226
void canonical_filename_Buffer(Buffer *fname, int no_dir)
fname の問題になりそうな ASCII文字を '_' に変換する.
Definition xtools.cpp:2057

References MeshObjectData::affineTrans, MeshObjectData::alt_name, canonical_filename_Buffer(), MeshObjectData::data_name, MeshObjectData::facet, MeshObjectData::facet_end, MeshObjectData::impmap_value, MeshObjectData::impnrm_value, MeshObjectData::impvtx_value, MeshObjectData::impwgt_value, make_Buffer_str, MeshObjectData::num_import, MeshObjectData::num_node, MeshObjectData::num_vcount, TRUE, MeshObjectData::ttl_index, MeshObjectData::ttl_texcrd, and MeshObjectData::ttl_vertex.

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

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

◆ joinData()

void joinData ( MeshObjectData *& data)

現在の形状データに,dataを面の一部(Node)として結合させる.アフィン変換のパラメータの違うものは結合できない.

Parameters
data結合するMeshObjectデータ.結合後データは削除される.データのアフィン変換は無視する.

Definition at line 478 of file MeshObjectData.cpp.

479{
480 if (data==NULL) return;
481
482 ttl_index += data->ttl_index;
483 ttl_vertex += data->ttl_vertex;
484 ttl_texcrd += data->ttl_texcrd;
485 num_node += data->num_node;
486
487 if (facet_end==NULL) { // 最初のデータ
489 facet = data->facet;
490 facet_end = data->facet_end;
491 }
492 else if (data->facet!=NULL) {
493 facet_end->next = data->facet;
494 data->facet->prev = facet_end;
495 facet_end = data->facet_end;
496 }
497
498 data->facet = NULL;
499 freeMeshObjectData(data);
500
501 return;
502}
MeshFacetNode * prev
MeshFacetNode * next
void setAffineTrans(AffineTrans< double > a)
void freeMeshObjectData(MeshObjectData *&data)

References MeshObjectData::affineTrans, MeshObjectData::facet, MeshObjectData::facet_end, jbxl::freeMeshObjectData(), MeshFacetNode::next, MeshObjectData::num_node, MeshFacetNode::prev, MeshObjectData::setAffineTrans(), MeshObjectData::ttl_index, MeshObjectData::ttl_texcrd, and MeshObjectData::ttl_vertex.

Here is the call graph for this function:

◆ setAffineTrans()

void setAffineTrans ( AffineTrans< double > a)
inline

Definition at line 61 of file MeshObjectData.h.

61{ delAffineTrans(); affineTrans = new AffineTrans<double>(); affineTrans->dup(a);}
void dup(AffineTrans a)

References MeshObjectData::affineTrans, MeshObjectData::delAffineTrans(), and AffineTrans< T >::dup().

Referenced by MeshObjectData::joinData().

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

◆ setAltName()

void setAltName ( const char * str)
inline

Definition at line 58 of file MeshObjectData.h.

References MeshObjectData::alt_name, canonical_filename_Buffer(), free_Buffer(), make_Buffer_str, and TRUE.

Here is the call graph for this function:

◆ setMaterialParam()

void setMaterialParam ( MaterialParam param,
int num = -1 )

void MeshObjectData::setMaterialParam(MaterialParam param, int num)

Parameters
paramマテリアルパラメータ
num0以上の場合は指定したノードに,-1の場合は先頭から順にノードにパラメータを設定する

Definition at line 445 of file MeshObjectData.cpp.

446{
447 MeshFacetNode* node = facet;
448
449 if (num>=0) {
450 while (node!=NULL) {
451 if (node->facet_no==num) {
452 node->setMaterialParam(param);
453 node->setMaterialID(param.getParamString());
454 return;
455 }
456 node = node->next;
457 }
458 }
459 else {
460 while (node!=NULL) {
461 if (!node->material_param.enable) {
462 node->setMaterialParam(param);
463 node->setMaterialID(param.getParamString());
464 return;
465 }
466 node = node->next;
467 }
468 }
469 return;
470}
MaterialParam material_param
マテリアルパラメータ
int facet_no
面(Polygon)番号

References MaterialParam::enable, MeshObjectData::facet, MeshFacetNode::facet_no, MaterialParam::getParamString(), MeshFacetNode::material_param, MeshFacetNode::next, MeshFacetNode::setMaterialID(), and MeshFacetNode::setMaterialParam().

Here is the call graph for this function:

◆ setName()

void setName ( const char * str)
inline

Definition at line 56 of file MeshObjectData.h.

References canonical_filename_Buffer(), MeshObjectData::data_name, free_Buffer(), make_Buffer_str, and TRUE.

Here is the call graph for this function:

Member Data Documentation

◆ affineTrans

◆ alt_name

◆ data_name

◆ facet

◆ facet_end

◆ impmap_value

◆ impnrm_value

◆ impvtx_value

◆ impwgt_value

◆ num_import

◆ num_node

◆ num_vcount

◆ ttl_index

◆ ttl_texcrd

◆ ttl_vertex


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