diff options
author | Sven Gothel <[email protected]> | 2023-08-27 21:06:13 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-27 21:06:13 +0200 |
commit | d6056f4daf2bd6f19cc3f8ff7ca1a812d8db9695 (patch) | |
tree | 2c46d279e09e8c04b7e375db927c4793b5569049 | |
parent | 93087a60bb9397155b4a68eb03991ada2563dfe9 (diff) |
UISceneDemo03: Detail demo description, add blog entry
-rw-r--r-- | src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo03.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo03.java b/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo03.java index b21677d58..744ab1ea6 100644 --- a/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo03.java +++ b/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo03.java @@ -89,18 +89,22 @@ import com.jogamp.opengl.util.texture.TextureSequence.TextureFrame; * <p> * This variation of {@link UISceneDemo00} shows * <ul> - * <li>Two repetitive scrolling text lines. One text shorter than the line-width and one longer.</li> - * <li>One line of animated rectangles, rotating around their z-axis</li> + * <li>Two repetitive steady scrolling text lines. One text shorter than the line-width and one longer.</li> + * <li>One line of animated rectangles, rotating around their z-axis and accelerating towards their target.</li> * <li>A text animation assembling one line of text, * each glyph coming from from a random 3D point moving to its destination all at once including rotation.</li> - * <li>One line of text with sine wave animation.</li> + * <li>One line of text with sine wave animation flattening and accelerating towards its target.</li> * </ul> * </p> * <p> + * Blog entry: https://jausoft.com/blog/2023/08/27/graphui_animation_animgroup/ + * </p> + * <p> * - Pass '-keep' to main-function to keep running. * - Pass '-aspeed' to vary velocity * - Pass '-rspeed <float>' angular velocity in radians/s * - Pass '-no_anim_box' to not show a visible and shrunken box around the AnimGroup + * - Pass '-audio <uri or file-path>' to play audio (only) * </p> */ public class UISceneDemo03 { |