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

MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る. More...

#include <MeshFacetNode.h>

Collaboration diagram for MeshFacetNode:

Public Member Functions

 MeshFacetNode (void)
 
virtual ~MeshFacetNode (void)
 
void init (void)
 
void free (void)
 
void free_value (void)
 
void del_nodes (MeshFacetNode *next)
 
void clear (void)
 
void set (int vertex, int polygon, int vcount=3)
 
bool getm (int vertex=0, int polygon=0, int vcount=0)
 メモリの確保
 
void setFacetNo (int no)
 
void setMaterialParam (MaterialParam param)
 ノードにマテリアルパラメータを設定し,他のノードに同じマテリアルが存在するかチャックする.
 
void delMaterialParam (void)
 
void setMaterialID (const char *str)
 
void * getMaterialID (void)
 
void execAffineTransUVMap (UVMap< double > *uvmap=NULL, int num=-1)
 
UVMap< double > * generatePlanarUVMap (Vector< double > scale, UVMap< double > *uvmap=NULL)
 
bool computeVertexDirect (ContourBaseData *facetdata)
 
bool computeVertexByBREP (ContourBaseData *facetdata)
 
bool computeVertexDirect (Vector< double > *vtx, Vector< double > *nml, UVMap< double > *map, ArrayParam< int > *wgt, int num, int vcount=3)
 
bool computeVertexByBREP (Vector< double > *vtx, Vector< double > *nml, UVMap< double > *map, ArrayParam< int > *wgt, int num, int vcount=3)
 

Public Attributes

Buffer material_id
 マテリアルを識別するID.JBXL_MATERIAL_PREFIX で始まる.
 
bool same_material
 他の Node が既に同じマテリアルを使用している.
 
int facet_no
 面(Polygon)番号
 
MaterialParam material_param
 マテリアルパラメータ
 
int num_index
 頂点の延べ数.num_polygon*MeshObjectData::num_vcount (num_polygon*3)(data_index の要素数)
 
int num_polygon
 ポリゴンの数
 
int num_vertex
 頂点のデータ数.(vertex_value, normal_value の要素数)
 
int num_texcrd
 テクスチャ画像の座標数.通常は num_vertex に等しい.(texcrd_value の要素数)
 
int * data_index
 インデックスデータ.要素数は num_index
 
Vector< double > * vertex_value
 頂点データの並び.要素数は num_vertex
 
Vector< double > * normal_value
 法線ベクトルデータの並び.要素数は num_vertex
 
UVMap< double > * texcrd_value
 テクスチャマップの並び.要素数は num_texcrd
 
ArrayParam< int > * weight_value
 頂点の重み.Jointを持つデータに使用される.要素数は num_vertex. 各 weight_value[i] の値は トータルで正規化される必要がある.
 
MeshFacetNodenext
 
MeshFacetNodeprev
 

Detailed Description

data_index[i*3], data_index[i*3+1], data_index[i*3+2] が示す vertex_value, normal_value, texcrd_value で一つの面(3角ポリゴン)を形成する. 例えば,vertex_value[data_index[i*3]], vertex_value[data_index[i*3+1]], vertex_value[data_index[i*3+2]] で3角ポリゴン座標を表す.

旧バージョンから名前変更:MeshObjectNode -> MeshFacetNode

Definition at line 33 of file MeshFacetNode.h.

Constructor & Destructor Documentation

◆ MeshFacetNode()

MeshFacetNode ( void )
inline

Definition at line 57 of file MeshFacetNode.h.

57{ init();}

References MeshFacetNode::init().

Here is the call graph for this function:

◆ ~MeshFacetNode()

virtual ~MeshFacetNode ( void )
inlinevirtual

Definition at line 58 of file MeshFacetNode.h.

58{ free();}

References MeshFacetNode::free().

Here is the call graph for this function:

Member Function Documentation

◆ clear()

void clear ( void )

Definition at line 149 of file MeshFacetNode.cpp.

