JFXBuilder

A place to discuss non-Moho software for use in animation. Video editors, audio editors, 3D modelers, etc.

Moderators: Víctor Paredes, Belgarath, slowtiger

Post Reply
human
Posts: 688
Joined: Tue Jan 02, 2007 7:53 pm

JFXBuilder

Post by human »

http://www.reportmill.com/jfx/

Check the Samples page
human
Posts: 688
Joined: Tue Jan 02, 2007 7:53 pm

Post by human »

If you have the latest version of Java installed, you can dynamically load and run JavaFXPad:

http://download.java.net/general/openjf ... fxpad.jnlp

Then paste the following code from

http://www.artima.com/forums/flat.jsp?f ... ead=207087

into JavaFXPad and choose Run from the menus:

import javafx.ui.*;
import javafx.ui.canvas.*;
import javafx.ui.filter.*;

Morph {

morph: bind [0,.01..1] dur 2000

fill: blue

start: Rect {
x: 10
y: 10
width: 460
height: 140
}

end: Circle {cx: 200, cy: 200, radius: 100}

}


This demonstrates a rect to circle morph.

Admittedly, that's a useless toy of an example, but... it would be interesting to see whether this can be adapted to morph between the arbitrary toon shapes of characters.
human
Posts: 688
Joined: Tue Jan 02, 2007 7:53 pm

Post by human »

Here's a more complicated example of morphing in JavaFX, with source code:

http://gihyo.jp/assets/files/dev/serial ... ation.html
Post Reply