home *** CD-ROM | disk | FTP | other *** search
/ The 3rd Dimension / TheThirdDimension.iso / data / camera.x < prev    next >
Text File  |  1996-05-03  |  7KB  |  350 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  33;
  136.  0.296875;0.582031;0.253906;,
  137.  0.296875;0.578125;-0.327881;,
  138.  -0.281006;0.578125;-0.327881;,
  139.  -0.281006;0.582031;0.253906;,
  140.  0.296875;0.000000;0.253906;,
  141.  0.296875;0.000000;-0.327881;,
  142.  -0.281006;0.000000;-0.327881;,
  143.  -0.281006;0.000000;0.253906;,
  144.  0.167969;0.175781;0.250000;,
  145.  0.039063;0.093750;0.250000;,
  146.  -0.109131;0.128906;0.250000;,
  147.  -0.187256;0.257813;0.250000;,
  148.  -0.152100;0.406250;0.250000;,
  149.  -0.023193;0.488281;0.250000;,
  150.  0.125000;0.453125;0.250000;,
  151.  0.203125;0.320313;0.250000;,
  152.  0.167969;0.175781;0.558594;,
  153.  0.039063;0.093750;0.558594;,
  154.  -0.109131;0.128906;0.558594;,
  155.  -0.187256;0.257813;0.558594;,
  156.  -0.152100;0.406250;0.558594;,
  157.  -0.023193;0.488281;0.558594;,
  158.  0.125000;0.453125;0.558594;,
  159.  0.203125;0.320313;0.558594;,
  160.  0.007813;0.289063;0.558594;,
  161.  0.156250;0.578125;-0.331787;,
  162.  0.156250;0.578125;0.121094;,
  163.  0.156250;0.781250;-0.034912;,
  164.  0.156250;0.781250;-0.331787;,
  165.  -0.136475;0.578125;-0.331787;,
  166.  -0.136475;0.578125;0.121094;,
  167.  -0.136475;0.781250;-0.034912;,
  168.  -0.136475;0.781250;-0.331787;;
  169.  
  170.  46;
  171.  3;0,1,2;,
  172.  3;0,2,3;,
  173.  3;0,4,5;,
  174.  3;0,5,1;,
  175.  3;1,5,6;,
  176.  3;1,6,2;,
  177.  3;2,6,7;,
  178.  3;2,7,3;,
  179.  3;3,7,4;,
  180.  3;3,4,0;,
  181.  3;4,7,6;,
  182.  3;4,6,5;,
  183.  3;8,17,9;,
  184.  3;8,16,17;,
  185.  3;9,18,10;,
  186.  3;9,17,18;,
  187.  3;10,19,11;,
  188.  3;10,18,19;,
  189.  3;11,20,12;,
  190.  3;11,19,20;,
  191.  3;12,21,13;,
  192.  3;12,20,21;,
  193.  3;13,22,14;,
  194.  3;13,21,22;,
  195.  3;14,23,15;,
  196.  3;14,22,23;,
  197.  3;15,16,8;,
  198.  3;15,23,16;,
  199.  3;16,24,17;,
  200.  3;17,24,18;,
  201.  3;18,24,19;,
  202.  3;19,24,20;,
  203.  3;20,24,21;,
  204.  3;21,24,22;,
  205.  3;22,24,23;,
  206.  3;23,24,16;,
  207.  3;25,27,26;,
  208.  3;25,28,27;,
  209.  3;26,31,30;,
  210.  3;26,27,31;,
  211.  3;27,32,31;,
  212.  3;27,28,32;,
  213.  3;28,29,32;,
  214.  3;28,25,29;,
  215.  3;29,31,32;,
  216.  3;29,30,31;;
  217.  
  218.  MeshMaterialList {
  219.   1;
  220.   1;
  221.   0;;
  222.   Material {
  223.    0.498039;0.498039;0.498039;1.000000;;
  224.    0.000000;
  225.    0.000000;0.000000;0.000000;;
  226.    0.000000;0.000000;0.000000;;
  227.   }
  228.  }
  229.  MeshNormals {
  230.   33;
  231.   0.667664;0.667649;0.329349;,
  232.   0.407338;0.407329;-0.817410;,
  233.   -0.665674;0.665659;-0.337306;,
  234.   -0.409165;0.409156;0.815583;,
  235.   0.333333;-0.666667;0.666667;,
  236.   0.816497;-0.408248;-0.408248;,
  237.   -0.333333;-0.666667;-0.666667;,
  238.   -0.816497;-0.408248;0.408248;,
  239.   0.728453;-0.685095;-0.000000;,
  240.   0.026956;-0.999637;-0.000000;,
  241.   -0.694765;-0.719237;-0.000000;,
  242.   -0.999790;-0.020475;-0.000000;,
  243.   -0.729735;0.683730;-0.000000;,
  244.   -0.026956;0.999637;-0.000000;,
  245.   0.701282;0.712884;0.000000;,
  246.   0.999925;0.012232;-0.000000;,
  247.   0.719453;-0.381848;0.580155;,
  248.   0.245512;-0.774849;0.582523;,
  249.   -0.383239;-0.717176;0.582054;,
  250.   -0.779511;-0.234171;0.580971;,
  251.   -0.720783;0.378702;0.580566;,
  252.   -0.245512;0.774849;0.582523;,
  253.   0.385816;0.715034;0.582985;,
  254.   0.782360;0.225719;0.580486;,
  255.   0.000000;0.000000;1.000000;,
  256.   0.894427;0.000000;-0.447214;,
  257.   0.447214;0.544806;0.709356;,
  258.   0.591404;0.771520;0.234517;,
  259.   0.408248;0.408248;-0.816497;,
  260.   -0.707107;0.000000;-0.707107;,
  261.   -0.707107;0.430707;0.560795;,
  262.   -0.591404;0.655933;0.469033;,
  263.   -0.408248;0.816497;-0.408248;;
  264.  
  265.   46;
  266.   3;0,1,2;,
  267.   3;0,2,3;,
  268.   3;0,4,5;,
  269.   3;0,5,1;,
  270.   3;1,5,6;,
  271.   3;1,6,2;,
  272.   3;2,6,7;,
  273.   3;2,7,3;,
  274.   3;3,7,4;,
  275.   3;3,4,0;,
  276.   3;4,7,6;,
  277.   3;4,6,5;,
  278.   3;8,17,9;,
  279.   3;8,16,17;,
  280.   3;9,18,10;,
  281.   3;9,17,18;,
  282.   3;10,19,11;,
  283.   3;10,18,19;,
  284.   3;11,20,12;,
  285.   3;11,19,20;,
  286.   3;12,21,13;,
  287.   3;12,20,21;,
  288.   3;13,22,14;,
  289.   3;13,21,22;,
  290.   3;14,23,15;,
  291.   3;14,22,23;,
  292.   3;15,16,8;,
  293.   3;15,23,16;,
  294.   3;16,24,17;,
  295.   3;17,24,18;,
  296.   3;18,24,19;,
  297.   3;19,24,20;,
  298.   3;20,24,21;,
  299.   3;21,24,22;,
  300.   3;22,24,23;,
  301.   3;23,24,16;,
  302.   3;25,27,26;,
  303.   3;25,28,27;,
  304.   3;26,31,30;,
  305.   3;26,27,31;,
  306.   3;27,32,31;,
  307.   3;27,28,32;,
  308.   3;28,29,32;,
  309.   3;28,25,29;,
  310.   3;29,31,32;,
  311.   3;29,30,31;;
  312.  }
  313.  MeshTextureCoords {
  314.   33;
  315.   0.000000;0.000000;,
  316.   0.000000;0.000000;,
  317.   0.000000;0.000000;,
  318.   0.000000;0.000000;,
  319.   0.000000;0.000000;,
  320.   0.000000;0.000000;,
  321.   0.000000;0.000000;,
  322.   0.000000;0.000000;,
  323.   0.000000;0.000000;,
  324.   0.000000;0.000000;,
  325.   0.000000;0.000000;,
  326.   0.000000;0.000000;,
  327.   0.000000;0.000000;,
  328.   0.000000;0.000000;,
  329.   0.000000;0.000000;,
  330.   0.000000;0.000000;,
  331.   0.000000;0.000000;,
  332.   0.000000;0.000000;,
  333.   0.000000;0.000000;,
  334.   0.000000;0.000000;,
  335.   0.000000;0.000000;,
  336.   0.000000;0.000000;,
  337.   0.000000;0.000000;,
  338.   0.000000;0.000000;,
  339.   0.000000;0.000000;,
  340.   0.000000;0.000000;,
  341.   0.000000;0.000000;,
  342.   0.000000;0.000000;,
  343.   0.000000;0.000000;,
  344.   0.000000;0.000000;,
  345.   0.000000;0.000000;,
  346.   0.000000;0.000000;,
  347.   0.000000;0.000000;;
  348.  }
  349. }
  350.