150{
151 this->free();
152 init();
153}

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

Here is the call graph for this function:

◆ computeVertexByBREP() [1/2]

bool computeVertexByBREP ( ContourBaseData * facetdata)

bool MeshFacetNode::computeVertexByBREP(ContourBaseData* facetdata)

BREPを使用して,頂点データを処理する.頂点データは再インデックス化される
データがインデックス化されていない場合,重複頂点を削除するのでデータサイズが小さくなる.
法線ベクトルが計算されていない場合(facetdata->normal がNULLの場合),法線ベクトルを計算する.
頂点数が多い場合は,処理に時間が掛かる.

Parameters
facetdataContourBaseDataへのポインタ.
Returns
インポートに成功したかどうか.

Definition at line 247 of file MeshFacetNode.cpp.

248{
249 if (facetdata==NULL) return false;
250 if (facetdata->index==NULL || facetdata->vertex==NULL || facetdata->normal==NULL) return false;
251
252 BREP_SOLID* brep = new BREP_SOLID();
253 if (brep==NULL) return false;
254 // 重複登録を許可しない.データチェックはしない.
255 CreateTriSolidFromVector(brep, facetdata->num_data, facetdata->vertex, facetdata->normal, facetdata->texcrd, facetdata->weight, false, false);
256
257 long int vnum;
258 BREP_VERTEX** vertex_data = GetOctreeVertices(brep->octree, &vnum);
259 if (vertex_data==NULL) {
260 freeBrepSolid(brep);
261 return false;
262 }
263 int vcount = facetdata->vcount;
264
265 // メモリの確保
266 set((int)vnum, brep->facetno, vcount);
267 if (!getm()) {
268 ::free(vertex_data);
269 freeBrepSolid(brep);
270 return false;
271 }
272
273 // Vertex & Normal & Texcoord
274 for (int i=0; i<num_vertex; i++) {
275 vertex_value[i] = vertex_data[i]->point;
276 normal_value[i] = vertex_data[i]->normal;
277 texcrd_value[i] = vertex_data[i]->uvmap;
278 weight_value[i].dup(vertex_data[i]->weight);
279 }
280
281 // Index
282 int polyn = 0;
283 BREP_CONTOUR_LIST::iterator icon;
284 for (icon=brep->contours.begin(); icon!=brep->contours.end(); icon++){
285 BREP_WING* wing = (*icon)->wing;
286 for (int i=0; i<vcount; i++) {
287 BREP_VERTEX* vertex = wing->vertex;
288 if (vertex!=NULL) {
289 data_index[polyn*vcount+i] = vertex->index;
290 }
291 wing = wing->next;
292 }
293 polyn++;
294 }
295
296 ::free(vertex_data);
297 freeBrepSolid(brep);
298
299 return true;
300}
void dup(ArrayParam< T > a, bool del=true)
Definition tools++.h:138
OctreeNode * octree
Definition Brep.h:80
BREP_CONTOUR_LIST contours
Contours リスト
Definition Brep.h:83
unsigned int facetno
面の数
Definition Brep.h:74
long int index
シーケンシャルに増加する一意的な番号.Octree に格納されるときに設定される.
Definition Brep.h:266
Vector< double > point
頂点の座標.
Definition Brep.h:260
Vector< double > normal
法線ベクトル.周りの Contour の法線ベクトルの平均.
Definition Brep.h:261
UVMap< double > uvmap
曲面のUV座標
Definition Brep.h:262
BREP_WING * next
Definition Brep.h:212
BREP_VERTEX * vertex
Start of Vertex.
Definition Brep.h:210
int num_data
データ数.(vertex, normal, texcrd, weight の要素数)
UVMap< double > * texcrd
テクスチャマップ texcrd[index[0]], texcrd[index[1]], texcrd[index[2]], ... の順に並ぶ
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]], ... の順に並ぶ
Vector< double > * normal_value
法線ベクトルデータの並び.要素数は num_vertex
ArrayParam< int > * weight_value
頂点の重み.Jointを持つデータに使用される.要素数は num_vertex. 各 weight_value[i] の値は トータルで正規化される必要がある.
int * data_index
インデックスデータ.要素数は num_index
UVMap< double > * texcrd_value
テクスチャマップの並び.要素数は num_texcrd
bool getm(int vertex=0, int polygon=0, int vcount=0)
メモリの確保
void set(int vertex, int polygon, int vcount=3)
int num_vertex
頂点のデータ数.(vertex_value, normal_value の要素数)
Vector< double > * vertex_value
頂点データの並び.要素数は num_vertex
void freeBrepSolid(BREP_SOLID *&solid)
Definition Brep.h:105
class DllExport BREP_SOLID
Definition Brep.h:32
DllExport BREP_VERTEX ** GetOctreeVertices(OctreeNode *octree, long int *vertexno)
Definition Brep.cpp:913
DllExport int CreateTriSolidFromVector(BREP_SOLID *solid, int vno, Vector< double > *v, Vector< double > *n=NULL, UVMap< double > *uv=NULL, ArrayParam< int > *w=NULL, bool dupli=false, bool check=true)
Definition TriBrep.cpp:1321

