All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.Box.kt Maven / Gradle / Ivy

The newest version!
package org.openrndr.extra.hashgrid

import org.openrndr.math.Vector3
import kotlin.jvm.JvmRecord

@JvmRecord
data class Box3D(val corner: Vector3, val width: Double, val height: Double, val depth: Double) {
    companion object {
        val EMPTY = Box3D(Vector3.ZERO, 0.0, 0.0, 0.0)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy