JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Vector< T > Class Template Reference

#include <Vector.h>

Inheritance diagram for Vector< T >:

Public Member Functions

 Vector (T X=0, T Y=0, T Z=0, double N=0.0, double C=1.0, int D=0)
 
virtual ~Vector (void)
 
norm2 (void)
 
double norm (void)
 
Vector< T > normalize (void)
 
void init (double C=1.0)
 
void set (T X, T Y=0, T Z=0, double N=0.0, double C=1.0, int D=0)
 
T & element1 (void)
 
T & element2 (void)
 
T & element3 (void)
 
T & element (int i)
 
template<typename R >
Vector< T > & operator= (const Vector< R > a)
 

Public Attributes

x
 
y
 
z
 
double n
 ノルム
 
double c
 信頼度
 
int d
 汎用
 

Detailed Description

template<typename T = double>
class jbxl::Vector< T >

template <typename T=double>> class Vector

3次元ベクトルの定義

Definition at line 55 of file Vector.h.

Constructor & Destructor Documentation

◆ Vector()

template<typename T = double>
Vector ( T X = 0,
T Y = 0,
T Z = 0,
double N = 0.0,
double C = 1.0,
int D = 0 )
inline

Definition at line 67 of file Vector.h.

67{ set(X, Y, Z, N, C, D);}
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

◆ ~Vector()

template<typename T = double>
virtual ~Vector ( void )
inlinevirtual

Definition at line 68 of file Vector.h.

68{}

Member Function Documentation

◆ element()

template<typename T = double>
T & element ( int i)
inline

Definition at line 81 of file Vector.h.

81{ if(i==1) return x; else if(i==2) return y; else if(i==3) return z; else return x;}

◆ element1()

◆ element2()

◆ element3()

◆ init()

template<typename T = double>
void init ( double C = 1.0)
inline

Definition at line 74 of file Vector.h.

74{ x = y = z = (T)0; n = 0.0; c = C; d = 0;}
double c
信頼度
Definition Vector.h:63
int d
汎用
Definition Vector.h:64
double n
ノルム
Definition Vector.h:62

Referenced by ContourTriData::init(), TriPolygonData::init(), and AffineTrans< T >::initShift().

Here is the caller graph for this function:

◆ norm()

template<typename T = double>
double norm ( void )
inline

Definition at line 71 of file Vector.h.

71{ n = (double)sqrt(x*x + y*y + z*z); return n;}

Referenced by jbxl::CollisionTriContour2D(), BREP_CONTOUR::ComputeDirectRS(), jbxl::MSGraph_Pool(), jbxl::V2VQuaternion(), and jbxl::VectorDist().

Here is the caller graph for this function:

◆ norm2()

template<typename T = double>
T norm2 ( void )
inline

Definition at line 70 of file Vector.h.

70{ return (x*x + y*y + z*z);}

Referenced by jbxl::FillShortageWings_Near(), and jbxl::operator/().

Here is the caller graph for this function:

◆ normalize()

template<typename T >
Vector< T > normalize ( void )

Definition at line 87 of file Vector.h.

88{
89 double nrm = (double)sqrt(x*x + y*y + z*z);
90
91 if (nrm>=Zero_Eps) {
92 x = (T)(x/nrm);
93 y = (T)(y/nrm);
94 z = (T)(z/nrm);
95 n = 1.0;
96 }
97 else {
98 init();
99 }
100
101 return *this;
102}
void init(double C=1.0)
Definition Vector.h:74
double Zero_Eps
1に対して 0とするトレランス
Definition Tolerance.cpp:26

References jbxl::Zero_Eps.

Referenced by BREP_CONTOUR::ComputeNormal(), BREP_VERTEX::ComputeNormal(), ContourTriData::ComputeTriNormal(), TriPolygonData::ComputeTriNormal(), Quaternion< T >::setRotation(), jbxl::SlerpQuaternion(), ContourTriIndex::SurfaceNormal(), ContourTriIndex::SurfaceNormal(), jbxl::ToPola(), jbxl::V2VQuaternion(), and jbxl::VectorAngle().

Here is the caller graph for this function:

◆ operator=()

template<typename T = double>
template<typename R >
Vector< T > & operator= ( const Vector< R > a)
inline

Definition at line 83 of file Vector.h.

83{ x=(T)a.x; y=(T)a.y; z=(T)a.z; n=a.n; c=a.c; d=a.d; return *this;}

References Vector< T >::c, Vector< T >::d, Vector< T >::n, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

◆ set()

template<typename T >
void set ( T X,
T Y = 0,
T Z = 0,
double N = 0.0,
double C = 1.0,
int D = 0 )
inline

template <typename T> void Vector<T>::set(T X, T Y, T Z, double N)

3次元ベクトルに値をセット.

Definition at line 110 of file Vector.h.

