File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 16
16
//! what they are doing, so the application can provide a richer
17
17
//! UI, informing the user of what is going to happen.
18
18
//!
19
+ //! Possible uses:
20
+ //!
21
+ //! * Sequencing animations or effects.
22
+ //! * Recording actions as they're performed within an application
23
+ //! for playback, editing or repeating. An example of this can
24
+ //! be seen in [Bret Victor]'s [Talk Addendum] about his Drawing Dynamic
25
+ //! Visualizations work as well as applications like [Reform] which have
26
+ //! been inspired by it. (This approach was also used in [Data Wrangler].)
27
+ //!
19
28
//! Currently, only actions or sequences of actions can be
20
29
//! executed. Sequences can be nested.
21
30
//!
42
51
//! * Consider removing [`execute`] and only having [`step`].
43
52
//!
44
53
//! [`Action`]: trait.Action.html
54
+ //! [Bret Victor]: http://worrydream.com/
55
+ //! [Data Wrangler]: http://vis.stanford.edu/wrangler/
45
56
//! [`execute`]: trait.Action.html#tymethod.execute
57
+ //! [Reform]: https://github.com/laszlokorte/reform-swift
46
58
//! [`Sequence`]: struct.Sequence.html
47
59
//! [`step`]: trait.Action.html#method.step
60
+ //! [Talk Addendum]: http://worrydream.com/DrawingDynamicVisualizationsTalkAddendum/
48
61
49
62
#![ warn( missing_docs) ]
50
63
#![ deny( trivial_numeric_casts,
You can’t perform that action at this time.
0 commit comments