I decided to have a simple JavaFX 2 animated sample running as attendees entered the room for my RMOUG Training Days 2012 presentation. The desired result was achieved as attendees asked if how the ...
/** * Draw stump of tree. * * @return Path representing Christmas tree stump. */ private Path buildStumpPath() { final Path path = new Path(); int coordX = LEFT_STUMP_X; int coordY = LEFT_STUMP_Y; ...