JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
MeshFacetNode.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_MESHFACETNODE_H_
2#define __JBXL_CPP_MESHFACETNODE_H_
3
4#include "tools++.h"
5#include "txml.h"
6
7#include "TriBrep.h"
8#include "Rotation.h"
9#include "AffineTrans.h"
10#include "ContourBaseData.h"
11#include "MaterialParam.h"
12
13
14namespace jbxl {
15
16
17//#define JBXL_MATERIALID_RAND_LEN 8
18#define JBXL_MATERIAL_PREFIX "#MATERIAL_"
19
20
22// MeshFacetNode: for Facet Data
23//
24
34{
35public:
39
41
46
52
55
56public:
57 MeshFacetNode(void) { init();}
58 virtual ~MeshFacetNode(void) { free();}
59
60 void init(void);
61 void free(void);
62// void free_all(void);
63 void free_value(void);
65 void clear(void);
66
67 void set (int vertex, int polygon, int vcount=3);
68 bool getm(int vertex=0, int polygon=0, int vcount=0);
69
70 //
71 void setFacetNo(int no) { if (no>=0) facet_no = no;}
74
75 void setMaterialID(const char* str);
76 void* getMaterialID(void) { return _tochar(material_id.buf);}
77
78 void execAffineTransUVMap(UVMap<double>* uvmap=NULL, int num=-1);
80
81public:
82 bool computeVertexDirect(ContourBaseData* facetdata);
83 bool computeVertexByBREP(ContourBaseData* facetdata);
84 bool computeVertexDirect(Vector<double>* vtx, Vector<double>* nml, UVMap<double>* map, ArrayParam<int>* wgt, int num, int vcount=3);
85 bool computeVertexByBREP(Vector<double>* vtx, Vector<double>* nml, UVMap<double>* map, ArrayParam<int>* wgt, int num, int vcount=3);
86};
87
88
89inline void freeMeshFacetNode(MeshFacetNode*& node) { if(node!=NULL) { node->free(); delete node; node=NULL;} }
90void freeMeshFacetList(MeshFacetNode*& node);
91
92MeshFacetNode* DelMeshFacetNode(MeshFacetNode* node);
93MeshFacetNode* AddMeshFacetNode(MeshFacetNode* list, MeshFacetNode* node);
94
95
96} // namespace
97
98#endif
99
Affine変換 ライブラリ ヘッダ
回転・クォータニオン ライブラリ ヘッダ
三角Contour(Facet)用ライブラリ ヘッダ for BREP
MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る.
MeshFacetNode * prev
MaterialParam material_param
マテリアルパラメータ
void del_nodes(MeshFacetNode *next)
Vector< double > * normal_value
法線ベクトルデータの並び.要素数は num_vertex
bool same_material
他の Node が既に同じマテリアルを使用している.
bool computeVertexByBREP(ContourBaseData *facetdata)
void delMaterialParam(void)
int facet_no
面(Polygon)番号
int num_texcrd
テクスチャ画像の座標数.通常は num_vertex に等しい.(texcrd_value の要素数)
void setFacetNo(int no)
int num_index
頂点の延べ数.num_polygon*MeshObjectData::num_vcount (num_polygon*3)(data_index の要素数)
void execAffineTransUVMap(UVMap< double > *uvmap=NULL, int num=-1)
ArrayParam< int > * weight_value
頂点の重み.Jointを持つデータに使用される.要素数は num_vertex. 各 weight_value[i] の値は トータルで正規化される必要がある.
int num_polygon
ポリゴンの数
bool computeVertexDirect(ContourBaseData *facetdata)
int * data_index
インデックスデータ.要素数は num_index
UVMap< double > * texcrd_value
テクスチャマップの並び.要素数は num_texcrd
bool getm(int vertex=0, int polygon=0, int vcount=0)
メモリの確保
MeshFacetNode * next
void set(int vertex, int polygon, int vcount=3)
void setMaterialID(const char *str)
virtual ~MeshFacetNode(void)
void * getMaterialID(void)
UVMap< double > * generatePlanarUVMap(Vector< double > scale, UVMap< double > *uvmap=NULL)
Buffer material_id
マテリアルを識別するID.JBXL_MATERIAL_PREFIX で始まる.
int num_vertex
頂点のデータ数.(vertex_value, normal_value の要素数)
Vector< double > * vertex_value
頂点データの並び.要素数は num_vertex
void setMaterialParam(MaterialParam param)
ノードにマテリアルパラメータを設定し,他のノードに同じマテリアルが存在するかチャックする.
Definition Brep.h:29
void freeMeshFacetList(MeshFacetNode *&node)
MeshFacetNode * DelMeshFacetNode(MeshFacetNode *node)
void freeMeshFacetNode(MeshFacetNode *&node)
MeshFacetNode * AddMeshFacetNode(MeshFacetNode *list, MeshFacetNode *node)
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39
ツールライブラリ ヘッダ for C++
#define _tochar(a)
Definition tools.h:207
Tiny XML ライブラリヘッダ