1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /* 4 * Copyright (C) 4008 The Android Open Source Project 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18 --> 19 20 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 21 22 <string-array name="cube2_shapenames"> 23 <item>"Cube"</item> 24 <item>"Dodecahedron"</item> 25 </string-array> 26 27 <string-array name="cube2_shapeprefix"> 28 <item>"cube"</item> 29 <item>"dodecahedron"</item> 30 </string-array> 31 32 <!-- x,y,z tuples for the points defining the object --> 33 <!-- stored as strings for easier human readability --> 34 <string-array name="cubepoints"> 35 <item>"-400 -400 -400"</item> 36 <item>"400 -400 -400"</item> 37 <item>"400 400 -400"</item> 38 <item>"-400 400 -400"</item> 39 <item>"-400 -400 400"</item> 40 <item>"400 -400 400"</item> 41 <item>"400 400 400"</item> 42 <item>"-400 400 400"</item> 43 </string-array> 44 45 <!-- start,end point index tuples of the lines defining the object --> 46 <string-array name="cubelines"> 47 <!-- lines forming one face --> 48 <item>"0 1"</item> 49 <item>"1 2"</item> 50 <item>"2 3"</item> 51 <item>"3 0"</item> 52 53 <!-- lines forming the opposite face --> 54 <item>"4 5"</item> 55 <item>"5 6"</item> 56 <item>"6 7"</item> 57 <item>"7 4"</item> 58 59 <!-- lines connecting the two faces --> 60 <item>"0 4"</item> 61 <item>"1 5"</item> 62 <item>"2 6"</item> 63 <item>"3 7"</item> 64 </string-array> 65 66 <string-array name="dodecahedronpoints"> 67 <item>"333.850000 0.000000 437.250000"</item> 68 <item>"103.400000 317.350000 437.250000"</item> 69 <item>"-270.050000 196.350000 437.250000"</item> 70 <item>"-270.050000 -196.350000 437.250000"</item> 71 <item>"103.400000 -317.350000 437.250000"</item> 72 <item>"540.100000 0.000000 103.400000"</item> 73 <item>"167.200000 513.700000 103.400000"</item> 74 <item>"-437.250000 317.350000 103.400000"</item> 75 <item>"-437.250000 -317.350000 103.400000"</item> 76 <item>"167.200000 -513.700000 103.400000"</item> 77 <item>"437.250000 317.350000 -103.400000"</item> 78 <item>"-167.200000 513.700000 -103.400000"</item> 79 <item>"-540.100000 0.000000 -103.400000"</item> 80 <item>"-167.200000 -513.700000 -103.400000"</item> 81 <item>"437.250000 -317.350000 -103.400000"</item> 82 <item>"270.050000 196.350000 -437.250000"</item> 83 <item>"-103.400000 317.350000 -437.250000"</item> 84 <item>"-333.850000 0.000000 -437.250000"</item> 85 <item>"-103.400000 -317.350000 -437.250000"</item> 86 <item>"270.050000 -196.350000 -437.250000"</item> 87 </string-array> 88 89 <string-array name="dodecahedronlines"> 90 <item>"0 1"</item> 91 <item>"0 4"</item> 92 <item>"0 5"</item> 93 <item>"1 2"</item> 94 <item>"1 6"</item> 95 <item>"2 3"</item> 96 <item>"2 7"</item> 97 <item>"3 4"</item> 98 <item>"3 8"</item> 99 <item>"4 9"</item> 100 <item>"5 10"</item> 101 <item>"5 14"</item> 102 <item>"6 10"</item> 103 <item>"6 11"</item> 104 <item>"7 11"</item> 105 <item>"7 12"</item> 106 <item>"8 12"</item> 107 <item>"8 13"</item> 108 <item>"9 13"</item> 109 <item>"9 14"</item> 110 <item>"10 15"</item> 111 <item>"11 16"</item> 112 <item>"12 17"</item> 113 <item>"13 18"</item> 114 <item>"14 19"</item> 115 <item>"15 16"</item> 116 <item>"15 19"</item> 117 <item>"16 17"</item> 118 <item>"17 18"</item> 119 <item>"18 19"</item> 120 </string-array> 121 </resources> 122