Advertisement
Androgeos

[Class C] Simple Midas

Mar 25th, 2012
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.34 KB | None | 0 0
  1. // car: Simple Midas
  2. // origin: Toyota Crown Comfort Taxi
  3. ---------------------
  4.  
  5. // To start making you car you must start by reading the tutorial at:
  6. // http://www.needformadness.com/developer/simplecar.html
  7.  
  8.  
  9. 1stColor(32,32,32)
  10. 2ndColor(224,144,84)
  11.  
  12.  
  13. ScaleZ(300)
  14. ScaleY(300)
  15. ScaleX(190)
  16.  
  17.  
  18. <p>
  19. c(32,32,32)
  20.  
  21. p(40,-13,42)
  22. p(40,-3,48)
  23. p(40,-3,17)
  24. p(40,-14,17)
  25. </p>
  26.  
  27. <p>
  28. glass()
  29.  
  30. p(35,-27,-12)
  31. p(35,-27,4)
  32. p(40,-14,17)
  33. p(40,-14,-12)
  34. </p>
  35.  
  36. <p>
  37. c(32,32,32)
  38.  
  39. p(40,-3,-12)
  40. p(40,-14,-12)
  41. p(40,-14,17)
  42. p(40,-3,17)
  43. </p>
  44.  
  45. <p>
  46. glass()
  47.  
  48. p(35,-27,-32)
  49. p(35,-27,-12)
  50. p(40,-14,-12)
  51. p(40,-14,-34)
  52. </p>
  53.  
  54. <p>
  55. c(32,32,32)
  56.  
  57. p(40,-14,-34)
  58. p(40,-14,-12)
  59. p(40,-3,-12)
  60. p(40,-3,-34)
  61. </p>
  62.  
  63. <p>
  64. c(32,32,32)
  65.  
  66. p(40,-13,-53)
  67. p(40,-14,-34)
  68. p(40,-3,-34)
  69. p(40,-3,-52)
  70. </p>
  71.  
  72. // Mirror of the 6 polygons above along the X axis:
  73.  
  74. <p>
  75. c(32,32,32)
  76.  
  77. p(-40,-13,42)
  78. p(-40,-3,48)
  79. p(-40,-3,17)
  80. p(-40,-14,17)
  81. </p>
  82.  
  83. <p>
  84. glass()
  85.  
  86. p(-35,-27,-12)
  87. p(-35,-27,4)
  88. p(-40,-14,17)
  89. p(-40,-14,-12)
  90. </p>
  91.  
  92. <p>
  93. c(32,32,32)
  94.  
  95. p(-40,-3,-12)
  96. p(-40,-14,-12)
  97. p(-40,-14,17)
  98. p(-40,-3,17)
  99. </p>
  100.  
  101. <p>
  102. glass()
  103.  
  104. p(-35,-27,-32)
  105. p(-35,-27,-12)
  106. p(-40,-14,-12)
  107. p(-40,-14,-34)
  108. </p>
  109.  
  110. <p>
  111. c(32,32,32)
  112.  
  113. p(-40,-14,-34)
  114. p(-40,-14,-12)
  115. p(-40,-3,-12)
  116. p(-40,-3,-34)
  117. </p>
  118.  
  119. <p>
  120. c(32,32,32)
  121.  
  122. p(-40,-13,-53)
  123. p(-40,-14,-34)
  124. p(-40,-3,-34)
  125. p(-40,-3,-52)
  126. </p>
  127.  
  128. // End of mirror
  129.  
  130. <p>
  131. c(32,32,32)
  132.  
  133. p(35,-27,-12)
  134. p(35,-27,-32)
  135. p(-35,-27,-32)
  136. p(-35,-27,-12)
  137. </p>
  138.  
  139. <p>
  140. c(32,32,32)
  141.  
  142. p(35,-27,4)
  143. p(35,-27,-12)
  144. p(-35,-27,-12)
  145. p(-35,-27,4)
  146. </p>
  147.  
  148. <p>
  149. glass()
  150.  
  151. p(40,-14,17)
  152. p(35,-27,4)
  153. p(-35,-27,4)
  154. p(-40,-14,17)
  155. </p>
  156.  
  157. <p>
  158. c(32,32,32)
  159.  
  160. p(40,-13,42)
  161. p(40,-14,17)
  162. p(-40,-14,17)
  163. p(-40,-13,42)
  164. </p>
  165.  
  166. <p>
  167. glass()
  168.  
  169. p(35,-27,-32)
  170. p(40,-14,-34)
  171. p(-40,-14,-34)
  172. p(-35,-27,-32)
  173. </p>
  174.  
  175. <p>
  176. c(32,32,32)
  177.  
  178. p(40,-14,-34)
  179. p(40,-13,-53)
  180. p(-40,-13,-53)
  181. p(-40,-14,-34)
  182. </p>
  183.  
  184. <p>
  185. c(224,144,84)
  186.  
  187. p(40,-13,42)
  188. p(40,-3,48)
  189. p(34,-3,48)
  190. p(34,-13,42)
  191. </p>
  192.  
  193. <p>
  194. c(224,224,224)
  195. lightF
  196.  
  197. p(34,-13,42)
  198. p(34,-3,48)
  199. p(18,-3,48)
  200. p(18,-13,42)
  201. </p>
  202.  
  203. // Mirror of the 2 polygons above along the X axis:
  204.  
  205. <p>
  206. c(224,144,84)
  207.  
  208. p(-40,-13,42)
  209. p(-40,-3,48)
  210. p(-34,-3,48)
  211. p(-34,-13,42)
  212. </p>
  213.  
  214. <p>
  215. c(224,224,224)
  216. lightF
  217.  
  218. p(-34,-13,42)
  219. p(-34,-3,48)
  220. p(-18,-3,48)
  221. p(-18,-13,42)
  222. </p>
  223.  
  224. // End of mirror
  225.  
  226. <p>
  227. c(160,160,160)
  228.  
  229. p(18,-13,42)
  230. p(18,-3,48)
  231. p(-18,-3,48)
  232. p(-18,-13,42)
  233. </p>
  234.  
  235. <p>
  236. c(224,0,0)
  237. lightB
  238.  
  239. p(40,-13,-53)
  240. p(40,-3,-52)
  241. p(28,-3,-52)
  242. p(36,-13,-53)
  243. </p>
  244.  
  245. // Mirror of the polygon above along the X axis:
  246.  
  247. <p>
  248. c(224,0,0)
  249. lightB
  250.  
  251. p(-40,-13,-53)
  252. p(-40,-3,-52)
  253. p(-28,-3,-52)
  254. p(-36,-13,-53)
  255. </p>
  256.  
  257. // End of mirror
  258.  
  259. <p>
  260. c(32,32,32)
  261.  
  262. p(36,-13,-53)
  263. p(28,-3,-52)
  264. p(-28,-3,-52)
  265. p(-36,-13,-53)
  266. </p>
  267.  
  268. <p>
  269. c(64,64,64)
  270.  
  271. p(40,-3,-52)
  272. p(40,-3,-34)
  273. p(-40,-3,-34)
  274. p(-40,-3,-52)
  275. </p>
  276.  
  277. <p>
  278. c(64,64,64)
  279.  
  280. p(40,-3,-34)
  281. p(40,-3,-12)
  282. p(-40,-3,-12)
  283. p(-40,-3,-34)
  284. </p>
  285.  
  286. <p>
  287. c(64,64,64)
  288.  
  289. p(40,-3,-12)
  290. p(40,-3,17)
  291. p(-40,-3,17)
  292. p(-40,-3,-12)
  293. </p>
  294.  
  295. <p>
  296. c(64,64,64)
  297.  
  298. p(40,-3,17)
  299. p(40,-3,48)
  300. p(-40,-3,48)
  301. p(-40,-3,17)
  302. </p>
  303.  
  304.  
  305. stat(122,121,93,92,92)
  306.  
  307.  
  308. handling(150)
  309.  
  310.  
  311. gwgr(-20)
  312. rims(140,140,140,16,48)
  313. w(-42,-2,30,11,22,20)
  314. w(42,-2,30,11,-22,20)
  315.  
  316. gwgr(-20)
  317. rims(140,140,140,16,48)
  318. w(-42,-2,-32,0,22,20)
  319. w(42,-2,-32,0,-22,20)
  320.  
  321.  
  322. physics(72,72,56,56,50,56,34,34,50,44,34,80,54,50,0,3490)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement