nlisker
nlisker
The predefined JavaFX shapes have a mesh cache that shares a preexisting mesh instead of creating a new one. Currently this is not possible for imported Maya models because the...
The 3DViewer app has 2 exporters: for java and fxml files. These only support geometric data. We should consider adding them later on and enhancing them to store animation data....
If you take the `King_WalkCycle.ma` and import it in the 3DViewer with "Optimize" checked, the resulting animation is incorrect. The report from the optimization process is: > Removed 14379 (77.47%)...
Runtime images has * Modular from CLI * Modular with Maven * Modular with Gradle * Custom JDK+JavaFX image * Non-Modular project where the last entry includes Mave, Gralde and...
In https://openjfx.io/openjfx-docs/#gradle, "Run HelloWorld via Gradle" the table on the bottom is missing JDK version 15.
Using `org.kordamp.gradle.jdeps` version 0.17.0 and running the `jdepsReport` task, I get the following error: ``` Exception in thread "main" java.lang.module.FindException: Error reading module: C:\workspace\testproject\build\classes\java\main at java.base/jdk.internal.module.ModulePath.readModule(ModulePath.java:350) at java.base/jdk.internal.module.ModulePath.scan(ModulePath.java:237) at java.base/jdk.internal.module.ModulePath.scanNextEntry(ModulePath.java:190)...
Overhaul to the `PhongMaterial` documentation (and a bit to its superclass `Material`). Except for the introduction, I divided the documentation into 3 sections: qualitative explanation, mathematical model (I wouldn't think...
When deserializing a cyclic object graph, sometimes an exception will be thrown > com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot resolve ObjectId forward reference using property 'propertyName' (of type someType): Bean not yet resolved Iv'e...
The versions we use for plugins and dependencies are hardcoded. It's better to consolidate them either in the `gradle.properties` files or in an `ext` block like we just did for...
In the build file we have the code ```groovy eclipse { classpath { file { whenMerged { entries.findAll { it.kind == 'src' || it.kind == 'lib' }.each { it.entryAttributes['module'] =...