private function drawMyBall(r:Number, color:uint):void

{

this.graphics.clear();

var colors:Array = [0xFFFFFF, color];

var matrix:Matrix = new Matrix;

matrix.createGradientBox(-250*(radius/100), -250*(radius/100), Math.PI/2, radius, radius*0.8);

this.graphics.beginGradientFill(GradientType.RADIAL, colors, [1,1], [0,255], matrix);

this.graphics.drawCircle(0, 0, radius);

}

AsExam9_15_MyBall 클래스에 있는 공을 그리는 함수 소스입니다.

그런데 그라데이션 매트릭스 속성 할당부분에서 (볼드체, 밑줄부분)

width랑 height가 저렇게 음수로 돼 있으면 무슨 의미가 되는지 도저히 감이 안 잡힙니다.

저 소스 한 줄을 어떻게 말로 표현해 주실 수 없나요..