trianglesprite.as
来自「as30的详细例子,包含了大量的例子,是不可多得的学习AS3的好资料」· AS 代码 · 共 31 行
AS
31 行
package com.example.programmingas3.spritearranger
{
import com.example.programmingas3.geometricshapes.EquilateralTriangle;
public class TriangleSprite extends GeometricSprite
{
//public var triangle:EquilateralTriangle;
public function TriangleSprite(size:Number = 100, lColor:Number = 0x000000, fColor:Number = 0xCCCCEE)
{
super(size, lColor, fColor);
this.shapeType = "Triangle";
this.geometricShape = new EquilateralTriangle(size);
drawShape();
}
public override function drawShape():void
{
this.graphics.clear();
this.graphics.lineStyle(1.0, this.lineColor, 1.0);
this.graphics.beginFill(this.fillColor, 1.0);
this.graphics.moveTo(0, this.size);
this.graphics.lineTo((this.size / 2), 0);
this.graphics.lineTo(this.size, this.size);
this.graphics.lineTo(0, this.size);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?