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

commonMain.de.fabmax.kool.physics.geometry.ConvexMesh.kt Maven / Gradle / Ivy

There is a newer version: 0.15.1
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy