in commons/src/commonMain/kotlin/org/jetbrains/letsPlot/commons/geometry/AffineTransform.kt [109:123]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as AffineTransform
if (m00 != other.m00) return false
if (m11 != other.m11) return false
if (m02 != other.m02) return false
if (m12 != other.m12) return false
if (m10 != other.m10) return false
if (m01 != other.m01) return false
return true
}