/// /// BoundingFrame.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.visioncameraocrplus import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import java.util.Objects /** * Represents the JavaScript object/struct "BoundingFrame". */ @DoNotStrip @Keep data class BoundingFrame( @DoNotStrip @Keep val boundingCenterX: Double, @DoNotStrip @Keep val boundingCenterY: Double, @DoNotStrip @Keep val height: Double, @DoNotStrip @Keep val width: Double, @DoNotStrip @Keep val x: Double, @DoNotStrip @Keep val y: Double ) { /* primary constructor */ override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is BoundingFrame) return false return Objects.deepEquals(this.boundingCenterX, other.boundingCenterX) && Objects.deepEquals(this.boundingCenterY, other.boundingCenterY) && Objects.deepEquals(this.height, other.height) && Objects.deepEquals(this.width, other.width) && Objects.deepEquals(this.x, other.x) && Objects.deepEquals(this.y, other.y) } override fun hashCode(): Int { return arrayOf( boundingCenterX, boundingCenterY, height, width, x, y ).contentDeepHashCode() } companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(boundingCenterX: Double, boundingCenterY: Double, height: Double, width: Double, x: Double, y: Double): BoundingFrame { return BoundingFrame(boundingCenterX, boundingCenterY, height, width, x, y) } } }