From JavaFX Skills
Build JavaFX 3D modeling tools and print/export workflows with isolated geometry generation and preview rendering.
How this skill is triggered — by the user, by Claude, or both
Slash command
/javafx-skills:javafx-3d-modeling-printingThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the project needs a JavaFX 3D preview surface for CAD-like geometry generation,
Use this skill when the project needs a JavaFX 3D preview surface for CAD-like geometry generation, solid modeling, or export-to-print workflows.
import javafx.scene.Group;
import javafx.scene.SceneAntialiasing;
import javafx.scene.SubScene;
import javafx.scene.layout.BorderPane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Box;
public class ModelPreviewPane extends BorderPane {
public ModelPreviewPane() {
var shape = new Box(140, 90, 60);
var preview = new SubScene(new Group(shape), 480, 360, true, SceneAntialiasing.BALANCED);
preview.setFill(Color.web("#202020"));
setCenter(preview);
}
}
npx claudepluginhub johannesrabauer/javafx-skills --plugin javafx-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.