Sync changes from upstream repository

This commit is contained in:
Bozo the Builder
2024-08-22 01:43:04 -07:00
parent ae65ce6693
commit 904ef7893c
202 changed files with 1884 additions and 1694 deletions

View File

@@ -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);