Ah, i’d love to switch to collada.
But i have to save back mesh data after on-location mapping and process them once more generating UV1, also in vvvv.
Thanks for your advice in both threads.
-< Expand here for single mesh file example
xof 0303txt 0032
template Vector {
<3d82ab5e-62da-11cf-ab39-0020af71e433>
FLOAT x;
FLOAT y;
FLOAT z;
}
template MeshFace {
<3d82ab5f-62da-11cf-ab39-0020af71e433>
DWORD nFaceVertexIndices;
array DWORD faceVertexIndicesnFaceVertexIndices;
}
template Mesh {
<3d82ab44-62da-11cf-ab39-0020af71e433>
DWORD nVertices;
array Vector verticesnVertices;
DWORD nFaces;
array MeshFace facesnFaces;
…
}
template Coords2d {
FLOAT u;
FLOAT v;
}
template MeshTextureCoords {
DWORD nTextureCoords;
array Coords2d textureCoordsnTextureCoords;
}
template FVFData {
DWORD dwFVF;
DWORD nDWords;
array DWORD datanDWords;
}
Mesh {
16;
-2.683194;1.811859;-3.324666;,
-2.512511;2.022193;-3.321117;,
-2.358387;2.238596;-3.320401;,
-2.076324;2.540364;-3.323196;,
-2.475456;1.651765;-3.316582;,
-2.319636;1.857560;-3.324777;,
-1.999944;1.970482;-3.314371;,
-1.704298;2.255735;-3.322589;,
-2.293994;1.493344;-3.328329;,
-1.998988;1.778143;-3.328047;,
-1.682833;1.874706;-3.325737;,
-1.473322;2.044995;-3.325255;,
-1.965207;1.260143;-3.331863;,
-1.691450;1.493205;-3.324244;,
-1.486339;1.675613;-3.328047;,
-1.281281;1.880673;-3.328047;;
12;
3;0,1,5;,
3;5,4,0;,
3;1,2,6;,
3;6,5,1;,
3;4,5,9;,
3;9,8,4;,
3;5,6,10;,
3;10,9,5;,
3;6,7,11;,
3;11,10,6;,
3;9,10,14;,
3;14,13,9;;
MeshTextureCoords {
16;
0.000000;0.000000;,
0.285714;0.000000;,
0.571429;0.000000;,
1.000000;0.000000;,
0.000000;0.285714;,
0.285714;0.285714;,
0.571429;0.428571;,
1.000000;0.428571;,
0.000000;0.571429;,
0.428571;0.571429;,
0.714286;0.714286;,
1.000000;0.714286;,
0.000000;1.000000;,
0.428571;1.000000;,
0.714286;1.000000;,
1.000000;1.000000;;
}
FVFData {
258;
32;
1050253722,
1025904086,
1051802388,
1025904086,
1053351054,
1025904086,
1055674053,
1025904086,
1050253722,
1034292694,
1051802388,
1034292694,
1053351054,
1037013324,
1055674053,
1037013324,
1050253722,
1039733954,
1052576721,
1039733954,
1054125387,
1041320988,
1055674053,
1041320988,
1050253722,
1044041617,
1052576721,
1044041617,
1054125387,
1044041617,
1055674053,
1044041617;
}
}
group of Meshes
I’ve put the group of Meshes online also, and i hope to find a solution for that problem really.