References jbxl::BREP_SOLID, BREP_SOLID::contours, jbxl::CreateTriSolidFromVector(), MeshFacetNode::data_index, ArrayParam< T >::dup(), BREP_SOLID::facetno, MeshFacetNode::free(), jbxl::freeBrepSolid(), MeshFacetNode::getm(), jbxl::GetOctreeVertices(), BREP_VERTEX::index, ContourBaseData::index, BREP_WING::next, BREP_VERTEX::normal, ContourBaseData::normal, MeshFacetNode::normal_value, ContourBaseData::num_data, MeshFacetNode::num_vertex, BREP_SOLID::octree, BREP_VERTEX::point, MeshFacetNode::set(), ContourBaseData::texcrd, MeshFacetNode::texcrd_value, BREP_VERTEX::uvmap, ContourBaseData::vcount, BREP_WING::vertex, ContourBaseData::vertex, MeshFacetNode::vertex_value, ContourBaseData::weight, and MeshFacetNode::weight_value.

Referenced by MeshObjectData::addNode().

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

◆ computeVertexByBREP() [2/2]

bool computeVertexByBREP ( Vector< double > * impvtx,
Vector< double > * impnrm,
UVMap< double > * impmap,
ArrayParam< int > * impwgt,
int impnum,
int vcount = 3 )

bool MeshFacetNode::computeVertexByBREP(Vector<double>* impvtx, Vector<double>* impnrm, UVMap<double>* impmap, ArrayParam<int>* impwgt, int impnum, int vcount)

BREPを使用して,頂点データを処理する.頂点データは再インデックス化される
データがインデックス化されていない場合,重複頂点を削除するのでデータサイズが小さくなる.
法線ベクトルが計算されていない場合(ipnrmがNULLの場合),法線ベクトルを計算する.
頂点数が多い場合は,処理に時間が掛かる.

Parameters
impvtxインポートする頂点の座標データ.(必須)
impnrmインポートする法線ベクトルデータ.NULLの場合,再計算が行われる.(オプション)
impmapインポートする頂点のUVマップデータ.(オプション)
impmapインポートする頂点の重みデータ.(オプション)
impnumインポートするデータの数
vcountポリゴンの頂点数.通常は 3
Returns
インポートに成功したかどうか.

Definition at line 361 of file MeshFacetNode.cpp.

