change(s)}
triangles = new Array();
triangles[0] = new animation_ch16_Triangle(points[0], points[1], points[8], 0xffcccc);
triangles[1] = new animation_ch16_Triangle(points[1], points[9], points[8], 0xffcccc);
triangles[2] = new animation_ch16_Triangle(points[1], points[2], points[9], 0xffcccc);
triangles[3] = new animation_ch16_Triangle(points[2], points[4], points[9], 0xffcccc);
triangles[4] = new animation_ch16_Triangle(points[2], points[3], points[4], 0xffcccc);
triangles[5] = new animation_ch16_Triangle(points[4], points[5], points[9], 0xffcccc);
triangles[6] = new animation_ch16_Triangle(points[9], points[5], points[10], 0xffcccc);
triangles[7] = new animation_ch16_Triangle(points[5], points[6], points[7], 0xffcccc);
triangles[8] = new animation_ch16_Triangle(points[5], points[7], points[10], 0xffcccc);
triangles[9] = new animation_ch16_Triangle(points[0], points[10],points[7], 0xffcccc);
triangles[10] = new animation_ch16_Triangle(points[0], points[8], points[10], 0xffcccc);
addEventListener(Event.ENTER_FRAME, onEnterFrame);
}