|
| | fk_Curve (void) |
| | コンストラクタ
|
| |
| virtual | ~fk_Curve () |
| | デストラクタ
|
| |
| virtual void | init (void) |
| | 初期化用関数
|
| |
| virtual bool | setCtrl (int ID, fk_Vector pos) |
| | 制御点設定関数2
|
| |
| virtual bool | setWeight (int ID, double w) |
| | 制御点重み値設定関数
|
| |
| fk_Vector | getCtrl (int ID) |
| | 制御点位置取得関数
|
| |
| double | getWeight (int ID) |
| | 制御点重み値取得関数
|
| |
| int | getCtrlSize (void) |
| | 制御点数取得関数
|
| |
| void | setDiv (int num) |
| | 分割数設定関数
|
| |
| int | getDiv (void) |
| | 分割数取得関数
|
| |
| virtual fk_Vector | pos (double t)=0 |
| | 曲線点位置ベクトル算出関数
|
| |
| virtual fk_Vector | diff (double t)=0 |
| | 曲線微分ベクトル算出関数
|
| |
| | fk_Shape (fk_Type=fk_Type::SHAPE) |
| | コンストラクタ
|
| |
| virtual | ~fk_Shape () |
| | デストラクタ
|
| |
| fk_RealShapeType | getRealShapeType (void) |
| | 形状データ構造取得関数
|
| |
| void | setShaderAttribute (std::string name, int dim, std::vector< int > *array, bool self=false) |
| | シェーダー内 attribute 変数設定関数1
|
| |
| void | setShaderAttribute (std::string name, int dim, std::vector< float > *array, bool self=false) |
| | シェーダー内 attribute 変数設定関数2
|
| |
| void | setShaderAttribute (std::string name, int dim, std::vector< fk_Vector > *array) |
| | シェーダー内 attribute 変数設定関数3
|
| |
| void | setShaderAttribute (std::string name, int dim, std::vector< fk_TexCoord > *array) |
| | シェーダー内 attribute 変数設定関数4
|
| |
| void | setShaderAttribute (std::string name, int dim, std::vector< fk_HVector > *array) |
| | シェーダー内 attribute 変数設定関数5
|
| |
| void | modifyAttribute (std::string name) |
| | attribute 変数更新関数
|
| |
| | fk_Attribute (void) |
| | コンストラクタ
|
| |
| virtual | ~fk_Attribute () |
| | デストラクタ
|
| |
| bool | setAttrII (const int key, const int value) |
| | キーが int 型、値が int 型である属性設定関数
|
| |
| bool | setAttrID (const int key, const double value) |
| | キーが int 型、値が double 型である属性設定関数
|
| |
| bool | setAttrIS (const int key, const std::string value) |
| | キーが int 型、値が std::string 型である属性設定関数
|
| |
| bool | setAttrSI (const std::string key, const int value) |
| | キーが std::string 型、値が int 型である属性設定関数
|
| |
| bool | setAttrSD (const std::string key, const double value) |
| | キーが std::string 型、値が double 型である属性設定関数
|
| |
| bool | setAttrSS (const std::string key, const std::string value) |
| | キーが std::string 型、値が std::string 型である属性設定関数
|
| |
| int | getAttrII (const int key) const |
| | キーが int 型、値が int 型である属性参照関数
|
| |
| double | getAttrID (const int key) const |
| | キーが int 型、値が double 型である属性参照関数
|
| |
| std::string | getAttrIS (const int key) const |
| | キーが int 型、値が std::string 型である属性参照関数
|
| |
| int | getAttrSI (const std::string key) const |
| | キーが std::string 型、値が int 型である属性参照関数
|
| |
| double | getAttrSD (const std::string key) const |
| | キーが std::string 型、値が double 型である属性参照関数
|
| |
| std::string | getAttrSS (const std::string key) const |
| | キーが std::string 型、値が std::string 型である属性参照関数
|
| |
| bool | existAttrII (const int key) const |
| | キーが int 型、値が int 型である属性存在参照関数
|
| |
| bool | existAttrID (const int key) const |
| | キーが int 型、値が double 型である属性存在参照関数
|
| |
| bool | existAttrIS (const int key) const |
| | キーが int 型、値が std::string 型である属性存在参照関数
|
| |
| bool | existAttrSI (const std::string key) const |
| | キーが std::string 型、値が int 型である属性存在参照関数
|
| |
| bool | existAttrSD (const std::string key) const |
| | キーが std::string 型、値が double 型である属性存在参照関数
|
| |
| bool | existAttrSS (const std::string key) const |
| | キーが std::string 型、値が std::string 型である属性存在参照関数
|
| |
| bool | deleteAttrII (const int key) |
| | キーが int 型、値が int 型である属性消去関数
|
| |
| bool | deleteAttrID (const int key) |
| | キーが int 型、値が double 型である属性消去関数
|
| |
| bool | deleteAttrIS (const int key) |
| | キーが int 型、値が std::string 型である属性消去関数
|
| |
| bool | deleteAttrSI (const std::string key) |
| | キーが std::string 型、値が int 型である属性消去関数
|
| |
| bool | deleteAttrSD (const std::string key) |
| | キーが std::string 型、値が double 型である属性消去関数
|
| |
| bool | deleteAttrSS (const std::string key) |
| | キーが std::string 型、値が std::string 型である属性消去関数
|
| |
| | fk_BaseObject (fk_Type type=fk_Type::BASEOBJECT) |
| | コンストラクタ
|
| |
| fk_Type | getObjectType (void) const |
| | タイプ取得関数
|
| |
曲線用純粋仮想クラス
このクラスは、自由曲線用のクラスです。 fk_BezCurve と fk_BSplCurve はこのクラスを継承しています。 自由曲線は、以下の条件を満たす必要があります。
- パラメータ空間が [0, 1] である。
- パラメータ空間中のあらゆるパラメータで曲線上の点を算出できる。
- パラメータ空間中のあらゆるパラメータで曲線上の微分ベクトルを算出できる。
- 参照
- fk_BezCurve, fk_BSplCurve, fk_Surface