You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the number of points along U and V are not the same, then this line produce an 'out-of-range' error: ctrlpts_v.append(self._mCtrlPts[i + (j * self._mCtrlPts_sizeV)])
I think it should be j + (i * self._mCtrlPts_sizeV)
The text was updated successfully, but these errors were encountered:
If the number of points along U and V are not the same, then this line produce an 'out-of-range' error:
ctrlpts_v.append(self._mCtrlPts[i + (j * self._mCtrlPts_sizeV)])
I think it should be
j + (i * self._mCtrlPts_sizeV)
The text was updated successfully, but these errors were encountered: