mirror of
https://github.com/mcneel/opennurbs.git
synced 2026-04-18 20:26:03 +08:00
Sync changes from upstream repository
This commit is contained in:
@@ -333,7 +333,7 @@ ON_PointGrid::Transpose()
|
||||
int i, j;
|
||||
bool rc = false;
|
||||
if ( IsValid() ) {
|
||||
// slow stupid way - can be imporved if necessary
|
||||
// slow stupid way - can be improved if necessary
|
||||
ON_PointGrid t(m_point_count[1],m_point_count[0]);
|
||||
for ( i = 0; i < m_point_count[0]; i++ ) for ( j = 0; j < m_point_count[1]; j++ ) {
|
||||
t[j][i] = Point(i,j);
|
||||
|
||||
Reference in New Issue
Block a user