Sync changes from upstream repository

This commit is contained in:
Bozo the Builder
2025-11-05 03:40:11 -08:00
parent 85de57f34e
commit f97efd5026
6 changed files with 75 additions and 22 deletions

View File

@@ -231,7 +231,7 @@ bool ON_HatchLine::operator==(const ON_HatchLine& src) const
m_angle_radians == src.m_angle_radians
&& m_base == src.m_base
&& m_offset == src.m_offset
&& m_dashes == src.m_dashes
&& ON_SimpleArray_IsEqual(m_dashes, src.m_dashes)
);
}
@@ -241,7 +241,7 @@ bool ON_HatchLine::operator!=(const ON_HatchLine& src) const
m_angle_radians != src.m_angle_radians
|| m_base != src.m_base
|| m_offset != src.m_offset
|| m_dashes != src.m_dashes
|| !ON_SimpleArray_IsEqual(m_dashes, src.m_dashes)
);
}