mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2026-01-07 21:58:22 +03:00
- libxslt/xslt.c: added support for disable-output-escaping will need libxml version > 20211 - libxslt/transform.c: cleanup - libxslt/xsltutils.[ch]: added output functions - libxslt/xsltproc.c: reuse the output function - tests/REC2/Makefile.am tests/REC2/vrml.xml: added VRML output test Daniel
38 lines
665 B
XML
38 lines
665 B
XML
#VRML V2.0 utf8
|
|
|
|
# externproto definition of a single bar element
|
|
EXTERNPROTO bar [
|
|
field SFInt32 x
|
|
field SFInt32 y
|
|
field SFInt32 z
|
|
field SFString name
|
|
]
|
|
"http://www.vrml.org/WorkingGroups/dbwork/barProto.wrl"
|
|
|
|
# inline containing the graph axes
|
|
Inline {
|
|
url "http://www.vrml.org/WorkingGroups/dbwork/barAxes.wrl"
|
|
}
|
|
|
|
|
|
bar {
|
|
x 10
|
|
y 9
|
|
z 7
|
|
name "North"
|
|
}
|
|
|
|
bar {
|
|
x 4
|
|
y 3
|
|
z 4
|
|
name "South"
|
|
}
|
|
|
|
bar {
|
|
x 6
|
|
y -1.5
|
|
z 2
|
|
name "West"
|
|
}
|
|
|