xxxxxxxxxx
int[] bezier() {
int[] polygon ;
for (int i ; ; i++) {
double t = i ;
polygon[2 * i] = cast(int)(t * t );
}
void main(){}