旋转五角星怎么做,用一个等腰三角形经过旋转制作五角星
来源:整理 编辑:航空兔素材 2023-06-17 06:52:21
本文目录一览
1,用一个等腰三角形经过旋转制作五角星
以等腰三角形下底为一边做一个正五边形绕五边形五个边旋转。或找到所形成五角星的中心点。(不太好找)问的有两个:1.旋转中心是什么位置的点,比如在某条边上,或在三角形内、外等;2.旋转多少度能够得到五角星的第一个角(以该角度转五次就完成了五角星)
2,如何用C写旋转的五角星
创建轨迹梯度,渐变五角星,C#源代码
// Put the points of a polygon in an array.
Point[] points = {
new Point(75, 0),
new Point(100, 50),
new Point(150, 50),
new Point(112, 75),
new Point(150, 150),
new Point(75, 100),
new Point(0, 150),
new Point(37, 75),
new Point(0, 50),
new Point(50, 50)};
// Use the array of points to construct a path.
GraphicsPath path = new GraphicsPath();
path.AddLines(points);
// Use the path to construct a path gradient brush.
PathGradientBrush pthGrBrush = new PathGradientBrush(path);
// Set the color at the center of the path to red.
pthGrBrush.CenterColor = Color.FromArgb(255, 255, 0, 0);
// Set the colors of the points in the array.
Color[] colors = {
Color.FromArgb(255, 0, 0, 0),
Color.FromArgb(255, 0, 255, 0),
Color.FromArgb(255, 0, 0, 255),
Color.FromArgb(255, 255, 255, 255),
Color.FromArgb(255, 0, 0, 0),
Color.FromArgb(255, 0, 255, 0),
Color.FromArgb(255, 0, 0, 255),
Color.FromArgb(255, 255, 255, 255),
Color.FromArgb(255, 0, 0, 0),
Color.FromArgb(255, 0, 255, 0)};
pthGrBrush.SurroundColors = colors;
// Fill the path with the path gradient brush.
e.Graphics.FillPath(pthGrBrush, path);
文章TAG:
旋转 五角 五角星 怎么 旋转五角星怎么做