362{
363 if (impvtx==NULL) return false;
364
365 BREP_SOLID* brep = new BREP_SOLID();
366 if (brep==NULL) return false;
367 CreateTriSolidFromVector(brep, impnum, impvtx, impnrm, impmap, impwgt, false, false); // 重複登録を許可しない.データチェックはしない.
368
369 long int vnum;
370 BREP_VERTEX** vertex_data = GetOctreeVertices(brep->octree, &vnum);
371 if (vertex_data==NULL) {
372 freeBrepSolid(brep);
373 return false;
374 }
375
376 // メモリの確保
377 set((int)vnum, brep->facetno, vcount);
378 if (!getm()) {
379 ::free(vertex_data);
380 freeBrepSolid(brep);
381 return false;
382 }
383
384 // Vertex & Normal & Texcoord
385 for (int i=0; i<num_vertex; i++) {
386 vertex_value[i] = vertex_data[i]->point;
387 normal_value[i] = vertex_data[i]->normal;
388 texcrd_value[i] = vertex_data[i]->uvmap;
389 weight_value[i].dup(vertex_data[i]->weight);
390 }
391
392 // Index
393 int polyn = 0;
394 BREP_CONTOUR_LIST::iterator icon;
395 for (icon=brep->contours.begin(); icon!=brep->contours.end(); icon++){
396 BREP_WING* wing = (*icon)->wing;
397 for (int i=0; i<vcount; i++) {
398 BREP_VERTEX* vertex = wing->vertex;
399 if (vertex!=NULL) {
400 data_index[polyn*vcount+i] = vertex->index;
401 }
402 wing = wing->next;
403 }
404 polyn++;
405 }
406
407 ::free(vertex_data);
408 freeBrepSolid(brep);
409
410 return true;
411}

References jbxl::BREP_SOLID, BREP_SOLID::contours, jbxl::CreateTriSolidFromVector(), MeshFacetNode::data_index, ArrayParam< T >::dup(), BREP_SOLID::facetno, MeshFacetNode::free(), jbxl::freeBrepSolid(), MeshFacetNode::getm(), jbxl::GetOctreeVertices(), BREP_VERTEX::index, BREP_WING::next, BREP_VERTEX::normal, MeshFacetNode::normal_value, MeshFacetNode::num_vertex, BREP_SOLID::octree, BREP_VERTEX::point, MeshFacetNode::set(), MeshFacetNode::texcrd_value, BREP_VERTEX::uvmap, BREP_WING::vertex, MeshFacetNode::vertex_value, and MeshFacetNode::weight_value.

Here is the call graph for this function:

◆ computeVertexDirect() [1/2]

bool computeVertexDirect ( ContourBaseData * facetdata)

bool MeshFacetNode::computeVertexDirect(ContourBaseData* facetdata)

インデックス化された頂点データを直接 MeshObjectのデータとしてインポートする.

Parameters
facetdataContourBaseDataへのポインタ.
Returns
インポートに成功したかどうか.

Definition at line 209 of file MeshFacetNode.cpp.

210{
211 if (facetdata==NULL) return false;
212 if (facetdata->index==NULL || facetdata->vertex==NULL || facetdata->normal==NULL) return false;
213
214 // num_data -> num_vertex, num_index/vcount -> num_polygon, num_index -> num_index
215 set(facetdata->num_data, facetdata->num_index/facetdata->vcount, facetdata->vcount);
216 if (!getm()) return false;
217
218 for (int i=0; i<facetdata->num_index; i++) {
219 data_index[i] = facetdata->index[i];
220 }
221 for (int i=0; i<num_vertex; i++) {
222 vertex_value[i] = facetdata->vertex[i];
223 normal_value[i] = facetdata->normal[i];
224 weight_value[i].dup(facetdata->weight[i]);
225 }
226 if (facetdata->texcrd!=NULL) {
227 for (int i=0; i<num_texcrd; i++) {
228 texcrd_value[i] = facetdata->texcrd[i];
229 }
230 }
231
232 return true;
233}
int num_index
インデックスの数.(index の要素数)
int num_texcrd
テクスチャ画像の座標数.通常は num_vertex に等しい.(texcrd_value の要素数)

