PathGradientBrush::RotateTransform 方法 (gdipluspath.h)
PathGradientBrush::RotateTransform 方法使用自身和旋转矩阵的乘积更新此画笔的当前转换矩阵。
语法
Status RotateTransform(
[in] REAL angle,
[in] MatrixOrder order
);
parameters
[in] angle
类型: REAL
指定旋转角度(以度为单位)的实数。
[in] order
类型: MatrixOrder
可选。 MatrixOrder 枚举的元素,指定乘法的顺序。 MatrixOrderPrepend 指定旋转矩阵在左侧, MatrixOrderAppend 指定旋转矩阵在右侧。 默认值为 MatrixOrderPrepend。
返回值
类型: 状态
如果该方法成功,则返回 Ok,这是 Status 枚举的元素。
如果方法失败,它将返回 Status 枚举的其他元素之一。
注解
单个 3 ×3 矩阵可以存储任何仿射变换序列。 如果有多个 3 ×3 矩阵,其中每个矩阵都表示仿射变换,则这些矩阵的乘积是一个表示整个转换序列的 3 ×3 矩阵。 由该产品表示的转换称为复合转换。 例如,假设矩阵 T 表示平移,矩阵 R 表示旋转。 如果矩阵 M 是乘积 TR,则矩阵 M 表示复合转换:先转换,再旋转。
示例
以下示例基于三角形路径创建 PathGradientBrush 对象。 对 PathGradientBrush 对象的 PathGradientBrush::ScaleTransform 和 PathGradientBrush::RotateTransform 方法的调用设置画笔转换矩阵的元素,以便它表示复合转换:先缩放,然后旋转。 代码使用路径渐变画笔两次绘制矩形:设置转换前一次,设置转换后一次。
VOID Example_RotateTransform(HDC hdc)
{
Graphics graphics(hdc);
// Create a path gradient brush based on an array of points.
Point pts[] = {Point(0, 0), Point(50, 0), Point(50, 50)};
PathGradientBrush pthGrBrush(pts, 3);
// Fill an area with the path gradient brush (no transformation).
graphics.FillRectangle(&pthGrBrush, 0, 0, 500, 500);
pthGrBrush.ScaleTransform(3.0f, 1.0f); // first scale
pthGrBrush.RotateTransform(60.0f, MatrixOrderAppend); // then rotate
// Fill the same area with the transformed path gradient brush.
graphics.FillRectangle(&pthGrBrush, 0, 0, 500, 500);
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdipluspath.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |
另请参阅
PathGradientBrush::GetTransform
PathGradientBrush::MultiplyTransform
PathGradientBrush::ResetTransform
PathGradientBrush::ScaleTransform
PathGradientBrush::SetTransform