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