SceneGraph but DOM
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
eater 7fc4b44571
continuous-integration/drone/push Build is failing Details
add gl and example
4 years ago
gradle/wrapper Initial commit 4 years ago
script Initial commit 4 years ago
threedom add gl and example 4 years ago
threedom-example add gl and example 4 years ago
threedom-gl add gl and example 4 years ago
threedom-kapt add gl and example 4 years ago
tools add gl and example 4 years ago
.drone.yml trigger 4 years ago
.gitignore Initial commit 4 years ago
README.md small fixes 4 years ago
build.gradle Initial commit 4 years ago
gradle.properties Initial commit 4 years ago
gradlew Initial commit 4 years ago
gradlew.bat Initial commit 4 years ago
settings.gradle add gl and example 4 years ago

README.md

3DOM

A SceneGraph written as if it's a DOM

fun main() {
    val doc = Document()
    val node = doc.createNode<PlainNode>()
    node.model { setTranslation(10, 30, 3) }
    
    doc.on<DOMTreeUpdate.Insert> { (ev) ->
        println("Node has been added at ${ev.absolute.translation}")
    }

    doc.addNode(node)

    doc.inRange(Vector3d(0, 0, 0), 50).forEach {
        println("Node found at ${it.absolute.translation}")
    }
}