view app/src/main/java/com/bartsent/simpleresizer/lib/ScalingKernel.kt @ 34:19c584b29679

Add gradle files, bump rev to bypass installer cache misfeature.
author David Barts <n5jrn@me.com>
date Thu, 11 Mar 2021 17:31:56 -0800
parents e8059b166de1
children
line wrap: on
line source

package com.bartsent.simpleresizer.lib

import android.graphics.Bitmap

interface ScalingKernel {
    val size: Double
    fun weight(x: Double): Double
}