summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-11 20:25:39 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-11 20:25:39 (GMT)
commitef551cb937956e2c13570ab3f8f119c48fa5656e (patch)
treefb12268c38f7bbdddd583859d8c615411048d071 /apps
parent1924f35d1d21a59939110f7eae238052c37474e2 (diff)
downloaduscxml-ef551cb937956e2c13570ab3f8f119c48fa5656e.zip
uscxml-ef551cb937956e2c13570ab3f8f119c48fa5656e.tar.gz
uscxml-ef551cb937956e2c13570ab3f8f119c48fa5656e.tar.bz2
Reactivated plugin system
Diffstat (limited to 'apps')
-rw-r--r--apps/samples/put-that-there/put-that-there.scxml29
1 files changed, 29 insertions, 0 deletions
diff --git a/apps/samples/put-that-there/put-that-there.scxml b/apps/samples/put-that-there/put-that-there.scxml
new file mode 100644
index 0000000..fee9f39
--- /dev/null
+++ b/apps/samples/put-that-there/put-that-there.scxml
@@ -0,0 +1,29 @@
+<scxml datamodel="ecmascript" initial="start" binding="late"
+ xmlns="http://www.w3.org/2005/07/scxml"
+ xmlns:scenegraph="http://uscxml.tk.informatik.tu-darmstadt.de/scenegraph.xsd">
+ <state id="start">
+ <invoke type="scenegraph">
+ <content>
+ <scenegraph:display x="0" y="0" width="80%" height="80%">
+ <scenegraph:viewport x="0" y="0" width="100%" height="100%" bgcolor="grey" id="scene1">
+ <scenegraph:translation x="0" y="0" z="0">
+ <scenegraph:sphere radius="1" materialcolor="1.0,1.0,0,0.3" />
+ </scenegraph:translation>
+ <scenegraph:translation x="5" y="0" z="0">
+ <scenegraph:box x="1" y="2" z="3" color="red" />
+ </scenegraph:translation>
+ <scenegraph:translation x="0" y="5" z="0">
+ <scenegraph:capsule radius="1" height="2" materialcolor="blue" transparency="0.5"/>
+ </scenegraph:translation>
+ <scenegraph:translation x="0" y="0" z="5">
+ <scenegraph:cone radius="1" height="2" color="lightblue" />
+ </scenegraph:translation>
+ <scenegraph:translation x="0" y="-5" z="0">
+ <scenegraph:cylinder radius="1" height="2" color="orange" />
+ </scenegraph:translation>
+ </scenegraph:viewport>
+ </scenegraph:display>
+ </content>
+ </invoke>
+ </state>
+</scxml> \ No newline at end of file