commonMain.de.fabmax.kool.physics.geometry.ConvexMesh.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kool-physics Show documentation
Show all versions of kool-physics Show documentation
A multiplatform OpenGL / Vulkan graphics engine written in kotlin
package de.fabmax.kool.physics.geometry
import de.fabmax.kool.math.Vec3f
import de.fabmax.kool.scene.geometry.IndexedVertexList
import de.fabmax.kool.util.BaseReleasable
expect fun ConvexMesh(points: List): ConvexMesh
abstract class ConvexMesh : BaseReleasable() {
abstract val points: List
abstract val convexHull: IndexedVertexList
abstract var releaseWithGeometry: Boolean
}