Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Side by Side Diff: skia/animator/SkAnimate3DSchema.xsd

Issue 113827: Remove the remainder of the skia source code from the Chromium repo.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/animator/SkAnimate.h ('k') | skia/animator/SkAnimate3DSchema.xsx » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
2
3 xmlns:Sk="http://www.skia.com/schema/SkAnimateSchema.xsd"
4
5 targetNamespace="urn:skia3D" xmlns:Sk3D="urn:skia3D">
6
7
8
9 <xs:simpleType name="Patch" >
10
11 <xs:restriction base="xs:string" >
12
13 </xs:restriction>
14
15 </xs:simpleType>
16
17
18
19 <xs:simpleType name="Point" >
20
21 <xs:restriction base="xs:string" >
22
23 <xs:pattern value="[+-]?([0-9]*\.[0-9]+|[0-9]+\.?)( *[ , ] *[+-]?([0-9]*\.[0-9]+|[0-9]+\.?)){2}" />
24
25 </xs:restriction>
26
27 </xs:simpleType>
28
29
30
31 <xs:element name="camera">
32
33 <xs:complexType >
34
35 <xs:attribute name="axis" type="Sk3D:Point" />
36
37 <xs:attribute name="hackHeight" type="Sk:Float" />
38
39 <xs:attribute name="hackWidth" type="Sk:Float" />
40
41 <xs:attribute name="location" type="Sk3D:Point" />
42
43 <xs:attribute name="observer" type="Sk3D:Point" />
44
45 <xs:attribute name="patch" type="Sk3D:Patch" />
46
47 <xs:attribute name="zenith" type="Sk3D:Point" />
48
49 <xs:attribute name="id" type="xs:ID" />
50
51 </xs:complexType>
52
53 </xs:element>
54
55
56
57 <xs:element name="patch">
58
59 <xs:complexType >
60
61 <xs:attribute name="origin" type="Sk3D:Point" />
62
63 <xs:attribute name="rotateDegrees" type="Sk:MemberFuncti on" />
64
65 <xs:attribute name="u" type="Sk3D:Point" />
66
67 <xs:attribute name="v" type="Sk3D:Point" />
68
69 <xs:attribute name="id" type="xs:ID" />
70
71 </xs:complexType>
72
73 </xs:element>
74
75
76
77 </xs:schema>
78
OLDNEW
« no previous file with comments | « skia/animator/SkAnimate.h ('k') | skia/animator/SkAnimate3DSchema.xsx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698