In PHP, I would do this to get 'points' as an multidimensional array.
<input type"text" name="points[0][1]" />
<input type"text" name="points[0][2]" />
<input type"text" name="points[1][1]" />
<input type"text" name="points[2][2]" />
Or if I wanted to get 'point' as an associative array:
<input type"text" name="point[x_axis]" />
<input type"text" name="point[y_axis]" />
What is the Catalyst/Perl equivalent for such things? How can I get these through $c->req->params ??