When you have methods that return NDArray, how do you document it?
Is it possible to type-hint or document the type of the array? as containing np.float64 for example.
And how to document what each axis is? and for the last axis what are the values?
For example if I have a 2D array of vertices, how to document that? to indicate that the first axis is the vertex index, and the second axis is the x and y of the vertex. And the array being a float one.