111{
112 x = X;
113 y = Y;
114 z = Z;
115 n = N;
116 c = C;
117 d = D;
118
119 if (n<=0.0) {
120 n = (double)sqrt(x*x + y*y + z*z);
121 }
122}

Referenced by MeshFacetNode::generatePlanarUVMap(), CBVHTool::getPosData(), AffineTrans< T >::initScale(), jbxl::MSGraph_Pool(), jbxl::MSGraph_Torus(), jbxl::RotMatrixElements2ExtEulerXYZ(), jbxl::RotMatrixElements2ExtEulerXZY(), jbxl::RotMatrixElements2ExtEulerYXZ(), jbxl::RotMatrixElements2ExtEulerYZX(), jbxl::RotMatrixElements2ExtEulerZXY(), jbxl::RotMatrixElements2ExtEulerZYX(), PCoordinate< T >::set(), TVector< T >::set(), AffineTrans< T >::setScale(), and AffineTrans< T >::setShift().

Here is the caller graph for this function:

Member Data Documentation

◆ c

◆ d

◆ n

◆ x

template<typename T = double>
T x

Definition at line 58 of file Vector.h.

Referenced by ColladaXML::addController(), AffineTrans< T >::addScale(), ColladaXML::addScene(), AffineTrans< T >::addShift(), GLTFData::addSkeletonNodes(), ColladaXML::addWeightSource(), jbxl::Cast(), jbxl::CompareVertex(), BREP_CONTOUR::ComputeNormal(), BREP_VERTEX::ComputeTolerance(), GLTFData::createBinDataAoS(), GLTFData::createBinDataSeqAoS(), GLTFData::createBinDataSeqSoA(), GLTFData::createBinDataSoA(), jbxl::CreateTriSolidFromSTL(), RBound< T >::cutdown(), jbxl::dgree_circle_MSGraph(), AffineTrans< T >::execInvScale(), AffineTrans< T >::execInvShift(), AffineTrans< T >::execMatrixTrans(), ContourTriData::execScale(), TriPolygonData::execScale(), ContourBaseData::execScale(), AffineTrans< T >::execScale(), TriPolygonData::execShift(), ContourBaseData::execShift(), AffineTrans< T >::execShift(), RBound< T >::fusion(), MeshFacetNode::generatePlanarUVMap(), GLTFData::getFacetMinMax(), CBVHTool::getPosData(), CBVHTool::getPosOffset(), AffineTrans< T >::getScaleX(), AffineTrans< T >::getShiftX(), AffineTrans< T >::isNormal(), jbxl::Local2World(), jbxl::MSGraph_Sphere(), jbxl::NewellMethod(), jbxl::NewellMethod4(), jbxl::object_feature_MSGraph(), jbxl::operator!=(), jbxl::operator!=(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator/(), jbxl::operator/(), jbxl::operator/(), jbxl::operator/(), jbxl::operator<(), Vector< T >::operator=(), jbxl::operator==(), jbxl::operator==(), jbxl::operator^(), jbxl::operator^(), RBound< T >::outofBounds(), OBJData::output_mtl(), OBJData::output_obj(), jbxl::println_FacetAsciiSTL(), jbxl::RotMatrixElements2ExtEulerXYZ(), jbxl::RotMatrixElements2ExtEulerXZY(), jbxl::RotMatrixElements2ExtEulerYXZ(), jbxl::RotMatrixElements2ExtEulerYZX(), jbxl::RotMatrixElements2ExtEulerZXY(), jbxl::RotMatrixElements2ExtEulerZYX(), jbxl::same_vector(), Quaternion< T >::setRotation(), jbxl::ToPola(), jbxl::V2VQuaternion(), jbxl::VectorInvRotation(), jbxl::VectorRotation(), jbxl::Vertex2TVector(), jbxl::wCircle3D(), jbxl::writeSTLFileA(), jbxl::writeSTLFileA(), jbxl::writeSTLFileB(), and jbxl::writeSTLFileB().

◆ y

template<typename T = double>
T y

Definition at line 59 of file Vector.h.

Referenced by AffineTrans< T >::addScale(), ColladaXML::addScene(), AffineTrans< T >::addShift(), GLTFData::addSkeletonNodes(), ColladaXML::addWeightSource(), jbxl::Cast(), jbxl::CompareVertex(), BREP_CONTOUR::ComputeNormal(), BREP_VERTEX::ComputeTolerance(), GLTFData::createBinDataAoS(), GLTFData::createBinDataSeqAoS(), GLTFData::createBinDataSeqSoA(), GLTFData::createBinDataSoA(), jbxl::CreateTriSolidFromSTL(), RBound< T >::cutdown(), jbxl::dgree_circle_MSGraph(), AffineTrans< T >::execInvScale(), AffineTrans< T >::execInvShift(), AffineTrans< T >::execMatrixTrans(), ContourTriData::execScale(), TriPolygonData::execScale(), ContourBaseData::execScale(), AffineTrans< T >::execScale(), TriPolygonData::execShift(), ContourBaseData::execShift(), AffineTrans< T >::execShift(), RBound< T >::fusion(), MeshFacetNode::generatePlanarUVMap(), GLTFData::getFacetMinMax(), CBVHTool::getPosData(), CBVHTool::getPosOffset(), AffineTrans< T >::getScaleY(), AffineTrans< T >::getShiftY(), AffineTrans< T >::isNormal(), jbxl::Local2World(), jbxl::MSGraph_Sphere(), jbxl::NewellMethod(), jbxl::NewellMethod4(), jbxl::operator!=(), jbxl::operator!=(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator/(), jbxl::operator/(), jbxl::operator/(), jbxl::operator/(), jbxl::operator<(), Vector< T >::operator=(), jbxl::operator==(), jbxl::operator==(), jbxl::operator^(), jbxl::operator^(), RBound< T >::outofBounds(), OBJData::output_mtl(), OBJData::output_obj(), jbxl::println_FacetAsciiSTL(), jbxl::RotMatrixElements2ExtEulerXYZ(), jbxl::RotMatrixElements2ExtEulerXZY(), jbxl::RotMatrixElements2ExtEulerYXZ(), jbxl::RotMatrixElements2ExtEulerYZX(), jbxl::RotMatrixElements2ExtEulerZXY(), jbxl::RotMatrixElements2ExtEulerZYX(), jbxl::same_vector(), Quaternion< T >::setRotation(), jbxl::ToPola(), jbxl::V2VQuaternion(), jbxl::VectorInvRotation(), jbxl::VectorRotation(), jbxl::Vertex2TVector(), jbxl::wCircle3D(), jbxl::writeSTLFileA(), jbxl::writeSTLFileA(), jbxl::writeSTLFileB(), and jbxl::writeSTLFileB().

◆ z

template<typename T = double>
T z

Definition at line 60 of file Vector.h.

Referenced by AffineTrans< T >::addScale(), ColladaXML::addScene(), AffineTrans< T >::addShift(), GLTFData::addSkeletonNodes(), ColladaXML::addWeightSource(), jbxl::Cast(), jbxl::CompareVertex(), BREP_CONTOUR::ComputeNormal(), BREP_VERTEX::ComputeTolerance(), GLTFData::createBinDataAoS(), GLTFData::createBinDataSeqAoS(), GLTFData::createBinDataSeqSoA(), GLTFData::createBinDataSoA(), jbxl::CreateTriSolidFromSTL(), RBound< T >::cutdown(), jbxl::dgree_circle_MSGraph(), AffineTrans< T >::execInvScale(), AffineTrans< T >::execInvShift(), AffineTrans< T >::execMatrixTrans(), ContourTriData::execScale(), TriPolygonData::execScale(), ContourBaseData::execScale(), AffineTrans< T >::execScale(), TriPolygonData::execShift(), ContourBaseData::execShift(), AffineTrans< T >::execShift(), RBound< T >::fusion(), MeshFacetNode::generatePlanarUVMap(), GLTFData::getFacetMinMax(), CBVHTool::getPosData(), CBVHTool::getPosOffset(), AffineTrans< T >::getScaleZ(), AffineTrans< T >::getShiftZ(), AffineTrans< T >::isNormal(), jbxl::Local2World(), jbxl::MSGraph_Sphere(), jbxl::NewellMethod(), jbxl::NewellMethod4(), jbxl::operator!=(), jbxl::operator!=(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator*(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator+(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator-(), jbxl::operator/(), jbxl::operator/(), jbxl::operator/(), jbxl::operator/(), jbxl::operator<(), Vector< T >::operator=(), jbxl::operator==(), jbxl::operator==(), jbxl::operator^(), jbxl::operator^(), RBound< T >::outofBounds(), OBJData::output_mtl(), OBJData::output_obj(), jbxl::println_FacetAsciiSTL(), jbxl::RotMatrixElements2ExtEulerXYZ(), jbxl::RotMatrixElements2ExtEulerXZY(), jbxl::RotMatrixElements2ExtEulerYXZ(), jbxl::RotMatrixElements2ExtEulerYZX(), jbxl::RotMatrixElements2ExtEulerZXY(), jbxl::RotMatrixElements2ExtEulerZYX(), jbxl::same_vector(), Quaternion< T >::setRotation(), jbxl::ToPola(), jbxl::V2VQuaternion(), jbxl::VectorInvRotation(), jbxl::VectorRotation(), jbxl::Vertex2TVector(), jbxl::wCircle3D(), jbxl::writeSTLFileA(), jbxl::writeSTLFileA(), jbxl::writeSTLFileB(), and jbxl::writeSTLFileB().


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