commonMain.de.fabmax.kool.physics.articulations.ArticulationLink.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.articulations
import de.fabmax.kool.physics.RigidBody
interface ArticulationLink : RigidBody {
val children: List
val inboundJoint: ArticulationJoint?
}