References MeshFacetNode::data_index, ArrayParam< T >::dup(), MeshFacetNode::getm(), ContourBaseData::index, ContourBaseData::normal, MeshFacetNode::normal_value, ContourBaseData::num_data, ContourBaseData::num_index, MeshFacetNode::num_texcrd, MeshFacetNode::num_vertex, MeshFacetNode::set(), ContourBaseData::texcrd, MeshFacetNode::texcrd_value, ContourBaseData::vcount, ContourBaseData::vertex, MeshFacetNode::vertex_value, ContourBaseData::weight, and MeshFacetNode::weight_value.

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

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

◆ computeVertexDirect() [2/2]

bool computeVertexDirect ( Vector< double > * impvtx,
Vector< double > * impnrm,
UVMap< double > * impmap,
ArrayParam< int > * impwgt,
int impnum,
int vcount = 3 )

bool MeshFacetNode::computeVertexDirect(Vector<double>* impvtx, Vector<double>* impnrm, UVMap<double>* impmap, ArrayParam<int>* impwgt, int impnum, int vcount)

整列化(インデックス化ではない)された頂点データを直接 MeshObjectのデータとしてインポートする.
元のデータの再現性が良い.処理時間が早い.
法線ベクトルが必須.データサイズは大きくなる.

Parameters
impvtxインポートする頂点の座標データ(必須)
impnrmインポートする法線ベクトルデータ(必須)
impmapインポートする頂点のUVマップデータ(オプション)
impwgtインポートする頂点の重みデータ(オプション)
impnumインポートするデータの数
vcountポリゴンの頂点数.通常は 3
Returns
インポートに成功したかどうか.

Definition at line 318 of file MeshFacetNode.cpp.

319{
320 if (impvtx==NULL || impnrm==NULL) return false;
321
322 set(impnum, impnum/vcount, vcount);
323 if (!getm()) return false;
324
325 for (int i=0; i<num_vertex; i++) {
326 vertex_value[i] = impvtx[i];
327 normal_value[i] = impnrm[i];
328 data_index[i] = i;
329 }
330 if (impmap!=NULL) {
331 for (int i=0; i<num_vertex; i++) {
332 texcrd_value[i] = impmap[i];
333 }
334 }
335 if (impwgt!=NULL) {
336 for (int i=0; i<num_vertex; i++) {
337 weight_value[i].dup(impwgt[i]);
338 }
339 }
340
341 return true;
342}

References MeshFacetNode::data_index, ArrayParam< T >::dup(), MeshFacetNode::getm(), MeshFacetNode::normal_value, MeshFacetNode::num_vertex, MeshFacetNode::set(), MeshFacetNode::texcrd_value, MeshFacetNode::vertex_value, and MeshFacetNode::weight_value.

Here is the call graph for this function:

◆ del_nodes()

void del_nodes ( MeshFacetNode * next)

◆ delMaterialParam()

void delMaterialParam ( void )
inline

Definition at line 73 of file MeshFacetNode.h.

MaterialParam material_param
マテリアルパラメータ

References MaterialParam::clear(), and MeshFacetNode::material_param.

Referenced by MeshFacetNode::free().

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

◆ execAffineTransUVMap()

void execAffineTransUVMap ( UVMap< double > * uvmap = NULL,
int num = -1 )

Definition at line 414 of file MeshFacetNode.cpp.

415{
416 if (uvmap==NULL) uvmap = texcrd_value;
417 if (uvnum==-1) uvnum = num_texcrd;
418
419 material_param.texture.execTrans(uvmap, uvnum);
420
421 return;
422}
TextureParam texture
テクスチャ
void execTrans(UVMap< double > *uv, int n)
Rotate -> Scale -> Shift.

References TextureParam::execTrans(), MeshFacetNode::material_param, MeshFacetNode::num_texcrd, MeshFacetNode::texcrd_value, and MaterialParam::texture.

Referenced by FBXData::addShell(), OBJData::addShell(), ColladaXML::addTexcrdSource(), and GLTFData::execAffineUVMap().

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

◆ free()

void free ( void )

next 以降は freeMeshFacetList() で解放する.

Definition at line 125 of file MeshFacetNode.cpp.

126{
129 free_value();
130}
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
void delMaterialParam(void)
Buffer material_id
マテリアルを識別するID.JBXL_MATERIAL_PREFIX で始まる.

References MeshFacetNode::delMaterialParam(), free_Buffer(), MeshFacetNode::free_value(), and MeshFacetNode::material_id.

Referenced by MeshFacetNode::clear(), MeshFacetNode::computeVertexByBREP(), MeshFacetNode::computeVertexByBREP(), jbxl::freeMeshFacetNode(), MeshFacetNode::getm(), and MeshFacetNode::~MeshFacetNode().

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 133 of file MeshFacetNode.cpp.

134{
139 freeArrayParams<int>(weight_value, num_vertex);
140
141 data_index = NULL;
142 vertex_value = NULL;
143 normal_value = NULL;
144 texcrd_value = NULL;
145 weight_value = NULL;
146}
void freeNull(T &p)
Definition common++.h:37

References MeshFacetNode::data_index, jbxl::freeNull(), MeshFacetNode::normal_value, MeshFacetNode::num_vertex, MeshFacetNode::texcrd_value, MeshFacetNode::vertex_value, and MeshFacetNode::weight_value.

Referenced by MeshFacetNode::free(), and MeshFacetNode::getm().

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

◆ generatePlanarUVMap()

UVMap< double > * generatePlanarUVMap ( Vector< double > scale,
UVMap< double > * uvmap = NULL )

UVMap<double>* MeshFacetNode::generatePlanarUVMap(Vector<double> scale, UVMap<double>* uvmap)

頂点データから,各 nodeの Planar UVマップを生成する
頂点データ(vertex_value, normal_value) がインポート済みでなければならない.

Parameters
scaleオブジェクトのサイズ
uvmap生成したオブジェクトを格納する UVMapへのポインタ(サイズは num_texcrd). NULLの場合は領域を新たに確保する.
Returns
UVMap へのポインタ.サイズは num_texcrd. 失敗した場合は NULL
See also
libopenmetaverse OpenMetaverse.Rendering.Meshmerizer:MeshmerizerR.cs

Definition at line 437 of file MeshFacetNode.cpp.

438{
439 if (num_texcrd!=num_vertex) return NULL;
440
441 if (uvmap==NULL) {
442 size_t len = num_texcrd*sizeof(UVMap<double>);
443 uvmap = (UVMap<double>*)malloc(len);
444 if (uvmap==NULL) return NULL;
445 memset(uvmap, 0, len);
446 }
447
448 for (int i=0; i<num_texcrd; i++) {
449 //
450 Vector<double> binormal;
451
452 if (normal_value[i].x>=0.5 || normal_value[i].x<=-0.5) {
453 binormal.set(0.0, 1.0, 0.0);
454 if (normal_value[i].x<0.0) binormal = - binormal;
455 }
456 else {
457 binormal.set(1.0, 0.0, 0.0);
458 if (normal_value[i].y>0.0) binormal = - binormal;
459 }
460
461 Vector<double> tangent = binormal^normal_value[i];
462 Vector<double> pos(vertex_value[i].x*scale.x, vertex_value[i].y*scale.y, vertex_value[i].z*scale.z);
463
464 uvmap[i].u = 0.5 + (binormal*pos)*2.0;
465 uvmap[i].v = 0.5 - (tangent *pos)*2.0;
466 }
467
468 return uvmap;
469}
void set(T X, T Y=0, T Z=0, double N=0.0, double C=1.0, int D=0)
Definition Vector.h:110

References MeshFacetNode::normal_value, MeshFacetNode::num_texcrd, MeshFacetNode::num_vertex, Vector< T >::set(), UVMap< T >::u, UVMap< T >::v, MeshFacetNode::vertex_value, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

Referenced by FBXData::addShell(), OBJData::addShell(), ColladaXML::addTexcrdSource(), and GLTFData::execAffineUVMap().

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

◆ getm()

