Public Member Functions | Public Attributes

fbxVectorTemplate3< T > Class Template Reference

This reference page is linked to from the following overview topics: List of Python FBX classes.


Search for all occurrences

Detailed Description

template<class T>
class fbxVectorTemplate3< T >

Examples:

ExportDocument/main.cxx, ExportScene02/main.cxx, ExportScene03/main.cxx, ExportScene04/main.cxx, ImportScene/DisplayCamera.cxx, ImportScene/DisplayGenericInfo.cxx, ImportScene/DisplayLight.cxx, ImportScene/DisplayMarker.cxx, ImportScene/DisplayMaterial.cxx, ImportScene/DisplayUserProperties.cxx, SwitchBinding/main.cxx, UIExamples/CubeCreator/SDK_Utility.cxx, and ViewScene/Texture.cxx.

Definition at line 131 of file kfbxtypes.h.

#include <kfbxtypes.h>

List of all members.

Public Member Functions

  fbxVectorTemplate3 ()
  fbxVectorTemplate3 (T pValue)
  fbxVectorTemplate3 (T pData0, T pData1, T pData2)
  ~fbxVectorTemplate3 ()
T &  operator[] (int pIndex)
T const &  operator[] (int pIndex) const
fbxVectorTemplate3< T > &  operator= (T const &pValue)
fbxVectorTemplate3< T > &  operator= (const fbxVectorTemplate3< T > &pRHS)
bool  operator== (fbxVectorTemplate3< T > const &pRHS) const
bool  operator!= (fbxVectorTemplate3< T > const &pRHS) const
T *  Buffer ()
T const *  Buffer () const

Public Attributes

mData [3]

Constructor & Destructor Documentation

fbxVectorTemplate3 ( ) [inline]

Definition at line 133 of file kfbxtypes.h.

{ *this = T(0);  }
fbxVectorTemplate3 ( pValue ) [inline, explicit]

Definition at line 134 of file kfbxtypes.h.

{ *this = pValue;  }
fbxVectorTemplate3 ( pData0,
pData1,
pData2 
) [inline]

Definition at line 135 of file kfbxtypes.h.

{ mData[0] = pData0; mData[1] = pData1; mData[2] = pData2;  }
~fbxVectorTemplate3 ( ) [inline]

Definition at line 136 of file kfbxtypes.h.

{}

Member Function Documentation

T& operator[] ( int  pIndex ) [inline]

Definition at line 138 of file kfbxtypes.h.

{ return mData[pIndex]; }
T const& operator[] ( int  pIndex ) const [inline]

Definition at line 139 of file kfbxtypes.h.

{ return mData[pIndex]; }
fbxVectorTemplate3<T>& operator= ( T const &  pValue ) [inline]

Definition at line 140 of file kfbxtypes.h.

{ mData[0] = pValue; mData[1] = pValue; mData[2] = pValue; return *this; }
fbxVectorTemplate3<T>& operator= ( const fbxVectorTemplate3< T > &  pRHS ) [inline]

Definition at line 141 of file kfbxtypes.h.

{ mData[0] = pRHS.mData[0]; mData[1] = pRHS.mData[1]; mData[2] = pRHS.mData[2]; return *this; }
bool operator== ( fbxVectorTemplate3< T > const &  pRHS ) const [inline]

Definition at line 142 of file kfbxtypes.h.

{ return ((mData[0] == pRHS.mData[0]) && (mData[1] == pRHS.mData[1]) && (mData[2] == pRHS.mData[2])); }
bool operator!= ( fbxVectorTemplate3< T > const &  pRHS ) const [inline]

Definition at line 143 of file kfbxtypes.h.

{ return !operator==(pRHS); }
T* Buffer ( ) [inline]

Definition at line 145 of file kfbxtypes.h.

{ return mData; }
T const* Buffer ( ) const [inline]

Definition at line 146 of file kfbxtypes.h.

{ return mData; }

Member Data Documentation

T mData[3]

Definition at line 149 of file kfbxtypes.h.


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