|
From: <tre...@us...> - 2008-02-06 01:20:34
|
Revision: 711
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=711&view=rev
Author: trevorolio
Date: 2008-02-05 17:20:38 -0800 (Tue, 05 Feb 2008)
Log Message:
-----------
Added the back end and 3D rendering of attachment geometries and appearances, but not yet morphs or skin textures.
Also no example UI for picking attachments in the body editor, yet.
The "time to private parts" for Ogoglio starts now.
Modified Paths:
--------------
maven/trunk/ogoglio-integration-test/src/test/java/com/ogoglio/client/test/ClientTest.java
Added Paths:
-----------
maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.blend
maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.mtl
maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.obj
Modified: maven/trunk/ogoglio-integration-test/src/test/java/com/ogoglio/client/test/ClientTest.java
===================================================================
--- maven/trunk/ogoglio-integration-test/src/test/java/com/ogoglio/client/test/ClientTest.java 2008-02-06 01:20:17 UTC (rev 710)
+++ maven/trunk/ogoglio-integration-test/src/test/java/com/ogoglio/client/test/ClientTest.java 2008-02-06 01:20:38 UTC (rev 711)
@@ -62,6 +62,7 @@
import com.ogoglio.util.UIConstants;
import com.ogoglio.util.WebConstants;
import com.ogoglio.xml.AccountDocument;
+import com.ogoglio.xml.AttachmentDocument;
import com.ogoglio.xml.AuthDocument;
import com.ogoglio.xml.BodyConfigurationDocument;
import com.ogoglio.xml.BodyDataDocument;
@@ -395,6 +396,8 @@
checkUserSitting(spaceDocument, thingDocs, spaceClient1, guestSpaceClient1);
+ checkAttachments(spaceDocument, thingDocs, spaceClient1, advancedClient);
+
checkDeletingSpaceDestroysThings(spaceDocument.getSpaceID(), advancedClient, USERNAME1);
} finally {
@@ -408,6 +411,37 @@
}
+ private void checkAttachments(SpaceDocument spaceDocument, ThingDocument[] thingDocs, SpaceClient spaceClient, WebAPIClient advancedClient) throws IOException {
+ TemplateDocument templateDoc = advancedClient.createTemplate("Attachment Test");
+ assertNotNull(templateDoc);
+ templateDoc.setAttachment(true);
+ templateDoc = advancedClient.updateTemplate(templateDoc);
+ assertNotNull(templateDoc);
+ assertTrue(templateDoc.isAttachment());
+ advancedClient.uploadTemplateGeometryStream(templateDoc.getOwnerUsername(), templateDoc.getTemplateID(), 0, UIConstants.getResource("sample-art3d/AttachmentTest.obj"));
+ advancedClient.uploadTemplateResourceStream(templateDoc.getOwnerUsername(), templateDoc.getTemplateID(), "AttachmentTest.mtl", UIConstants.getResource("sample-art3d/AttachmentTest.mtl"));
+
+ BodyConfigurationDocument confDoc = advancedClient.getDefaultBodyConfiguration(advancedClient.getAuthenticator().getUsername());
+ AttachmentDocument[] attachmentDocs = confDoc.getAttachmentDocuments();
+ for (int i = 0; i < attachmentDocs.length; i++) {
+ confDoc.removeAttachment(attachmentDocs[i].getAttachmentID());
+ }
+ confDoc.addAttachment(templateDoc.getOwnerUsername(), templateDoc.getTemplateID());
+ advancedClient.updateBodyConfiguration(confDoc);
+ confDoc = advancedClient.getDefaultBodyConfiguration(advancedClient.getAuthenticator().getUsername());
+ attachmentDocs = confDoc.getAttachmentDocuments();
+ assertEquals(1, attachmentDocs.length);
+ assertEquals(templateDoc.getTemplateID(), attachmentDocs[0].getTemplateID());
+
+ confDoc.removeAttachment(attachmentDocs[0].getAttachmentID());
+ advancedClient.updateBodyConfiguration(confDoc);
+ confDoc = advancedClient.getDefaultBodyConfiguration(advancedClient.getAuthenticator().getUsername());
+ attachmentDocs = confDoc.getAttachmentDocuments();
+ assertEquals(0, attachmentDocs.length);
+
+ advancedClient.deleteTemplate(templateDoc.getTemplateID());
+ }
+
private void checkAccountPhoto(WebAPIClient basicClient) throws IOException {
InputStream imageData = UIConstants.getResource(testAccountPhotoPath);
basicClient.setAccountPhoto(basicClient.getAuthenticator().getUsername(), imageData, "image/jpeg");
Added: maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.blend
===================================================================
(Binary files differ)
Property changes on: maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.blend
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.mtl
===================================================================
--- maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.mtl (rev 0)
+++ maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.mtl 2008-02-06 01:20:38 UTC (rev 711)
@@ -0,0 +1,42 @@
+# Blender3D MTL File: AttachmentTest.blend
+# Material Count: 4
+newmtl Material.001
+Ns 96.078431
+Ka 0.000000 0.000000 0.000000
+Kd 0.000000 0.640000 0.000000
+Ks 0.500000 0.500000 0.500000
+Ni 1.000000
+d 1.000000
+illum 2
+
+
+newmtl Material.002
+Ns 96.078431
+Ka 0.000000 0.000000 0.000000
+Kd 0.000000 0.000000 0.800000
+Ks 0.500000 0.500000 0.500000
+Ni 1.000000
+d 1.000000
+illum 2
+
+
+newmtl Material.003
+Ns 96.078431
+Ka 0.000000 0.000000 0.000000
+Kd 0.800000 0.800000 0.000000
+Ks 0.500000 0.500000 0.500000
+Ni 1.000000
+d 1.000000
+illum 2
+
+
+newmtl Material
+Ns 96.078431
+Ka 0.000000 0.000000 0.000000
+Kd 0.800000 0.361391 0.351441
+Ks 0.500000 0.500000 0.500000
+Ni 1.000000
+d 1.000000
+illum 2
+
+
Added: maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.obj
===================================================================
--- maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.obj (rev 0)
+++ maven/trunk/ogoglio-integration-test/src/test/resources/sample-art3d/AttachmentTest.obj 2008-02-06 01:20:38 UTC (rev 711)
@@ -0,0 +1,652 @@
+# Blender3D v243 OBJ File: AttachmentTest.blend
+# www.blender3d.org
+mtllib AttachmentTest.mtl
+o rShin
+v -0.057346 -1.100912 0.092450
+v -0.045493 -1.100912 0.078008
+v -0.036685 -1.100912 0.061530
+v -0.031262 -1.100912 0.043651
+v -0.029431 -1.100912 0.025057
+v -0.031262 -1.100912 0.006464
+v -0.036685 -1.100912 -0.011415
+v -0.045493 -1.100912 -0.027893
+v -0.057346 -1.100912 -0.042335
+v -0.071788 -1.100912 -0.054188
+v -0.088266 -1.100912 -0.062995
+v -0.106145 -1.100912 -0.068419
+v -0.124738 -1.100912 -0.070250
+v -0.143332 -1.100912 -0.068419
+v -0.161211 -1.100912 -0.062995
+v -0.177689 -1.100912 -0.054188
+v -0.192131 -1.100912 -0.042335
+v -0.203984 -1.100912 -0.027893
+v -0.212791 -1.100912 -0.011415
+v -0.218215 -1.100912 0.006464
+v -0.220046 -1.100912 0.025058
+v -0.218215 -1.100912 0.043651
+v -0.212791 -1.100912 0.061530
+v -0.203984 -1.100912 0.078008
+v -0.192131 -1.100912 0.092450
+v -0.177688 -1.100912 0.104303
+v -0.161211 -1.100912 0.113110
+v -0.143332 -1.100912 0.118534
+v -0.124738 -1.100912 0.120365
+v -0.106145 -1.100912 0.118534
+v -0.088265 -1.100912 0.113110
+v -0.071788 -1.100912 0.104303
+v -0.057345 -1.069690 0.092450
+v -0.045493 -1.069690 0.078007
+v -0.036685 -1.069690 0.061530
+v -0.031262 -1.069690 0.043651
+v -0.029431 -1.069690 0.025057
+v -0.031262 -1.069690 0.006464
+v -0.036686 -1.069690 -0.011415
+v -0.045493 -1.069690 -0.027893
+v -0.057346 -1.069690 -0.042335
+v -0.071788 -1.069690 -0.054188
+v -0.088266 -1.069690 -0.062995
+v -0.106145 -1.069690 -0.068419
+v -0.124738 -1.069690 -0.070250
+v -0.143332 -1.069690 -0.068419
+v -0.161211 -1.069690 -0.062995
+v -0.177688 -1.069690 -0.054188
+v -0.192131 -1.069690 -0.042335
+v -0.203984 -1.069690 -0.027893
+v -0.212791 -1.069690 -0.011415
+v -0.218215 -1.069690 0.006464
+v -0.220046 -1.069690 0.025057
+v -0.218215 -1.069690 0.043651
+v -0.212791 -1.069690 0.061530
+v -0.203984 -1.069690 0.078007
+v -0.192131 -1.069690 0.092450
+v -0.177689 -1.069690 0.104303
+v -0.161212 -1.069690 0.113110
+v -0.143333 -1.069690 0.118534
+v -0.124739 -1.069690 0.120365
+v -0.106145 -1.069690 0.118534
+v -0.088266 -1.069690 0.113111
+v -0.071789 -1.069690 0.104303
+usemtl Material.003
+s 1
+f 1 33 34 2
+f 2 34 35 3
+f 3 35 36 4
+f 4 36 37 5
+f 5 37 38 6
+f 6 38 39 7
+f 7 39 40 8
+f 8 40 41 9
+f 9 41 42 10
+f 10 42 43 11
+f 11 43 44 12
+f 12 44 45 13
+f 13 45 46 14
+f 14 46 47 15
+f 15 47 48 16
+f 16 48 49 17
+f 17 49 50 18
+f 18 50 51 19
+f 19 51 52 20
+f 20 52 53 21
+f 21 53 54 22
+f 22 54 55 23
+f 23 55 56 24
+f 24 56 57 25
+f 25 57 58 26
+f 26 58 59 27
+f 27 59 60 28
+f 28 60 61 29
+f 29 61 62 30
+f 30 62 63 31
+f 31 63 64 32
+f 33 1 32 64
+o lShin
+v 0.192337 -1.100912 0.092450
+v 0.204190 -1.100912 0.078008
+v 0.212997 -1.100912 0.061530
+v 0.218421 -1.100912 0.043651
+v 0.220252 -1.100912 0.025057
+v 0.218421 -1.100912 0.006464
+v 0.212997 -1.100912 -0.011415
+v 0.204190 -1.100912 -0.027893
+v 0.192337 -1.100912 -0.042335
+v 0.177894 -1.100912 -0.054188
+v 0.161417 -1.100912 -0.062995
+v 0.143538 -1.100912 -0.068419
+v 0.124944 -1.100912 -0.070250
+v 0.106351 -1.100912 -0.068419
+v 0.088472 -1.100912 -0.062995
+v 0.071994 -1.100912 -0.054188
+v 0.057551 -1.100912 -0.042335
+v 0.045699 -1.100912 -0.027893
+v 0.036891 -1.100912 -0.011415
+v 0.031468 -1.100912 0.006464
+v 0.029637 -1.100912 0.025058
+v 0.031468 -1.100912 0.043651
+v 0.036891 -1.100912 0.061530
+v 0.045699 -1.100912 0.078008
+v 0.057552 -1.100912 0.092450
+v 0.071994 -1.100912 0.104303
+v 0.088472 -1.100912 0.113110
+v 0.106351 -1.100912 0.118534
+v 0.124944 -1.100912 0.120365
+v 0.143538 -1.100912 0.118534
+v 0.161417 -1.100912 0.113110
+v 0.177895 -1.100912 0.104303
+v 0.192337 -1.069690 0.092450
+v 0.204190 -1.069690 0.078007
+v 0.212997 -1.069690 0.061530
+v 0.218421 -1.069690 0.043651
+v 0.220252 -1.069690 0.025057
+v 0.218421 -1.069690 0.006464
+v 0.212997 -1.069690 -0.011415
+v 0.204190 -1.069690 -0.027893
+v 0.192337 -1.069690 -0.042335
+v 0.177894 -1.069690 -0.054188
+v 0.161417 -1.069690 -0.062995
+v 0.143538 -1.069690 -0.068419
+v 0.124944 -1.069690 -0.070250
+v 0.106351 -1.069690 -0.068419
+v 0.088472 -1.069690 -0.062995
+v 0.071994 -1.069690 -0.054188
+v 0.057552 -1.069690 -0.042335
+v 0.045699 -1.069690 -0.027893
+v 0.036892 -1.069690 -0.011415
+v 0.031468 -1.069690 0.006464
+v 0.029637 -1.069690 0.025057
+v 0.031468 -1.069690 0.043651
+v 0.036891 -1.069690 0.061530
+v 0.045698 -1.069690 0.078007
+v 0.057551 -1.069690 0.092450
+v 0.071994 -1.069690 0.104303
+v 0.088471 -1.069690 0.113110
+v 0.106350 -1.069690 0.118534
+v 0.124944 -1.069690 0.120365
+v 0.143537 -1.069690 0.118534
+v 0.161416 -1.069690 0.113111
+v 0.177894 -1.069690 0.104303
+usemtl Material.003
+s 1
+f 65 97 98 66
+f 66 98 99 67
+f 67 99 100 68
+f 68 100 101 69
+f 69 101 102 70
+f 70 102 103 71
+f 71 103 104 72
+f 72 104 105 73
+f 73 105 106 74
+f 74 106 107 75
+f 75 107 108 76
+f 76 108 109 77
+f 77 109 110 78
+f 78 110 111 79
+f 79 111 112 80
+f 80 112 113 81
+f 81 113 114 82
+f 82 114 115 83
+f 83 115 116 84
+f 84 116 117 85
+f 85 117 118 86
+f 86 118 119 87
+f 87 119 120 88
+f 88 120 121 89
+f 89 121 122 90
+f 90 122 123 91
+f 91 123 124 92
+f 92 124 125 93
+f 93 125 126 94
+f 94 126 127 95
+f 95 127 128 96
+f 97 65 96 128
+o hip
+v 0.121349 -0.013444 0.146552
+v 0.142717 -0.013444 0.120515
+v 0.158595 -0.013444 0.090810
+v 0.168372 -0.013444 0.058578
+v 0.171674 -0.013444 0.025058
+v 0.168372 -0.013444 -0.008463
+v 0.158595 -0.013444 -0.040695
+v 0.142717 -0.013444 -0.070400
+v 0.121349 -0.013444 -0.096436
+v 0.095312 -0.013444 -0.117804
+v 0.065607 -0.013444 -0.133682
+v 0.033375 -0.013444 -0.143460
+v -0.000145 -0.013444 -0.146761
+v -0.033665 -0.013444 -0.143459
+v -0.065897 -0.013444 -0.133682
+v -0.095602 -0.013444 -0.117804
+v -0.121639 -0.013444 -0.096436
+v -0.143007 -0.013444 -0.070400
+v -0.158884 -0.013444 -0.040694
+v -0.168662 -0.013444 -0.008462
+v -0.171963 -0.013444 0.025058
+v -0.168662 -0.013444 0.058578
+v -0.158884 -0.013444 0.090810
+v -0.143007 -0.013444 0.120515
+v -0.121639 -0.013444 0.146552
+v -0.095602 -0.013444 0.167920
+v -0.065897 -0.013444 0.183797
+v -0.033665 -0.013444 0.193575
+v -0.000145 -0.013444 0.196876
+v 0.033376 -0.013444 0.193575
+v 0.065608 -0.013444 0.183797
+v 0.095313 -0.013444 0.167919
+v 0.121349 0.042842 0.146551
+v 0.142717 0.042842 0.120514
+v 0.158595 0.042842 0.090809
+v 0.168372 0.042842 0.058577
+v 0.171674 0.042842 0.025057
+v 0.168372 0.042842 -0.008463
+v 0.158595 0.042842 -0.040695
+v 0.142717 0.042842 -0.070400
+v 0.121349 0.042842 -0.096437
+v 0.095312 0.042842 -0.117804
+v 0.065607 0.042842 -0.133682
+v 0.033375 0.042842 -0.143459
+v -0.000145 0.042842 -0.146761
+v -0.033665 0.042842 -0.143460
+v -0.065897 0.042842 -0.133682
+v -0.095602 0.042842 -0.117804
+v -0.121638 0.042842 -0.096437
+v -0.143006 0.042842 -0.070400
+v -0.158884 0.042842 -0.040695
+v -0.168662 0.042842 -0.008463
+v -0.171963 0.042842 0.025057
+v -0.168662 0.042842 0.058577
+v -0.158885 0.042842 0.090809
+v -0.143007 0.042842 0.120514
+v -0.121639 0.042842 0.146551
+v -0.095603 0.042842 0.167919
+v -0.065898 0.042842 0.183797
+v -0.033666 0.042842 0.193574
+v -0.000146 0.042842 0.196876
+v 0.033374 0.042842 0.193575
+v 0.065606 0.042842 0.183798
+v 0.095311 0.042842 0.167920
+usemtl Material.003
+s 1
+f 129 161 162 130
+f 130 162 163 131
+f 131 163 164 132
+f 132 164 165 133
+f 133 165 166 134
+f 134 166 167 135
+f 135 167 168 136
+f 136 168 169 137
+f 137 169 170 138
+f 138 170 171 139
+f 139 171 172 140
+f 140 172 173 141
+f 141 173 174 142
+f 142 174 175 143
+f 143 175 176 144
+f 144 176 177 145
+f 145 177 178 146
+f 146 178 179 147
+f 147 179 180 148
+f 148 180 181 149
+f 149 181 182 150
+f 150 182 183 151
+f 151 183 184 152
+f 152 184 185 153
+f 153 185 186 154
+f 154 186 187 155
+f 155 187 188 156
+f 156 188 189 157
+f 157 189 190 158
+f 158 190 191 159
+f 159 191 192 160
+f 161 129 160 192
+o rForeArm
+v -0.808079 0.389348 -0.071138
+v -0.807899 0.383059 -0.076296
+v -0.807765 0.375883 -0.080129
+v -0.807683 0.368097 -0.082489
+v -0.807655 0.360000 -0.083286
+v -0.807683 0.351903 -0.082489
+v -0.807765 0.344117 -0.080129
+v -0.807899 0.336941 -0.076296
+v -0.808079 0.330651 -0.071138
+v -0.808299 0.325490 -0.064852
+v -0.808549 0.321654 -0.057681
+v -0.808821 0.319293 -0.049900
+v -0.809103 0.318495 -0.041809
+v -0.809386 0.319293 -0.033717
+v -0.809658 0.321654 -0.025936
+v -0.809908 0.325490 -0.018765
+v -0.810127 0.330652 -0.012480
+v -0.810308 0.336941 -0.007321
+v -0.810441 0.344117 -0.003488
+v -0.810524 0.351903 -0.001128
+v -0.810552 0.360000 -0.000331
+v -0.810524 0.368097 -0.001128
+v -0.810441 0.375883 -0.003488
+v -0.810308 0.383059 -0.007321
+v -0.810127 0.389348 -0.012480
+v -0.809908 0.394510 -0.018765
+v -0.809658 0.398345 -0.025936
+v -0.809386 0.400707 -0.033717
+v -0.809103 0.401505 -0.041809
+v -0.808821 0.400707 -0.049900
+v -0.808549 0.398345 -0.057681
+v -0.808299 0.394510 -0.064852
+v -0.728567 0.389348 -0.068361
+v -0.728387 0.383059 -0.073519
+v -0.728253 0.375883 -0.077352
+v -0.728170 0.368097 -0.079712
+v -0.728143 0.360000 -0.080509
+v -0.728170 0.351903 -0.079712
+v -0.728253 0.344117 -0.077352
+v -0.728387 0.336941 -0.073519
+v -0.728567 0.330651 -0.068361
+v -0.728786 0.325490 -0.062076
+v -0.729037 0.321654 -0.054905
+v -0.729308 0.319293 -0.047124
+v -0.729591 0.318495 -0.039032
+v -0.729874 0.319293 -0.030940
+v -0.730145 0.321654 -0.023159
+v -0.730396 0.325490 -0.015988
+v -0.730615 0.330651 -0.009703
+v -0.730795 0.336941 -0.004545
+v -0.730929 0.344116 -0.000712
+v -0.731012 0.351902 0.001648
+v -0.731039 0.360000 0.002445
+v -0.731012 0.368097 0.001649
+v -0.730929 0.375883 -0.000712
+v -0.730795 0.383058 -0.004545
+v -0.730615 0.389348 -0.009703
+v -0.730396 0.394510 -0.015988
+v -0.730145 0.398345 -0.023159
+v -0.729874 0.400707 -0.030940
+v -0.729591 0.401505 -0.039032
+v -0.729308 0.400707 -0.047123
+v -0.729037 0.398345 -0.054904
+v -0.728786 0.394510 -0.062075
+v -0.809103 0.360000 -0.041809
+v -0.729591 0.360000 -0.039032
+usemtl Material.001
+s 1
+f 257 193 194
+f 258 226 225
+f 257 194 195
+f 258 227 226
+f 257 195 196
+f 258 228 227
+f 257 196 197
+f 258 229 228
+f 257 197 198
+f 258 230 229
+f 257 198 199
+f 258 231 230
+f 257 199 200
+f 258 232 231
+f 257 200 201
+f 258 233 232
+f 257 201 202
+f 258 234 233
+f 257 202 203
+f 258 235 234
+f 257 203 204
+f 258 236 235
+f 257 204 205
+f 258 237 236
+f 257 205 206
+f 258 238 237
+f 257 206 207
+f 258 239 238
+f 257 207 208
+f 258 240 239
+f 257 208 209
+f 258 241 240
+f 257 209 210
+f 258 242 241
+f 257 210 211
+f 258 243 242
+f 257 211 212
+f 258 244 243
+f 257 212 213
+f 258 245 244
+f 257 213 214
+f 258 246 245
+f 257 214 215
+f 258 247 246
+f 257 215 216
+f 258 248 247
+f 257 216 217
+f 258 249 248
+f 257 217 218
+f 258 250 249
+f 257 218 219
+f 258 251 250
+f 257 219 220
+f 258 252 251
+f 257 220 221
+f 258 253 252
+f 257 221 222
+f 258 254 253
+f 257 222 223
+f 258 255 254
+f 257 223 224
+f 258 256 255
+f 224 193 257
+f 258 225 256
+f 193 225 226 194
+f 194 226 227 195
+f 195 227 228 196
+f 196 228 229 197
+f 197 229 230 198
+f 198 230 231 199
+f 199 231 232 200
+f 200 232 233 201
+f 201 233 234 202
+f 202 234 235 203
+f 203 235 236 204
+f 204 236 237 205
+f 205 237 238 206
+f 206 238 239 207
+f 207 239 240 208
+f 208 240 241 209
+f 209 241 242 210
+f 210 242 243 211
+f 211 243 244 212
+f 212 244 245 213
+f 213 245 246 214
+f 214 246 247 215
+f 215 247 248 216
+f 216 248 249 217
+f 217 249 250 218
+f 218 250 251 219
+f 219 251 252 220
+f 220 252 253 221
+f 221 253 254 222
+f 222 254 255 223
+f 223 255 256 224
+f 225 193 224 256
+o lForeArm
+v 0.735953 0.389348 -0.071138
+v 0.736133 0.383059 -0.076296
+v 0.736267 0.375883 -0.080129
+v 0.736349 0.368097 -0.082489
+v 0.736377 0.360000 -0.083286
+v 0.736349 0.351903 -0.082489
+v 0.736267 0.344117 -0.080129
+v 0.736133 0.336941 -0.076296
+v 0.735953 0.330651 -0.071138
+v 0.735733 0.325490 -0.064852
+v 0.735483 0.321654 -0.057681
+v 0.735211 0.319293 -0.049900
+v 0.734929 0.318495 -0.041809
+v 0.734646 0.319293 -0.033717
+v 0.734374 0.321654 -0.025936
+v 0.734124 0.325490 -0.018765
+v 0.733904 0.330652 -0.012480
+v 0.733724 0.336941 -0.007321
+v 0.733590 0.344117 -0.003488
+v 0.733508 0.351903 -0.001128
+v 0.733480 0.360000 -0.000331
+v 0.733508 0.368097 -0.001128
+v 0.733590 0.375883 -0.003488
+v 0.733724 0.383059 -0.007321
+v 0.733904 0.389348 -0.012480
+v 0.734124 0.394510 -0.018765
+v 0.734374 0.398345 -0.025936
+v 0.734646 0.400707 -0.033717
+v 0.734929 0.401505 -0.041809
+v 0.735211 0.400707 -0.049900
+v 0.735483 0.398345 -0.057681
+v 0.735733 0.394510 -0.064852
+v 0.815465 0.389348 -0.068361
+v 0.815645 0.383059 -0.073519
+v 0.815779 0.375883 -0.077352
+v 0.815861 0.368097 -0.079712
+v 0.815889 0.360000 -0.080509
+v 0.815861 0.351903 -0.079712
+v 0.815779 0.344117 -0.077352
+v 0.815645 0.336941 -0.073519
+v 0.815465 0.330651 -0.068361
+v 0.815246 0.325490 -0.062076
+v 0.814995 0.321654 -0.054905
+v 0.814723 0.319293 -0.047124
+v 0.814441 0.318495 -0.039032
+v 0.814158 0.319293 -0.030940
+v 0.813887 0.321654 -0.023159
+v 0.813636 0.325490 -0.015988
+v 0.813417 0.330651 -0.009703
+v 0.813237 0.336941 -0.004545
+v 0.813103 0.344116 -0.000712
+v 0.813020 0.351902 0.001648
+v 0.812992 0.360000 0.002445
+v 0.813020 0.368097 0.001649
+v 0.813103 0.375883 -0.000712
+v 0.813237 0.383058 -0.004545
+v 0.813417 0.389348 -0.009703
+v 0.813636 0.394510 -0.015988
+v 0.813887 0.398345 -0.023159
+v 0.814158 0.400707 -0.030940
+v 0.814441 0.401505 -0.039032
+v 0.814723 0.400707 -0.047123
+v 0.814995 0.398345 -0.054904
+v 0.815246 0.394510 -0.062075
+v 0.734929 0.360000 -0.041809
+v 0.814441 0.360000 -0.039032
+usemtl Material.002
+s 1
+f 323 259 260
+f 324 292 291
+f 323 260 261
+f 324 293 292
+f 323 261 262
+f 324 294 293
+f 323 262 263
+f 324 295 294
+f 323 263 264
+f 324 296 295
+f 323 264 265
+f 324 297 296
+f 323 265 266
+f 324 298 297
+f 323 266 267
+f 324 299 298
+f 323 267 268
+f 324 300 299
+f 323 268 269
+f 324 301 300
+f 323 269 270
+f 324 302 301
+f 323 270 271
+f 324 303 302
+f 323 271 272
+f 324 304 303
+f 323 272 273
+f 324 305 304
+f 323 273 274
+f 324 306 305
+f 323 274 275
+f 324 307 306
+f 323 275 276
+f 324 308 307
+f 323 276 277
+f 324 309 308
+f 323 277 278
+f 324 310 309
+f 323 278 279
+f 324 311 310
+f 323 279 280
+f 324 312 311
+f 323 280 281
+f 324 313 312
+f 323 281 282
+f 324 314 313
+f 323 282 283
+f 324 315 314
+f 323 283 284
+f 324 316 315
+f 323 284 285
+f 324 317 316
+f 323 285 286
+f 324 318 317
+f 323 286 287
+f 324 319 318
+f 323 287 288
+f 324 320 319
+f 323 288 289
+f 324 321 320
+f 323 289 290
+f 324 322 321
+f 290 259 323
+f 324 291 322
+f 259 291 292 260
+f 260 292 293 261
+f 261 293 294 262
+f 262 294 295 263
+f 263 295 296 264
+f 264 296 297 265
+f 265 297 298 266
+f 266 298 299 267
+f 267 299 300 268
+f 268 300 301 269
+f 269 301 302 270
+f 270 302 303 271
+f 271 303 304 272
+f 272 304 305 273
+f 273 305 306 274
+f 274 306 307 275
+f 275 307 308 276
+f 276 308 309 277
+f 277 309 310 278
+f 278 310 311 279
+f 279 311 312 280
+f 280 312 313 281
+f 281 313 314 282
+f 282 314 315 283
+f 283 315 316 284
+f 284 316 317 285
+f 285 317 318 286
+f 286 318 319 287
+f 287 319 320 288
+f 288 320 321 289
+f 289 321 322 290
+f 291 259 290 322
+o head
+v 0.190000 0.692001 -0.190000
+v 0.190000 0.659348 -0.190000
+v -0.190000 0.659348 -0.190000
+v -0.190000 0.692001 -0.190000
+v 0.190000 0.692001 0.190000
+v 0.190000 0.659348 0.190000
+v -0.190000 0.659348 0.190000
+v -0.190000 0.692001 0.190000
+v -0.000000 0.992001 0.000000
+usemtl Material
+s 1
+f 325 326 327 328
+f 329 332 331 330
+f 325 329 330 326
+f 326 330 331 327
+f 327 331 332 328
+f 329 325 328 332
+f 329 332 333
+f 325 329 333
+f 325 333 328
+f 328 333 332
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|