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

#include <ContourBaseData.h>

Collaboration diagram for ContourTriData:

Public Member Functions

 ContourTriData (int n=0)
 
virtual ~ContourTriData (void)
 
void init (void)
 
void free (void)
 
void execScale (double x, double y, double z)
 
void execShift (double x, double y, double z)
 
void execRotate (Quaternion< double > q)
 
void ComputeTriNormal ()
 

Public Attributes

int contourNum
 
Vector< double > v1
 
Vector< double > v2
 
Vector< double > v3
 
Vector< double > n1
 
Vector< double > n2
 
Vector< double > n3
 
UVMap< double > uv1
 
UVMap< double > uv2
 
UVMap< double > uv3
 

Detailed Description

Definition at line 77 of file ContourBaseData.h.

Constructor & Destructor Documentation

◆ ContourTriData()

ContourTriData ( int n = 0)
inline

Definition at line 88 of file ContourBaseData.h.

References ContourTriData::contourNum, and ContourTriData::init().

Here is the call graph for this function:

◆ ~ContourTriData()

virtual ~ContourTriData ( void )
inlinevirtual

Definition at line 89 of file ContourBaseData.h.

89{ free();}

References ContourTriData::free().

Here is the call graph for this function:

Member Function Documentation

◆ ComputeTriNormal()

void ComputeTriNormal ( )
inline

Definition at line 98 of file ContourBaseData.h.

98{ Vector<double> nv = NewellMethod(v1, v2, v3); nv.normalize(); n1 = n2 = n3 = nv;}
Vector< double > n1
Vector< double > n2
Vector< double > v2
Vector< double > v3
Vector< double > v1
Vector< double > n3
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 ContourTriData::n1, ContourTriData::n2, ContourTriData::n3, jbxl::NewellMethod(), Vector< T >::normalize(), ContourTriData::v1, ContourTriData::v2, and ContourTriData::v3.

Here is the call graph for this function:

◆ execRotate()

void execRotate ( Quaternion< double > q)

Definition at line 75 of file ContourBaseData.cpp.

76{
77 v1 = q.execRotation(v1);
78 v2 = q.execRotation(v2);
79 v3 = q.execRotation(v3);
80 n1 = q.execRotation(n1);
81 n2 = q.execRotation(n2);
82 n3 = q.execRotation(n3);
83}
Vector< T > execRotation(Vector< T > v)
Exec Rotation qv(~q)
Definition Rotation.h:466

References Quaternion< T >::execRotation(), ContourTriData::n1, ContourTriData::n2, ContourTriData::n3, ContourTriData::v1, ContourTriData::v2, and ContourTriData::v3.

Here is the call graph for this function:

◆ execScale()

void execScale ( double x,
double y,
double z )

Definition at line 61 of file ContourBaseData.cpp.

62{
63 v1.x *= x;
64 v1.y *= y;
65 v1.z *= z;
66 v2.x *= x;
67 v2.y *= y;
68 v2.z *= z;
69 v3.x *= x;
70 v3.y *= y;
71 v3.z *= z;
72}

References ContourTriData::v1, ContourTriData::v2, ContourTriData::v3, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ execShift()

void execShift ( double x,
double y,
double z )
inline

Definition at line 96 of file ContourBaseData.h.

96{ Vector<double> m(x, y, z); v1 = v1 + m; v2 = v2 + m; v3 = v3 + m;}

References ContourTriData::v1, ContourTriData::v2, and ContourTriData::v3.

◆ free()

void free ( void )

Definition at line 51 of file ContourBaseData.cpp.

52{
53 contourNum = 0;
54
55 //w1.free();
56 //w2.free();
57 //w3.free();
58}

References ContourTriData::contourNum.

Referenced by ContourTriData::~ContourTriData().

Here is the caller graph for this function:

◆ init()

void init ( void )

Definition at line 32 of file ContourBaseData.cpp.

33{
34 contourNum = 0;
35
36 v1.init();
37 v2.init();
38 v3.init();
39 n1.init();
40 n2.init();
41 n3.init();
42 uv1.init();
43 uv2.init();
44 uv3.init();
45 //w1.init();
46 //w2.init();
47 //w3.init();
48}
UVMap< double > uv3
UVMap< double > uv2
UVMap< double > uv1
void init(void)
Definition Vector.h:610
void init(double C=1.0)
Definition Vector.h:74

References ContourTriData::contourNum, Vector< T >::init(), UVMap< T >::init(), ContourTriData::n1, ContourTriData::n2, ContourTriData::n3, ContourTriData::uv1, ContourTriData::uv2, ContourTriData::uv3, ContourTriData::v1, ContourTriData::v2, and ContourTriData::v3.

Referenced by ContourTriData::ContourTriData().

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

Member Data Documentation

◆ contourNum

int contourNum

◆ n1

◆ n2

◆ n3

◆ uv1

UVMap<double> uv1

Definition at line 84 of file ContourBaseData.h.

Referenced by ContourTriData::init().

◆ uv2

UVMap<double> uv2

Definition at line 84 of file ContourBaseData.h.

Referenced by ContourTriData::init().

◆ uv3

UVMap<double> uv3

Definition at line 84 of file ContourBaseData.h.

Referenced by ContourTriData::init().

◆ v1

◆ v2

◆ v3


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