I am working with Surfaces in Python. I am trying to make a NurbsSurface from a list of control points. However, original data that is available to me is in flat list. Since in order to create a surface i need to convert that data to Array[Array[Point]] which is a type in Systems class. Since I am in Python my original thought was to create a list of lists, but unfortunately that was rejected. Error states explicitly that it only accepts Array[Array[Point]] - a two dimensional array. I am working with Surfaces in Python. I am tryi