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

#include <ContourBaseData.h>

Collaboration diagram for TriPolygonData:

Public Member Functions

 TriPolygonData (void)
 
virtual ~TriPolygonData (void)
 
void init (void)
 
void free (void)
 
void dup (TriPolygonData a)
 
void execScale (Vector< double > scale)
 
void execShift (Vector< double > shift)
 
void execRotate (Quaternion< double > quat)
 
void ComputeTriNormal ()
 

Public Attributes

int polygonNum
 ポリゴン番号
 
bool has_normal
 配列データの場合,一番最初のデータが値を持っていれば十分である.
 
bool has_texcrd
 配列データの場合,一番最初のデータが値を持っていれば十分である.
 
bool has_weight
 配列データの場合,一番最初のデータが値を持っていれば十分である.
 
Vector< double > vertex [3]
 
Vector< double > normal [3]
 
UVMap< double > texcrd [3]
 
ArrayParam< int > weight [3]
 

Detailed Description

Definition at line 107 of file ContourBaseData.h.

Constructor & Destructor Documentation

◆ TriPolygonData()

TriPolygonData ( void )
inline

Definition at line 121 of file ContourBaseData.h.

121{ init();}

References TriPolygonData::init().

Here is the call graph for this function:

◆ ~TriPolygonData()

virtual ~TriPolygonData ( void )
inlinevirtual

Definition at line 122 of file ContourBaseData.h.

122{ free();}

References TriPolygonData::free().

Here is the call graph for this function:

Member Function Documentation

◆ ComputeTriNormal()

void ComputeTriNormal ( )
inline

Definition at line 132 of file ContourBaseData.h.

132{ Vector<double> nv = NewellMethod(vertex[0], vertex[1], vertex[2]); nv.normalize(); normal[0] = normal[1] = normal[2] = nv;}
Vector< double > vertex[3]
Vector< double > normal[3]
Vector< T > NewellMethod(Vector< T > v1, Vector< T > v2, Vector< T > v3)
Normal Vector of 3 Vectors with Newell Mothod.
Definition Vector.h:288

References jbxl::NewellMethod(), TriPolygonData::normal, Vector< T >::normalize(), and TriPolygonData::vertex.

Here is the call graph for this function:

◆ dup()

void dup ( TriPolygonData a)

< ポリゴン番号

< 配列データの場合,一番最初のデータが値を持っていれば十分である.

< 配列データの場合,一番最初のデータが値を持っていれば十分である.

< 配列データの場合,一番最初のデータが値を持っていれば十分である.

Definition at line 218 of file ContourBaseData.cpp.

219{
224 //
225 for (int i=0; i<3; i++) {
226 vertex[i] = a.vertex[i];
227 normal[i] = a.normal[i];
228 texcrd[i] = a.texcrd[i];
229 weight[i].dup(a.weight[i]);
230 }
231}
void dup(ArrayParam< T > a, bool del=true)
Definition tools++.h:138
ArrayParam< int > weight[3]
int polygonNum
ポリゴン番号
bool has_weight
配列データの場合,一番最初のデータが値を持っていれば十分である.
bool has_normal
配列データの場合,一番最初のデータが値を持っていれば十分である.
bool has_texcrd
配列データの場合,一番最初のデータが値を持っていれば十分である.
UVMap< double > texcrd[3]

References ArrayParam< T >::dup(), TriPolygonData::has_normal, TriPolygonData::has_texcrd, TriPolygonData::has_weight, TriPolygonData::normal, TriPolygonData::polygonNum, TriPolygonData::texcrd, TriPolygonData::vertex, and TriPolygonData::weight.

Referenced by jbxl::dupTriPolygonData(), and jbxl::joinTriPolygonData().

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

◆ execRotate()

void execRotate ( Quaternion< double > quat)

Definition at line 254 of file ContourBaseData.cpp.

255{
256 for (int i=0; i<3; i++) {
257 vertex[i] = VectorRotation(vertex[i], quat);
258 normal[i] = VectorRotation(normal[i], quat);
259 }
260}
Vector< T > VectorRotation(Vector< T > v, Quaternion< T > q)
Definition Rotation.h:1187

References TriPolygonData::normal, jbxl::VectorRotation(), and TriPolygonData::vertex.

Here is the call graph for this function:

◆ execScale()

void execScale ( Vector< double > scale)

Definition at line 234 of file ContourBaseData.cpp.

235{
236 for (int i=0; i<3; i++) {
237 vertex[i].x *= scale.x;
238 vertex[i].y *= scale.y;
239 vertex[i].z *= scale.z;
240 }
241}

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

◆ execShift()

void execShift ( Vector< double > shift)

Definition at line 244 of file ContourBaseData.cpp.

245{
246 for (int i=0; i<3; i++) {
247 vertex[i].x += shift.x;
248 vertex[i].y += shift.y;
249 vertex[i].z += shift.z;
250 }
251}

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

◆ free()

void free ( void )

Definition at line 209 of file ContourBaseData.cpp.

210{
211 for (int i=0; i<3; i++) {
212 weight[i].free();
213 }
214 init();
215}
void free(void)
Definition tools++.h:66

References ArrayParam< T >::free(), TriPolygonData::init(), and TriPolygonData::weight.

Referenced by jbxl::freeTriPolygonData(), jbxl::freeTriPolygonData(), and TriPolygonData::~TriPolygonData().

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

◆ init()

void init ( void )

Definition at line 193 of file ContourBaseData.cpp.

194{
195 polygonNum = -1;
196 has_normal = false;
197 has_texcrd = false;
198 has_weight = false;
199 //
200 for (int i=0; i<3; i++) {
201 vertex[i].init();
202 normal[i].init();
203 texcrd[i].init();
204 weight[i].init();
205 }
206}
void init(int n=0)
Definition tools++.h:51
void init(void)
Definition Vector.h:610
void init(double C=1.0)
Definition Vector.h:74

References TriPolygonData::has_normal, TriPolygonData::has_texcrd, TriPolygonData::has_weight, Vector< T >::init(), ArrayParam< T >::init(), UVMap< T >::init(), TriPolygonData::normal, TriPolygonData::polygonNum, TriPolygonData::texcrd, TriPolygonData::vertex, and TriPolygonData::weight.

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

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

Member Data Documentation

◆ has_normal

bool has_normal

Definition at line 111 of file ContourBaseData.h.

Referenced by TriPolygonData::dup(), and TriPolygonData::init().

◆ has_texcrd

bool has_texcrd

Definition at line 112 of file ContourBaseData.h.

Referenced by TriPolygonData::dup(), and TriPolygonData::init().

◆ has_weight

bool has_weight

Definition at line 113 of file ContourBaseData.h.

Referenced by TriPolygonData::dup(), and TriPolygonData::init().

◆ normal

◆ polygonNum

int polygonNum

◆ texcrd

UVMap<double> texcrd[3]

◆ vertex

◆ weight

ArrayParam<int> weight[3]

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