JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
ContourBaseData.h
Go to the documentation of this file.
1#ifndef __JBXL_CONTOUR_BASE_H_
2#define __JBXL_CONTOUR_BASE_H_
3
10#include <vector>
11#include <algorithm>
12
13#include "Vector.h"
14#include "Rotation.h"
15#include "AffineTrans.h"
16#include "buffer.h"
17
18
19namespace jbxl {
20
21
22class ContourTriIndex;
23class ContourTriData;
24class TriPolygonData;
25
26class ContourBaseData;
27
28class SkinJointData;
29
30
31typedef std::vector<Vector<double> > CONTOUR_VECTOR_ARRAY;
32typedef std::vector<Vector<float> > CONTOUR_VECTOR_ARRAY32;
33typedef std::vector<ContourTriIndex> CONTOUR_TRIINDX_ARRAY;
34typedef std::vector<ContourTriData> CONTOUR_TRIDATA_ARRAY;
35
36
37
39// Index of Triangle Polygon Data
40// ContourTriData を設定するためのインデックス
41//
42
44{
45public:
46 int v1, v2, v3; // Vertex/Weight Index
47 int n1, n2, n3; // Normal Index
48 int uv1, uv2, uv3; // UVmap Index
49
50public:
51 ContourTriIndex(int w1=0,int w2=0,int w3=0,int m1=0,int m2=0,int m3=0) { init(w1,w2,w3,m1,m2,m3);}
52 virtual ~ContourTriIndex(void) {}
53
54 void init(int w1=0,int w2=0,int w3=0,int m1=0,int m2=0,int m3=0,int u1=0,int u2=0,int u3=0) { set(w1,w2,w3,m1,m2,m3,u1,u2,u3);}
55 void set (int w1=0,int w2=0,int w3=0,int m1=0,int m2=0,int m3=0,int u1=0,int u2=0,int u3=0);
56 void mlt_set(int d1=0,int d2=0,int d3=0);
57
58public:
60 Vector<double> normal = NewellMethod<double>((*coords)[v1],(*coords)[v2],(*coords)[v3]);
61 return normal.normalize();
62 }
63
65 Vector<float> normal = NewellMethod<float>((*coords)[v1], (*coords)[v2], (*coords)[v3]);
66 return normal.normalize();
67 }
68};
69
70
72// Triangle Contour Data
73// ContourTriIndex をインデックスとした 3角ポリゴンデータ
74// ex.) tri_data.v1 = coords[tri_indx.v1];
75// 注) OpenSimulator の Prim, Sculpt Prim の解析に使用する.Weight は扱わない.
76
78{
79public:
81
85 //ArrayParam<int> w1, w2, w3;
86
87public:
88 ContourTriData(int n = 0) { init(); contourNum = n;}
89 virtual ~ContourTriData(void) { free();}
90
91 void init(void);
92 void free(void);
93
94public:
95 void execScale(double x, double y, double z);
96 void execShift(double x, double y, double z) { Vector<double> m(x, y, z); v1 = v1 + m; v2 = v2 + m; v3 = v3 + m;}
98 void ComputeTriNormal() { Vector<double> nv = NewellMethod(v1, v2, v3); nv.normalize(); n1 = n2 = n3 = nv;}
99};
100
101
103// Triangle Polygon Data
104// ContourTriData の別表現
105//
106
108{
109public:
114
119
120public:
122 virtual ~TriPolygonData(void) { free();}
123
124 void init(void);
125 void free(void);
126 void dup(TriPolygonData a);
127
128public:
129 void execScale(Vector<double> scale);
130 void execShift(Vector<double> shift);
132 void ComputeTriNormal() { Vector<double> nv = NewellMethod(vertex[0], vertex[1], vertex[2]); nv.normalize(); normal[0] = normal[1] = normal[2] = nv;}
133};
134
135
136TriPolygonData* dupTriPolygonData(TriPolygonData* data, int num);
137TriPolygonData* joinTriPolygonData(TriPolygonData*& first, int num_f, TriPolygonData*& next, int num_n);
138
139inline void freeTriPolygonData(TriPolygonData*& tridata) { if(tridata!=NULL){ tridata->free(); delete tridata; tridata = NULL;}}
140void freeTriPolygonData(TriPolygonData*& tridata, int n);
141
142
143
145// Contour Base Data (インデックス化されたデータ)
146// ContourTriIndex + ContourTriData
147//
148
150{
151public:
154 int vcount;
155
156 int* index;
161
162public:
163 ContourBaseData(int idx=0, int num=0) { init(idx, num);}
164 virtual ~ContourBaseData(void) { free();}
165
166 void init(int idx=0, int num=0);
167 void free(void);
168 bool getm(void);
169 void dup(ContourBaseData a);
170
171public:
172 void execScale(Vector<double> scale);
173 void execShift(Vector<double> shift);
175};
176
177
178inline void freeContourBaseData(ContourBaseData*& contour) { if(contour!=NULL){ contour->free(); delete contour; contour = NULL;}}
179
180
181
183// SkinJointData
184
186{
187public:
190
195
196public:
197 SkinJointData(int num=0) { init(num);}
198 virtual ~SkinJointData(void) { }
199
200 void init(int num=0);
201 void free(void);
202};
203
204
205
206} // namespace
207
208#endif
Affine変換 ライブラリ ヘッダ
回転・クォータニオン ライブラリ ヘッダ
ベクトルライブラリ for C++
Buffer型サポートヘッダ
ContourBaseData(int idx=0, int num=0)
int num_data
データ数.(vertex, normal, texcrd, weight の要素数)
virtual ~ContourBaseData(void)
void dup(ContourBaseData a)
void execRotate(Quaternion< double > quat)
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]], ... の順に並ぶ
void execScale(Vector< double > scale)
int * index
インデックスデータ
int vcount
ポリゴンの頂点数.通常は3
void execShift(Vector< double > shift)
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]], ... の順に並ぶ
void init(int idx=0, int num=0)
UVMap< double > uv3
Vector< double > n1
Vector< double > n2
Vector< double > v2
void execShift(double x, double y, double z)
Vector< double > v3
void execScale(double x, double y, double z)
UVMap< double > uv2
Vector< double > v1
void execRotate(Quaternion< double > q)
UVMap< double > uv1
virtual ~ContourTriData(void)
Vector< double > n3
virtual ~ContourTriIndex(void)
void mlt_set(int d1=0, int d2=0, int d3=0)
Vector< float > SurfaceNormal(CONTOUR_VECTOR_ARRAY32 *coords)
void init(int w1=0, int w2=0, int w3=0, int m1=0, int m2=0, int m3=0, int u1=0, int u2=0, int u3=0)
ContourTriIndex(int w1=0, int w2=0, int w3=0, int m1=0, int m2=0, int m3=0)
Vector< double > SurfaceNormal(CONTOUR_VECTOR_ARRAY *coords)
void set(int w1=0, int w2=0, int w3=0, int m1=0, int m2=0, int m3=0, int u1=0, int u2=0, int u3=0)
virtual ~SkinJointData(void)
int num_joints
Jointの数.
AffineTrans< double > bind_shape
AffineTrans< double > * alt_inverse_bind
AffineTrans< double > * inverse_bind
ArrayParam< char * > joint_names
Joint名の配列.
ArrayParam< int > weight[3]
int polygonNum
ポリゴン番号
void execRotate(Quaternion< double > quat)
Vector< double > vertex[3]
bool has_weight
配列データの場合,一番最初のデータが値を持っていれば十分である.
bool has_normal
配列データの場合,一番最初のデータが値を持っていれば十分である.
void execScale(Vector< double > scale)
bool has_texcrd
配列データの場合,一番最初のデータが値を持っていれば十分である.
void dup(TriPolygonData a)
void execShift(Vector< double > shift)
virtual ~TriPolygonData(void)
UVMap< double > texcrd[3]
Vector< double > normal[3]
Vector< T > normalize(void)
Definition Vector.h:87
Definition Brep.h:29
TriPolygonData * dupTriPolygonData(TriPolygonData *data, int num)
void freeContourBaseData(ContourBaseData *&contour)
std::vector< Vector< float > > CONTOUR_VECTOR_ARRAY32
std::vector< ContourTriData > CONTOUR_TRIDATA_ARRAY
std::vector< Vector< double > > CONTOUR_VECTOR_ARRAY
TriPolygonData * joinTriPolygonData(TriPolygonData *&first, int num_f, TriPolygonData *&next, int num_n)
Vector< T > NewellMethod(Vector< T > v1, Vector< T > v2, Vector< T > v3)
Normal Vector of 3 Vectors with Newell Mothod.
Definition Vector.h:288
void freeTriPolygonData(TriPolygonData *&tridata)
std::vector< ContourTriIndex > CONTOUR_TRIINDX_ARRAY