/// /// BoundingBox.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.camera import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import java.util.Objects /** * Represents the JavaScript object/struct "BoundingBox". */ @DoNotStrip @Keep data class BoundingBox( @DoNotStrip @Keep val x: Double, @DoNotStrip @Keep val y: Double, @DoNotStrip @Keep val width: Double, @DoNotStrip @Keep val height: Double ) { /* primary constructor */ override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is BoundingBox) return false return Objects.deepEquals(this.x, other.x) && Objects.deepEquals(this.y, other.y) && Objects.deepEquals(this.width, other.width) && Objects.deepEquals(this.height, other.height) } override fun hashCode(): Int { return arrayOf( x, y, width, height ).contentDeepHashCode() } companion object { /** * Constructor called from C++ */ @DoNotStrip @Keep @Suppress("unused") @JvmStatic private fun fromCpp(x: Double, y: Double, width: Double, height: Double): BoundingBox { return BoundingBox(x, y, width, height) } } }