bool getm ( int vertex = 0,
int polygon = 0,
int vcount = 0 )

bool MeshFacetNode::getm(int vertex, int polygon, int vcount)

必要なメモリを確保する. 失敗,成功に係らず,以前のメモリは開放される.

Return values
trueメモリの確保に成功.
falseメモリの確保に失敗.
Parameters
vertex頂点の数
polygonポリゴンの数
vcount1ポリゴン当たりの頂点数(固定)

Definition at line 169 of file MeshFacetNode.cpp.

170{
171 free_value();
172
173 if (vertex >0) num_vertex = vertex;
174 if (polygon>0) num_polygon = polygon;
175 if (vcount >0) num_index = num_polygon*vcount;
176
177 if (num_vertex<=0 || num_polygon<=0) return false;
179
180 data_index = (int*)malloc(sizeof(int)*num_index);
184 weight_value = (ArrayParam<int>*)malloc(sizeof(ArrayParam<int>)*num_vertex); // option
185
186 if (data_index==NULL || vertex_value==NULL || normal_value==NULL || texcrd_value==NULL) {
187 this->free();
188 return false;
189 }
190
191 memset(data_index, 0, sizeof(int)*num_index);
192 memset(vertex_value, 0, sizeof(Vector<double>)*num_vertex);
193 memset(normal_value, 0, sizeof(Vector<double>)*num_vertex);
194 memset(texcrd_value, 0, sizeof(UVMap<double>) *num_texcrd);
195 memset(weight_value, 0, sizeof(ArrayParam<int>)*num_vertex);
196
197 return true;
198}
int num_index
頂点の延べ数.num_polygon*MeshObjectData::num_vcount (num_polygon*3)(data_index の要素数)
int num_polygon
ポリゴンの数

References MeshFacetNode::data_index, MeshFacetNode::free(), MeshFacetNode::free_value(), MeshFacetNode::normal_value, MeshFacetNode::num_index, MeshFacetNode::num_polygon, MeshFacetNode::num_texcrd, MeshFacetNode::num_vertex, MeshFacetNode::texcrd_value, MeshFacetNode::vertex_value, and MeshFacetNode::weight_value.

Referenced by MeshFacetNode::computeVertexByBREP(), MeshFacetNode::computeVertexByBREP(), MeshFacetNode::computeVertexDirect(), and MeshFacetNode::computeVertexDirect().

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

◆ getMaterialID()

void * getMaterialID ( void )
inline

Definition at line 76 of file MeshFacetNode.h.

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

References _tochar, Buffer::buf, and MeshFacetNode::material_id.

◆ init()

void init ( void )

Definition at line 17 of file MeshFacetNode.cpp.

18{
19 same_material= false;
21 facet_no = -1;
23
24 num_vertex = 0;
25 num_texcrd = 0;
26 num_polygon = 0;
27 num_index = 0;
28
29 data_index = NULL;
30 vertex_value = NULL;
31 normal_value = NULL;
32 texcrd_value = NULL;
33 weight_value = NULL;
34
35 next = NULL;
36 prev = NULL;
37}
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47
MeshFacetNode * prev
bool same_material
他の Node が既に同じマテリアルを使用している.
int facet_no
面(Polygon)番号
MeshFacetNode * next

References MeshFacetNode::data_index, MeshFacetNode::facet_no, MaterialParam::init(), init_Buffer(), MeshFacetNode::material_id, MeshFacetNode::material_param, MeshFacetNode::next, MeshFacetNode::normal_value, MeshFacetNode::num_index, MeshFacetNode::num_polygon, MeshFacetNode::num_texcrd, MeshFacetNode::num_vertex, MeshFacetNode::prev, MeshFacetNode::same_material, MeshFacetNode::texcrd_value, MeshFacetNode::vertex_value, and MeshFacetNode::weight_value.

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

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

◆ set()

void set ( int vertex,
int polygon,
int vcount = 3 )

◆ setFacetNo()

void setFacetNo ( int no)
inline

