override fun equals()

in skiko/src/commonMain/kotlin/org/jetbrains/skia/RSXform.kt [21:28]


    override fun equals(other: Any?): Boolean {
        if (other === this) return true
        if (other !is RSXform) return false
        if (scos.compareTo(other.scos) != 0) return false
        if (ssin.compareTo(other.ssin) != 0) return false
        if (tx.compareTo(other.tx) != 0) return false
        return ty.compareTo(other.ty) == 0
    }