Win32 API 日本語リファレンス
ホームGraphics.DirectComposition › IDCompositionSkewTransform

IDCompositionSkewTransform

COM
IIDe57aa735-dcdb-4c72-9c61-0591f58889ee継承元IDCompositionTransform自前メソッド開始 vtbl3

メソッド 8

vtbl = vtable インデックス(0始まり)。HSP等からCOMメソッドをインデックス指定で呼ぶ際に使用します。0〜2 は IUnknown。

vtbl 3 HRESULT SetAngleX(IDCompositionAnimation* animation)
animationIDCompositionAnimation*inX方向せん断角を駆動するアニメーションへのポインタ。
vtbl 4 HRESULT SetAngleX(FLOAT angleX)
angleXFLOATinX方向のせん断角度(度)。
vtbl 5 HRESULT SetAngleY(IDCompositionAnimation* animation)
animationIDCompositionAnimation*inY方向せん断角を駆動するアニメーションへのポインタ。
vtbl 6 HRESULT SetAngleY(FLOAT angleY)
angleYFLOATinY方向のせん断角度(度)。
vtbl 7 HRESULT SetCenterX(IDCompositionAnimation* animation)
animationIDCompositionAnimation*inせん断中心X座標を駆動するアニメーションへのポインタ。
vtbl 8 HRESULT SetCenterX(FLOAT centerX)
centerXFLOATinせん断の中心点X座標(DIP)。
vtbl 9 HRESULT SetCenterY(IDCompositionAnimation* animation)
animationIDCompositionAnimation*inせん断中心Y座標を駆動するアニメーションへのポインタ。
vtbl 10 HRESULT SetCenterY(FLOAT centerY)
centerYFLOATinせん断の中心点Y座標(DIP)。

HSP用 COM定義

#usecom / #comfunc によるHSPのCOM呼び出し定義。数字は vtbl インデックス(0始まり)。クラスIDが無い場合 #usecom の末尾は "{}"、ある場合は "{CLSID}"

#define global IID_IDCompositionSkewTransform "{E57AA735-DCDB-4C72-9C61-0591F58889EE}"
#usecom global IDCompositionSkewTransform IID_IDCompositionSkewTransform "{}"
#comfunc global IDCompositionSkewTransform_SetAngleX   3 sptr
#comfunc global IDCompositionSkewTransform_SetAngleX   4 float
#comfunc global IDCompositionSkewTransform_SetAngleY   5 sptr
#comfunc global IDCompositionSkewTransform_SetAngleY   6 float
#comfunc global IDCompositionSkewTransform_SetCenterX  7 sptr
#comfunc global IDCompositionSkewTransform_SetCenterX  8 float
#comfunc global IDCompositionSkewTransform_SetCenterY  9 sptr
#comfunc global IDCompositionSkewTransform_SetCenterY  10 float
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。