Definition at line 71 of file MeshFacetNode.h.

71{ if (no>=0) facet_no = no;}

References MeshFacetNode::facet_no.

Referenced by MeshObjectData::addData().

Here is the caller graph for this function:

◆ setMaterialID()

void setMaterialID ( const char * str)

Definition at line 72 of file MeshFacetNode.cpp.

73{
75
76 if (str!=NULL) {
77 if (!strncmp(str, JBXL_MATERIAL_PREFIX, strlen(JBXL_MATERIAL_PREFIX))) {
79 }
80 else {
81 char* texture_name = material_param.getName();
82 if (texture_name==NULL) return;
83
85 Buffer texture_id = make_Buffer_bystr(texture_name);
86 del_file_extension_Buffer(&texture_id);
87 cat_Buffer(&texture_id, &material_id);
88 free_Buffer(&texture_id);
89 //
92 }
93 }
94 //
95 else {
96 char* texture_name = material_param.getName();
97 if (texture_name==NULL) return;
98
100 Buffer texture_id = make_Buffer_bystr(texture_name);
101 del_file_extension_Buffer(&texture_id);
102 cat_Buffer(&texture_id, &material_id);
103 free_Buffer(&texture_id);
104 }
105
107 return;
108}
#define JBXL_MATERIAL_PREFIX
int cat_Buffer(Buffer *src, Buffer *dst)
Buffer変数 srcから dstへバッファを catする.
Definition buffer.cpp:384
#define make_Buffer_str(str)
set_Buffer()
Definition buffer.h:61
#define cat_s2Buffer(src, dst)
cat_b2Buffer()
Definition buffer.h:122
#define make_Buffer_bystr(str)
set_Buffer()
Definition buffer.h:57
#define TRUE
Definition common.h:226
void canonical_filename_Buffer(Buffer *fname, int no_dir)
fname の問題になりそうな ASCII文字を '_' に変換する.
Definition xtools.cpp:2057
void del_file_extension_Buffer(Buffer *path)
ファイルの拡張子を削除する.
Definition xtools.cpp:1941

References canonical_filename_Buffer(), cat_Buffer(), cat_s2Buffer, del_file_extension_Buffer(), free_Buffer(), MaterialParam::getName(), JBXL_MATERIAL_PREFIX, make_Buffer_bystr, make_Buffer_str, MeshFacetNode::material_id, MeshFacetNode::material_param, and TRUE.

Referenced by MeshObjectData::addNode(), MeshObjectData::addNode(), MeshFacetNode::setMaterialParam(), and MeshObjectData::setMaterialParam().

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

◆ setMaterialParam()

void setMaterialParam ( MaterialParam param)

Definition at line 43 of file MeshFacetNode.cpp.

44{
46 material_param.dup(mparam);
48
49 MeshFacetNode* node = prev;
50 while (node!=NULL) {
53 same_material = true;
54 return;
55 }
56 node = node->prev;
57 }
58
59 node = next;
60 while (node!=NULL) {
63 same_material = true;
64 return;
65 }
66 node = node->next;
67 }
68 return;
69}
void dup(MaterialParam m)
MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る.
void setMaterialID(const char *str)
bool isSameMaterial(MaterialParam a, MaterialParam b)
compare each texture names and colors

References _tochar, Buffer::buf, MaterialParam::dup(), MaterialParam::enable, MaterialParam::free(), jbxl::isSameMaterial(), MeshFacetNode::material_id, MeshFacetNode::material_param, MeshFacetNode::next, MeshFacetNode::prev, MeshFacetNode::same_material, and MeshFacetNode::setMaterialID().

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

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

Member Data Documentation

◆ data_index

◆ facet_no

int facet_no

◆ material_id

◆ material_param

◆ next

◆ normal_value

◆ num_index

◆ num_polygon

int num_polygon

◆ num_texcrd

◆ num_vertex

◆ prev

◆ same_material

◆ texcrd_value

◆ vertex_value

◆ weight_value


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