home *** CD-ROM | disk | FTP | other *** search
/ The 3rd Dimension / TheThirdDimension.iso / data / cone.x < prev    next >
Text File  |  1996-06-18  |  8KB  |  421 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.  34;
  136.  0.011778;1.392950;0.004628;,
  137.  0.009111;1.392950;0.008783;,
  138.  0.005056;1.392950;0.011601;,
  139.  0.000232;1.392950;0.012653;,
  140.  -0.004627;1.392950;0.011779;,
  141.  -0.008782;1.392950;0.009111;,
  142.  -0.011600;1.392950;0.005057;,
  143.  -0.012652;1.392950;0.000233;,
  144.  -0.011778;1.392950;-0.004626;,
  145.  -0.009111;1.392950;-0.008781;,
  146.  -0.005056;1.392950;-0.011599;,
  147.  -0.000232;1.392950;-0.012651;,
  148.  0.004627;1.392950;-0.011777;,
  149.  0.008782;1.392950;-0.009110;,
  150.  0.011600;1.392950;-0.005056;,
  151.  0.012652;1.392950;-0.000231;,
  152.  1.396362;-1.392950;0.548571;,
  153.  1.080142;-1.392950;1.041178;,
  154.  0.599479;-1.392950;1.375276;,
  155.  0.027551;-1.392950;1.500000;,
  156.  -0.548571;-1.392950;1.396363;,
  157.  -1.041178;-1.392950;1.080142;,
  158.  -1.375275;-1.392950;0.599479;,
  159.  -1.500000;-1.392949;0.027551;,
  160.  -1.396363;-1.392949;-0.548571;,
  161.  -1.080142;-1.392949;-1.041178;,
  162.  -0.599479;-1.392949;-1.375276;,
  163.  -0.027551;-1.392949;-1.500000;,
  164.  0.548571;-1.392949;-1.396362;,
  165.  1.041179;-1.392949;-1.080141;,
  166.  1.375276;-1.392949;-0.599478;,
  167.  1.500000;-1.392950;-0.027550;,
  168.  0.000000;1.392950;0.000000;,
  169.  0.000000;-1.392950;0.000000;;
  170.  
  171.  64;
  172.  3;0,32,1;,
  173.  3;1,32,2;,
  174.  3;2,32,3;,
  175.  3;3,32,4;,
  176.  3;4,32,5;,
  177.  3;5,32,6;,
  178.  3;6,32,7;,
  179.  3;7,32,8;,
  180.  3;8,32,9;,
  181.  3;9,32,10;,
  182.  3;10,32,11;,
  183.  3;11,32,12;,
  184.  3;12,32,13;,
  185.  3;13,32,14;,
  186.  3;14,32,15;,
  187.  3;15,32,0;,
  188.  3;0,17,16;,
  189.  3;0,1,17;,
  190.  3;1,18,17;,
  191.  3;1,2,18;,
  192.  3;2,19,18;,
  193.  3;2,3,19;,
  194.  3;3,20,19;,
  195.  3;3,4,20;,
  196.  3;4,21,20;,
  197.  3;4,5,21;,
  198.  3;5,22,21;,
  199.  3;5,6,22;,
  200.  3;6,23,22;,
  201.  3;6,7,23;,
  202.  3;7,24,23;,
  203.  3;7,8,24;,
  204.  3;8,25,24;,
  205.  3;8,9,25;,
  206.  3;9,26,25;,
  207.  3;9,10,26;,
  208.  3;10,27,26;,
  209.  3;10,11,27;,
  210.  3;11,28,27;,
  211.  3;11,12,28;,
  212.  3;12,29,28;,
  213.  3;12,13,29;,
  214.  3;13,30,29;,
  215.  3;13,14,30;,
  216.  3;14,31,30;,
  217.  3;14,15,31;,
  218.  3;15,16,31;,
  219.  3;15,0,16;,
  220.  3;16,17,33;,
  221.  3;17,18,33;,
  222.  3;18,19,33;,
  223.  3;19,20,33;,
  224.  3;20,21,33;,
  225.  3;21,22,33;,
  226.  3;22,23,33;,
  227.  3;23,24,33;,
  228.  3;24,25,33;,
  229.  3;25,26,33;,
  230.  3;26,27,33;,
  231.  3;27,28,33;,
  232.  3;28,29,33;,
  233.  3;29,30,33;,
  234.  3;30,31,33;,
  235.  3;31,16,33;;
  236.  
  237.  MeshMaterialList {
  238.   1;
  239.   1;
  240.   0;;
  241.   Material {
  242.    0.000000;1.000000;0.000000;1.000000;;
  243.    27.200001;
  244.    0.819608;0.819608;0.819608;;
  245.    0.000000;0.000000;0.000000;;
  246.   }
  247.  }
  248.  MeshNormals {
  249.   66;
  250.   0.000000;1.000000;0.000000;,
  251.   0.821033;0.471028;0.322549;,
  252.   0.000000;1.000000;0.000000;,
  253.   0.635101;0.471028;0.612192;,
  254.   0.000000;1.000000;0.000000;,
  255.   0.352482;0.471028;0.808634;,
  256.   0.000000;1.000000;0.000000;,
  257.   0.016200;0.471028;0.881970;,
  258.   0.000000;1.000000;0.000000;,
  259.   -0.322549;0.471028;0.821033;,
  260.   0.000000;1.000000;0.000000;,
  261.   -0.612192;0.471028;0.635101;,
  262.   0.000000;1.000000;0.000000;,
  263.   -0.808634;0.471028;0.352482;,
  264.   0.000000;1.000000;0.000000;,
  265.   -0.881969;0.471028;0.016200;,
  266.   0.000000;1.000000;0.000000;,
  267.   -0.821033;0.471028;-0.322548;,
  268.   0.000000;1.000000;0.000000;,
  269.   -0.635101;0.471028;-0.612191;,
  270.   0.000000;1.000000;0.000000;,
  271.   -0.352482;0.471028;-0.808634;,
  272.   0.000000;1.000000;0.000000;,
  273.   -0.016200;0.471028;-0.881969;,
  274.   0.000000;1.000000;0.000000;,
  275.   0.322549;0.471028;-0.821033;,
  276.   0.000000;1.000000;0.000000;,
  277.   0.612192;0.471028;-0.635101;,
  278.   0.000000;1.000000;0.000000;,
  279.   0.808634;0.471028;-0.352481;,
  280.   0.000000;1.000000;0.000000;,
  281.   0.881969;0.471028;-0.016199;,
  282.   0.821033;0.471028;0.322549;,
  283.   0.000000;-1.000000;-0.000001;,
  284.   0.635101;0.471028;0.612192;,
  285.   0.000000;-1.000000;-0.000001;,
  286.   0.352482;0.471028;0.808634;,
  287.   0.000000;-1.000000;0.000000;,
  288.   0.016200;0.471028;0.881970;,
  289.   0.000000;-1.000000;0.000000;,
  290.   -0.322549;0.471028;0.821033;,
  291.   0.000000;-1.000000;0.000000;,
  292.   -0.612192;0.471028;0.635101;,
  293.   0.000000;-1.000000;0.000000;,
  294.   -0.808634;0.471028;0.352482;,
  295.   0.000000;-1.000000;0.000000;,
  296.   -0.881969;0.471028;0.016200;,
  297.   0.000000;-1.000000;-0.000001;,
  298.   -0.821033;0.471028;-0.322548;,
  299.   0.000000;-1.000000;0.000000;,
  300.   -0.635101;0.471028;-0.612191;,
  301.   0.000000;-1.000000;0.000000;,
  302.   -0.352482;0.471028;-0.808634;,
  303.   0.000000;-1.000000;0.000000;,
  304.   -0.016199;0.471028;-0.881969;,
  305.   0.000000;-1.000000;0.000000;,
  306.   0.322549;0.471028;-0.821033;,
  307.   0.000000;-1.000000;0.000000;,
  308.   0.612192;0.471028;-0.635101;,
  309.   0.000000;-1.000000;0.000000;,
  310.   0.808634;0.471028;-0.352481;,
  311.   0.000000;-1.000000;0.000000;,
  312.   0.881969;0.471028;-0.016199;,
  313.   0.000000;-1.000000;0.000000;,
  314.   0.000000;1.000000;0.000000;,
  315.   0.000000;-1.000000;-0.000001;;
  316.  
  317.   64;
  318.   3;0,64,2;,
  319.   3;2,64,4;,
  320.   3;4,64,6;,
  321.   3;6,64,8;,
  322.   3;8,64,10;,
  323.   3;10,64,12;,
  324.   3;12,64,14;,
  325.   3;14,64,16;,
  326.   3;16,64,18;,
  327.   3;18,64,20;,
  328.   3;20,64,22;,
  329.   3;22,64,24;,
  330.   3;24,64,26;,
  331.   3;26,64,28;,
  332.   3;28,64,30;,
  333.   3;30,64,0;,
  334.   3;1,34,32;,
  335.   3;1,3,34;,
  336.   3;3,36,34;,
  337.   3;3,5,36;,
  338.   3;5,38,36;,
  339.   3;5,7,38;,
  340.   3;7,40,38;,
  341.   3;7,9,40;,
  342.   3;9,42,40;,
  343.   3;9,11,42;,
  344.   3;11,44,42;,
  345.   3;11,13,44;,
  346.   3;13,46,44;,
  347.   3;13,15,46;,
  348.   3;15,48,46;,
  349.   3;15,17,48;,
  350.   3;17,50,48;,
  351.   3;17,19,50;,
  352.   3;19,52,50;,
  353.   3;19,21,52;,
  354.   3;21,54,52;,
  355.   3;21,23,54;,
  356.   3;23,56,54;,
  357.   3;23,25,56;,
  358.   3;25,58,56;,
  359.   3;25,27,58;,
  360.   3;27,60,58;,
  361.   3;27,29,60;,
  362.   3;29,62,60;,
  363.   3;29,31,62;,
  364.   3;31,32,62;,
  365.   3;31,1,32;,
  366.   3;33,35,65;,
  367.   3;35,37,65;,
  368.   3;37,39,65;,
  369.   3;39,41,65;,
  370.   3;41,43,65;,
  371.   3;43,45,65;,
  372.   3;45,47,65;,
  373.   3;47,49,65;,
  374.   3;49,51,65;,
  375.   3;51,53,65;,
  376.   3;53,55,65;,
  377.   3;55,57,65;,
  378.   3;57,59,65;,
  379.   3;59,61,65;,
  380.   3;61,63,65;,
  381.   3;63,33,65;;
  382.  }
  383.  MeshTextureCoords {
  384.   34;
  385.   0.000000;0.000000;,
  386.   0.000000;0.000000;,
  387.   0.000000;0.000000;,
  388.   0.000000;0.000000;,
  389.   0.000000;0.000000;,
  390.   0.000000;0.000000;,
  391.   0.000000;0.000000;,
  392.   0.000000;0.000000;,
  393.   0.000000;0.000000;,
  394.   0.000000;0.000000;,
  395.   0.000000;0.000000;,
  396.   0.000000;0.000000;,
  397.   0.000000;0.000000;,
  398.   0.000000;0.000000;,
  399.   0.000000;0.000000;,
  400.   0.000000;0.000000;,
  401.   0.000000;0.000000;,
  402.   0.000000;0.000000;,
  403.   0.000000;0.000000;,
  404.   0.000000;0.000000;,
  405.   0.000000;0.000000;,
  406.   0.000000;0.000000;,
  407.   0.000000;0.000000;,
  408.   0.000000;0.000000;,
  409.   0.000000;0.000000;,
  410.   0.000000;0.000000;,
  411.   0.000000;0.000000;,
  412.   0.000000;0.000000;,
  413.   0.000000;0.000000;,
  414.   0.000000;0.000000;,
  415.   0.000000;0.000000;,
  416.   0.000000;0.000000;,
  417.   0.000000;0.000000;,
  418.   0.000000;0.000000;;
  419.  }
  420. }
  421.