Skip to content

Instantly share code, notes, and snippets.

@mechamug
Created March 6, 2020 00:25
Show Gist options
  • Save mechamug/c95f4971d1cb868de663b87bc9740a9c to your computer and use it in GitHub Desktop.
Save mechamug/c95f4971d1cb868de663b87bc9740a9c to your computer and use it in GitHub Desktop.
// Generated By: LDView 4.2.1.1 (C) Travis Cobbs and Peter Bartfai, 2016
// See: http://ldview.sourceforge.net/
// Date: Thu Mar 5 14:40:50 2020
// Input LDraw File: Photon Chaser.ldr
// LDraw File Author: Allen Smith
//
// This file was automatically generated from an LDraw file by the program
// LDView. See comments above for further details.
#version 3.6;
#declare LDXQual = 2; // Quality (0 = Bounding Box; 1 = No Refraction; 2 = Normal; 3 = Stud Logos)
#declare LDXSW = 0.5; // Seam Width (0 for no seams)
#declare LDXStuds = 1; // Show studs? (1 = YES; 0 = NO)
#declare LDXRefls = 1; // Reflections? (1 = YES; 0 = NO)
#declare LDXShads = 1; // Shadows? (1 = YES; 0 = NO)
#declare LDXFloor = 1; // Include Floor? (1 = YES; 0 = NO)
// Model bounds information
#declare LDXMinX = -179.75;
#declare LDXMinY = -116.165497;
#declare LDXMinZ = -147.75;
#declare LDXMaxX = 179.75;
#declare LDXMaxY = 15.75;
#declare LDXMaxZ = 223.750015;
#declare LDXCenterX = 0;
#declare LDXCenterY = -50.207748;
#declare LDXCenterZ = 38.000008;
#declare LDXCenter = <LDXCenterX,LDXCenterY,LDXCenterZ>;
#declare LDXRadius = 191.262985;
// Camera settings
#declare LDXCameraLoc = < 280.025696,-80.662201,-343.650269 >; // Camera Location vector
#declare LDXCameraLookAt = < 6.50199711159859816689,-33.32338703710294680604,29.4733113299305387045 >; // Camera look-at point vector
#declare LDXCameraSky = < -0.19349921401438230362,-0.95983495586837974667,0.20316227914886586525 >; // Camera sky vector (<0,-1,0> will usually work for standard "up")
#declare LDXFloorLoc = LDXMaxY; // Floor location. (Dependent on floor axis; MAX_Y is bottom of model)
#declare LDXFloorAxis = y; // Floor axis (x, y, or z)
#declare LDXFloorR = 0.8; // Floor Red
#declare LDXFloorG = 0.8; // Floor Green
#declare LDXFloorB = 0.8; // Floor Blue
#declare LDXFloorAmb = 0.4; // Floor Ambient
#declare LDXFloorDif = 0.4; // Floor Diffuse
#declare LDXAmb = 0.4;
#declare LDXDif = 0.4;
#declare LDXRefl = 0.08;
#declare LDXPhong = 0.5;
#declare LDXPhongS = 40;
#declare LDXTRefl = 0.2;
#declare LDXTFilt = 0.85;
#declare LDXIoR = 1.25;
#declare LDXRubberRefl = 0;
#declare LDXRubberPhong = 0.1;
#declare LDXRubberPhongS = 10;
#declare LDXChromeRefl = 0.85;
#declare LDXChromeBril = 5;
#declare LDXChromeSpec = 0.8;
#declare LDXChromeRough = 0.01;
#declare LDXIPov = 1; // Use inline POV code from LDraw file? (1 = YES; 0 = NO)
#declare LDXBgR = 0; // Background Red
#declare LDXBgG = 0; // Background Green
#declare LDXBgB = 0; // Background Blue
#declare LDXOrigVer = version; // DO NOT MODIFY
global_settings
{
radiosity
{
pretrace_end 0.02 // Testing 0.05
count 150 // Testing 100
low_error_factor 0.3
nearest_count 7 // Testing 5-8
//minimum_reuse 0.001 // Comment out for Testing
media on
}
}
default { finish { ambient 0.2 }}
fog {
distance 2500
turbulence 5.0
turb_depth 0.6
color rgbt <1,1,1,0.75>
}
// Camera
#ifndef (LDXSkipCamera)
camera {
#declare LDXCamAspect = image_width/image_height;
location LDXCameraLoc
sky LDXCameraSky
right LDXCamAspect * < -1,0,0 >
look_at LDXCameraLookAt
angle 70.876556
}
#end
// Lights
#ifndef (LDXSkipLight1)
light_source { // Latitude,Longitude: 45,0,LDXRadius*2
<0*LDXRadius,-1.414214*LDXRadius,-1.414214*LDXRadius> + LDXCenter
color rgb <1,1,1>*0.5
}
#end
#ifndef (LDXSkipLight2)
light_source { // Latitude,Longitude: 30,120,LDXRadius*2
<1.5*LDXRadius,-1*LDXRadius,0.866026*LDXRadius> + LDXCenter
color rgb <1,1,1>*0.5
}
#end
#ifndef (LDXSkipLight3)
light_source { // Latitude,Longitude: 60,-120,LDXRadius*2
<-0.866025*LDXRadius,-1.732051*LDXRadius,0.5*LDXRadius> + LDXCenter
color rgb <1,1,1>*0.5
}
#end
#macro LDXSeamMatrix(Width, Height, Depth, CenterX, CenterY, CenterZ)
#local aw = 0;
#local ah = 0;
#local ad = 0;
#local ax = 0;
#local ay = 0;
#local az = 0;
#if (Width != 0)
#local aw = 1-LDXSW/Width;
#end
#if (Height != 0)
#local ah = 1-LDXSW/Height;
#end
#if (Depth != 0)
#local ad = 1-LDXSW/Depth;
#end
#if (Width != 0 & CenterX != 0)
#local ax = LDXSW/(Width / CenterX);
#end
#if (Height != 0 & CenterY != 0)
#local ay = LDXSW/(Height / CenterY);
#end
#if (Depth != 0 & CenterZ != 0)
#local az = LDXSW/(Depth / CenterZ);
#end
#if (aw <= 0)
#local aw = 1;
#local ax = 0;
#end
#if (ah <= 0)
#local ah = 1;
#local ay = 0;
#end
#if (ad <= 0)
#local ad = 1;
#local az = 0;
#end
matrix <aw,0,0,0,ah,0,0,0,ad,ax,ay,az>
#end
background { color rgb <LDXBgR,LDXBgG,LDXBgB> }
#declare lg_quality = LDXQual;
#if (lg_quality = 3)
#declare lg_quality = 4;
#end
#declare lg_studs = LDXStuds;
#include "lg_defs.inc"
#include "lg_color.inc"
#ifndef (LDXColor0) // Black
#declare LDXColor0 = #if (version >= 3.1) material { #end
texture {
lg_black
}
#if (version >= 3.1) } #end
#declare LDXColor0_slope = #if (version >= 3.1) material { #end
texture {
lg_black
#if (LDXQual > 1) normal { bumps 0.3 scale 25*0.02 } #end
}
#if (version >= 3.1) } #end
#end
#ifndef (LDXColor4) // Red
#declare LDXColor4 = #if (version >= 3.1) material { #end
texture {
lg_red
}
#if (version >= 3.1) } #end
#declare LDXColor4_slope = #if (version >= 3.1) material { #end
texture {
lg_red
#if (LDXQual > 1) normal { bumps 0.3 scale 25*0.02 } #end
}
#if (version >= 3.1) } #end
#end
#ifndef (LDXColor7) // Light Grey
#declare LDXColor7 = #if (version >= 3.1) material { #end
texture {
lg_grey
}
#if (version >= 3.1) } #end
#declare LDXColor7_slope = #if (version >= 3.1) material { #end
texture {
lg_grey
#if (LDXQual > 1) normal { bumps 0.3 scale 25*0.02 } #end
}
#if (version >= 3.1) } #end
#end
#ifndef (LDXColor14) // Yellow
#declare LDXColor14 = #if (version >= 3.1) material { #end
texture {
lg_yellow
}
#if (version >= 3.1) } #end
#declare LDXColor14_slope = #if (version >= 3.1) material { #end
texture {
lg_yellow
#if (LDXQual > 1) normal { bumps 0.3 scale 25*0.02 } #end
}
#if (version >= 3.1) } #end
#end
#ifndef (LDXColor15) // White
#declare LDXColor15 = #if (version >= 3.1) material { #end
texture {
lg_white
}
#if (version >= 3.1) } #end
#declare LDXColor15_slope = #if (version >= 3.1) material { #end
texture {
lg_white
#if (LDXQual > 1) normal { bumps 0.3 scale 25*0.02 } #end
}
#if (version >= 3.1) } #end
#end
#ifndef (LDXColor42) // Trans Neon Green
#declare LDXColor42 = #if (version >= 3.1) material { #end
texture {
lg_clear_neon_yellow
}
#if (LDXQual > 1) interior { lg_ior } #end
#if (version >= 3.1) } #end
#declare LDXColor42_slope = #if (version >= 3.1) material { #end
texture {
lg_clear_neon_yellow
#if (LDXQual > 1) normal { bumps 0.3 scale 25*0.02 } #end
}
#if (LDXQual > 1) interior { lg_ior } #end
#if (version >= 3.1) } #end
#end
#include "lg_3032.inc" // Plate 4 x 6
#include "lg_3023.inc" // Plate 1 x 2
#include "lg_3933.inc" // Wing 4 x 8 Left
#include "lg_3934.inc" // Wing 4 x 8 Right
#include "lg_3936.inc" // Wing 4 x 4 Left
#include "lg_3935.inc" // Wing 4 x 4 Right
#include "lg_3024.inc" // Plate 1 x 1
#include "lg_3069b.inc" // Tile 1 x 2 with Groove
#declare LDX_4_dash_4cyli_dot_dat_in_part = cylinder // Cylinder 1
{
<0,0,0>,<0,1,0>,1 open
}
#declare LDX_4_dash_4cyli_dot_dat = cylinder // Cylinder 1
{
<0,0,0>,<0,1,0>,1 open
}
#declare LDX_7_dash_8cyli_dot_dat_in_part = cylinder // Cylinder 0.875
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<0.70710678118654768376,0,0.70710678118654735069>,0
}
}
}
}
#declare LDX_7_dash_8cyli_dot_dat = cylinder // Cylinder 0.875
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<0.70710678118654768376,0,0.70710678118654735069>,0
}
}
}
}
#declare LDX_7_dash_8ring3_dot_dat_in_part = disc // Ring 0.875
{
<0,0,0>,<0,1,0>,4,3
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<0.70710678118654768376,0,0.70710678118654735069>,0
}
}
}
}
#declare LDX_7_dash_8ring3_dot_dat = disc // Ring 0.875
{
<0,0,0>,<0,1,0>,4,3
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<0.70710678118654768376,0,0.70710678118654735069>,0
}
}
}
}
#declare LDX_stud4f1w_dot_dat_in_part = union {
// Stud Tube Open with 1 Fillet Wide
// Name: stud4f1w.dat
// Author: William Howard [WilliamH]
// !LDRAW_ORG Primitive UPDATE 2012-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2011-12-31 [timgould] split quad to remove overlap
// !HISTORY 2012-04-06 [MagFors] subfiled fillet
// !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,4,0,0,0,-6,0,-4,0>
}
object {
LDX_7_dash_8cyli_dot_dat_in_part
matrix <7.3912,0,-3.0616,0,4,0,-3.0616,0,-7.3912,0,-4,0>
}
object {
LDX_7_dash_8ring3_dot_dat_in_part
matrix <1.8478,0,-0.7654,0,1,0,-0.7654,0,-1.8478,0,-4,0>
}
}
#declare LDX_4_dash_4disc_dot_dat_in_part = disc // Disc 1
{
<0,0,0>,<0,1,0>,1
}
#declare LDX_4_dash_4disc_dot_dat = disc // Disc 1
{
<0,0,0>,<0,1,0>,1
}
#declare LDX_stud3_dot_dat_in_part = union {
// Stud Tube Solid
// Name: stud3.dat
// Author: James Jessiman
// !LDRAW_ORG Primitive UPDATE 2012-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2012-02-16 [Philo] Changed to CCW
// !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
object {
LDX_4_dash_4disc_dot_dat_in_part
matrix <4,0,0,0,1,0,0,0,4,0,-4,0>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <4,0,0,0,4,0,0,0,4,0,-4,0>
}
}
#declare LDX_4_dash_4ring3_dot_dat_in_part = disc // Ring 1
{
<0,0,0>,<0,1,0>,4,3
}
#declare LDX_4_dash_4ring3_dot_dat = disc // Ring 1
{
<0,0,0>,<0,1,0>,4,3
}
#declare LDX_stud4a_dot_dat_in_part = union {
// Stud Tube Open without Base Edges
// Name: stud4a.dat
// Author: James Jessiman
// !LDRAW_ORG Primitive UPDATE 2009-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
// !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
// !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,4,0,0,0,6,0,-4,0>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <8,0,0,0,4,0,0,0,8,0,-4,0>
}
object {
LDX_4_dash_4ring3_dot_dat_in_part
matrix <2,0,0,0,1,0,0,0,2,0,-4,0>
}
}
#declare LDX_4_dash_4cyls_dot_dat_in_part = cylinder // Sloped Cylinder 1
{
<0,0,0>,<0,2,0>,1 open
clipped_by
{
plane
{
<1,1,0>,0.70710678118654757274
}
}
}
#declare LDX_4_dash_4cyls_dot_dat = cylinder // Sloped Cylinder 1
{
<0,0,0>,<0,2,0>,1 open
clipped_by
{
plane
{
<1,1,0>,0.70710678118654757274
}
}
}
#declare LDX_4_dash_4ndis_dot_dat_in_part = disc // Not-Disc 1
{
<0,0,0>,<0,1,0>,2,1
clipped_by
{
box
{
<-1,-1,-1>,<1,1,1>
}
}
}
#declare LDX_4_dash_4ndis_dot_dat = disc // Not-Disc 1
{
<0,0,0>,<0,1,0>,2,1
clipped_by
{
box
{
<-1,-1,-1>,<1,1,1>
}
}
}
#declare LDX_stug_dash_2x2_dot_dat_in_part = union {
// Stud Group 2 x 2
// Name: stug-2x2.dat
// Author: Steffen [Steffen]
// !LDRAW_ORG Primitive UPDATE 2012-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
// !HISTORY 2007-05-04 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2011-07-01 [PTadmin] Renamed from stug2
// !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
// !HISTORY 2012-02-16 [Philo] Changed to CCW
// !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
#if (LDXStuds)
object {
lg_knob
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
matrix <1,0,0,0,1,0,0,0,1,-10,0,-10>
}
object {
lg_knob
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
matrix <1,0,0,0,1,0,0,0,1,10,0,-10>
}
object {
lg_knob
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
matrix <1,0,0,0,1,0,0,0,1,-10,0,10>
}
object {
lg_knob
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
matrix <1,0,0,0,1,0,0,0,1,10,0,10>
}
#end // LDXStuds
}
#declare LDX_stug_dash_2x1_dot_dat_in_part = union {
// Stud Group 2 x 1
// Name: stug-2x1.dat
// Author: Magnus Forsberg [MagFors]
// !LDRAW_ORG Primitive UPDATE 2011-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2011-07-25 [PTadmin] Official Update 2011-01
#if (LDXStuds)
object {
lg_knob
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
matrix <1,0,0,0,1,0,0,0,1,0,0,10>
}
object {
lg_knob
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
matrix <1,0,0,0,1,0,0,0,1,0,0,-10>
}
#end // LDXStuds
}
#declare LDX_4_dash_4ring2_dot_dat_in_part = disc // Ring 1
{
<0,0,0>,<0,1,0>,3,2
}
#declare LDX_4_dash_4ring2_dot_dat = disc // Ring 1
{
<0,0,0>,<0,1,0>,3,2
}
#declare LDX_stud2a_dot_dat_in_part = union {
// Stud Open without Base Edges
// Name: stud2a.dat
// Author: James Jessiman
// !LDRAW_ORG Primitive UPDATE 2009-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
// !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
// !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <4,0,0,0,4,0,0,0,4,0,-4,0>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,4,0,0,0,6,0,-4,0>
}
object {
LDX_4_dash_4ring2_dot_dat_in_part
matrix <2,0,0,0,1,0,0,0,2,0,-4,0>
}
}
#declare LDX_s_slash_2336s01_dot_dat_in_part = union {
// ~Wedge 2 x 3 w. Brick 2 x 4 + Plate 2 x 2 without Front
// Name: s\2336s01.dat
// Author: James Jessiman
// !LDRAW_ORG Subpart UPDATE 2012-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
// !HISTORY 2007-08-28 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-05-31 [WilliamH] Created from original 2336p90, BFCed, used more primitives
// !HISTORY 2011-09-06 [MagFors] Corrected design of understuds and the support between them
// !HISTORY 2011-12-24 [Steffen] added 4 missing edges
// !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
#if (LDXStuds)
object {
LDX_stud4f1w_dot_dat_in_part
matrix <0,0,-1,0,-1,0,1,0,0,0,12,40>
}
object {
LDX_stud3_dot_dat_in_part
matrix <1,0,0,0,-5,0,0,0,1,0,4,10>
}
#end // LDXStuds
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,30.57,0,0,0,6,0,-10.57,-20>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <8,0,0,0,29.709999,0,0,0,8,0,-9.71,-20>
}
#if (LDXStuds)
object {
LDX_stud4a_dot_dat_in_part
matrix <1,0,0,0,-1,0,0,0,1,0,20,-20>
}
#end // LDXStuds
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,22,0,0,0,6,0,-2,-40>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <8,0,0,0,21.139999,0,0,0,8,0,-1.14,-40>
}
#if (LDXStuds)
object {
LDX_stud4a_dot_dat_in_part
matrix <1,0,0,0,-1,0,0,0,1,0,20,-40>
}
#end // LDXStuds
object {
LDX_4_dash_4cyls_dot_dat_in_part
matrix <0,3.43,-8,0,3.43,0,8,0,0,0,-13.14,-20>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyls_dot_dat_in_part
matrix <0,2.57,-6,0,2.57,0,6,0,0,0,-13.14,-20>
}
object {
LDX_4_dash_4cyls_dot_dat_in_part
matrix <0,3.43,-8,0,3.43,0,8,0,0,0,-4.57,-40>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyls_dot_dat_in_part
matrix <0,2.57,-6,0,2.57,0,6,0,0,0,-4.57,-40>
}
// BFC INVERTNEXT
// BFC INVERTNEXT
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,4,0,0,0,0,4,16,10,10>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,-4,0,0,0,0,4,-16,10,10>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,4,0,0,0,0,4,16,10,-10>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,-4,0,0,0,0,4,-16,10,-10>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,4,0,0,0,0,4,16,10,-30>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,-4,0,0,0,0,4,-16,10,-30>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,4,0,0,0,0,4,16,10,-50>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <0,4,0,-4,0,0,0,0,4,-16,10,-50>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <4,0,0,0,0,-4,0,4,0,10,10,-56>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <4,0,0,0,0,-4,0,4,0,-10,10,-56>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <4,0,0,0,0,-1,0,4,0,10,10,-56>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <4,0,0,0,0,-1,0,4,0,-10,10,-56>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <6,0,0,0,0,1,0,6,0,10,10,-60>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <6,0,0,0,0,1,0,6,0,-10,10,-60>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,-1,0,0,0,0,6,20,10,10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,-1,0,0,0,0,6,20,10,-10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,-1,0,0,0,0,6,20,10,-30>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,-1,0,0,0,0,6,20,10,-50>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,1,0,0,0,0,4,16,10,10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,1,0,0,0,0,4,16,10,-10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,1,0,0,0,0,4,16,10,-30>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,1,0,0,0,0,4,16,10,-50>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,-1,0,0,0,0,4,-16,10,10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,-1,0,0,0,0,4,-16,10,-10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,-1,0,0,0,0,4,-16,10,-30>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,4,0,-1,0,0,0,0,4,-16,10,-50>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,1,0,0,0,0,6,-20,10,10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,1,0,0,0,0,6,-20,10,-10>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,1,0,0,0,0,6,-20,10,-30>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,6,0,1,0,0,0,0,6,-20,10,-50>
}
#if (LDXStuds)
object {
LDX_stug_dash_2x2_dot_dat_in_part
matrix <0,0,1,0,1,0,-1,0,0,0,8,40>
}
object {
LDX_stug_dash_2x1_dot_dat_in_part
matrix <0,0,1,0,1,0,-1,0,0,0,0,10>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,-1,0,0,0,0,1,20,10,10>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,1,0,0,0,0,1,-20,10,10>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,-1,0,0,0,0,1,20,10,-10>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,1,0,0,0,0,1,-20,10,-10>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,-1,0,0,0,0,1,20,10,-30>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,1,0,0,0,0,1,-20,10,-30>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,-1,0,0,0,0,1,20,10,-50>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <0,1,0,1,0,0,0,0,1,-20,10,-50>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <1,0,0,0,0,1,0,1,0,10,10,-60>
}
object {
LDX_stud2a_dot_dat_in_part
matrix <1,0,0,0,0,1,0,1,0,-10,10,-60>
}
#end // LDXStuds
}
#declare LDX_1_dash_4chrd_dot_dat_in_part = disc // Disc 0.25
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<-1,0,-0.99999999999999988898>,-0.70710676908493041992
}
}
}
#declare LDX_1_dash_4chrd_dot_dat = disc // Disc 0.25
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<-1,0,-0.99999999999999988898>,-0.70710676908493041992
}
}
}
#declare LDX_1_dash_8chrd_dot_dat_in_part = disc // Disc 0.125
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<-0.70710678118654746172,0,-0.29289321881345242726>,-0.92387950420379638672
}
}
}
#declare LDX_1_dash_8chrd_dot_dat = disc // Disc 0.125
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<-0.70710678118654746172,0,-0.29289321881345242726>,-0.92387950420379638672
}
}
}
#declare LDX_s_slash_3068p68a_dot_dat_in_part = union {
// ~Pattern MTron Logo
// Name: s\3068p68a.dat
// Author: Steffen [Steffen]
// !LDRAW_ORG Subpart UPDATE 2014-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2003-07-11 [Steffen] subfiled, fixed one overlap (black "triangle" poking into M from top
// !HISTORY 2003-09-10 [mkennedy] cleaned up some, fixed gaps
// !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
// !HISTORY 2007-08-30 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2014-10-11 [Darats] T-Junctions Removed and Gaps Filled
// !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <-18.5,0,0,0,1,0,0,0,18.5,0,0,0>
}
object {
LDX_1_dash_4chrd_dot_dat_in_part
matrix <-18.5,0,0,0,1,0,0,0,18.5,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_1_dash_4chrd_dot_dat_in_part
matrix <0,0,18.5,0,1,0,18.5,0,0,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_1_dash_4chrd_dot_dat_in_part
matrix <13.0815,0,-13.0815,0,1,0,-13.0815,0,-13.0815,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <18.5,0,0,0,1,0,0,0,-18.5,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <-13.0815,0,-13.0815,0,1,0,-13.0815,0,13.0815,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
}
#declare LDX_2336p68_dot_dat =
#if (LDXQual = 0)
box {
<-24,-24,-64>,<24,24,60>
}
#else
union {
// Wedge 2 x 3 with Brick 2 x 4 with MTron Logo Pattern
// Name: 2336p68.dat
// Author: John Van Zwieten [jvan]
// !LDRAW_ORG Part UPDATE 2014-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 1998-09-15 [PTadmin] Official Update 1998-08
// !HISTORY 2007-05-04 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-05-31 [nielsk] Made BFC compliant, made use of subfile, gaps in pattern fixed
// !HISTORY 2012-08-09 [PTadmin] Official Update 2012-02
// !HISTORY 2014-11-01 [Darats] Use subpart, Correct Logo Location
// !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
object {
LDX_s_slash_2336s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_s_slash_3068p68a_dot_dat_in_part
matrix <0.75,0,0,0,0.919145,0.393919,0,-0.29544,0.689359,0,-17.697001,-18.705999>
}
mesh2 {
vertex_vectors {
64,
<-13.875,-17.697001,-18.705999>, <-11.137501,-15.55506,-23.703852>, <-9.811125,-13.832202,-27.72385>, <-9.645,-15.918451,-22.855942>,
<-8.1525,-16.281843,-22.00803>, <-7.725,-16.651142,-21.14633>, <-7.65,-16.701368,-21.029139>, <-7.0875,-17.179981,-19.912378>,
<-7.05,-17.209524,-19.843441>, <-5.9775,-19.83894,-13.708147>, <-5.94,-18.184477,-17.568558>, <-5.895,-18.216974,-17.492727>,
<-5.415,-19.47555,-14.556058>, <-4.845,-19.112158,-15.40397>, <-4.3125,-16.281843,-22.00803>, <-3.915,-15.918451,-22.855942>,
<-3.8925,-16.651142,-21.14633>, <-3.8325,-16.701368,-21.029139>, <-3.795,-15.55506,-23.703852>, <-3.285,-17.179981,-19.912378>,
<-3.285,-16.281843,-22.00803>, <-3.285,-15.847546,-23.021387>, <-2.7675,-15.55506,-23.703852>, <-2.73,-16.701368,-21.029139>,
<-2.67,-16.651142,-21.14633>, <-2.6475,-15.918451,-22.855942>, <-2.25,-16.281843,-22.00803>, <-1.035,-19.112158,-15.40397>,
<-0.6375,-19.47555,-14.556058>, <-0.5175,-19.83894,-13.708147>, <0,-23.16264,-5.952858>, <0,-19.546455,-14.390612>,
<0,-19.112158,-15.40397>, <0,-18.216974,-17.492727>, <0.5175,-19.83894,-13.708147>, <0.6375,-19.47555,-14.556058>,
<1.035,-19.112158,-15.40397>, <2.25,-16.281843,-22.00803>, <2.6475,-15.918451,-22.855942>, <2.67,-16.651142,-21.14633>,
<2.73,-16.701368,-21.029139>, <2.7675,-15.55506,-23.703852>, <3.285,-17.179981,-19.912378>, <3.285,-16.281843,-22.00803>,
<3.285,-15.847546,-23.021387>, <3.795,-15.55506,-23.703852>, <3.8325,-16.701368,-21.029139>, <3.8925,-16.651142,-21.14633>,
<3.915,-15.918451,-22.855942>, <4.3125,-16.281843,-22.00803>, <4.845,-19.112158,-15.40397>, <5.415,-19.47555,-14.556058>,
<5.895,-18.216974,-17.492727>, <5.94,-18.184477,-17.568558>, <5.9775,-19.83894,-13.708147>, <7.05,-17.209524,-19.843441>,
<7.0875,-17.179981,-19.912378>, <7.65,-16.701368,-21.029139>, <7.725,-16.651142,-21.14633>, <8.1525,-16.281843,-22.00803>,
<9.645,-15.918451,-22.855942>, <9.811125,-13.832202,-27.72385>, <11.137501,-15.55506,-23.703852>, <13.875,-17.697001,-18.705999>
}
normal_vectors {
1,
<-0.000001,0.919145,0.393919>
}
face_indices {
77,
<0, 2, 1>, <4, 5, 3>, <5, 6, 3>, <9, 0, 1>,
<7, 8, 10>, <7, 10, 12>, <6, 7, 12>, <6, 12, 3>,
<10, 11, 13>, <10, 13, 12>, <15, 14, 4>, <15, 4, 3>,
<5, 16, 17>, <5, 17, 6>, <2, 18, 1>, <15, 20, 14>,
<21, 18, 22>, <19, 17, 23>, <14, 20, 24>, <14, 24, 16>,
<16, 24, 23>, <16, 23, 17>, <25, 26, 24>, <25, 24, 20>,
<13, 27, 28>, <13, 28, 12>, <32, 28, 27>, <32, 27, 33>,
<29, 30, 9>, <30, 0, 9>, <34, 30, 29>, <34, 29, 31>,
<36, 35, 32>, <36, 32, 33>, <25, 38, 37>, <25, 37, 26>,
<24, 39, 40>, <24, 40, 23>, <38, 43, 39>, <38, 39, 37>,
<44, 41, 45>, <46, 42, 40>, <39, 47, 46>, <39, 46, 40>,
<49, 43, 48>, <49, 47, 39>, <49, 39, 43>, <50, 51, 35>,
<50, 35, 36>, <53, 52, 33>, <11, 10, 53>, <11, 53, 33>,
<53, 51, 50>, <53, 50, 52>, <34, 54, 30>, <42, 55, 19>,
<55, 8, 7>, <55, 7, 19>, <56, 55, 42>, <56, 51, 53>,
<56, 53, 55>, <47, 58, 57>, <47, 57, 46>, <48, 60, 59>,
<48, 59, 49>, <60, 58, 59>, <60, 57, 58>, <57, 60, 51>,
<57, 51, 56>, <61, 22, 18>, <61, 18, 2>, <22, 61, 41>,
<41, 61, 45>, <45, 61, 62>, <63, 62, 61>, <54, 62, 63>,
<30, 54, 63>
}
normal_indices {
77,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>
}
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
mesh2 {
vertex_vectors {
33,
<-8.1525,-16.281843,-22.00803>, <-7.725,-16.651142,-21.14633>, <-7.65,-16.701368,-21.029139>, <-7.0875,-17.179981,-19.912378>,
<-7.05,-17.209524,-19.843441>, <-5.94,-18.184477,-17.568558>, <-5.895,-18.216974,-17.492727>, <-4.845,-19.112158,-15.40397>,
<-4.3125,-16.281843,-22.00803>, <-3.8925,-16.651142,-21.14633>, <-3.8325,-16.701368,-21.029139>, <-3.285,-17.179981,-19.912378>,
<-2.73,-16.701368,-21.029139>, <-2.67,-16.651142,-21.14633>, <-2.25,-16.281843,-22.00803>, <-1.035,-19.112158,-15.40397>,
<0,-18.216974,-17.492727>, <1.035,-19.112158,-15.40397>, <2.25,-16.281843,-22.00803>, <2.67,-16.651142,-21.14633>,
<2.73,-16.701368,-21.029139>, <3.285,-17.179981,-19.912378>, <3.8325,-16.701368,-21.029139>, <3.8925,-16.651142,-21.14633>,
<4.3125,-16.281843,-22.00803>, <4.845,-19.112158,-15.40397>, <5.895,-18.216974,-17.492727>, <5.94,-18.184477,-17.568558>,
<7.05,-17.209524,-19.843441>, <7.0875,-17.179981,-19.912378>, <7.65,-16.701368,-21.029139>, <7.725,-16.651142,-21.14633>,
<8.1525,-16.281843,-22.00803>
}
normal_vectors {
1,
<0,0.919146,0.393918>
}
face_indices {
18,
<9, 1, 0>, <9, 0, 8>, <11, 3, 2>, <11, 2, 10>,
<7, 6, 16>, <7, 16, 15>, <19, 13, 14>, <19, 14, 18>,
<21, 11, 12>, <21, 12, 20>, <26, 25, 17>, <26, 17, 16>,
<5, 4, 28>, <5, 28, 27>, <29, 21, 22>, <29, 22, 30>,
<31, 23, 24>, <31, 24, 32>
}
normal_indices {
18,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>
}
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
mesh2 {
vertex_vectors {
26,
<-11.137501,-15.55506,-23.703852>, <-9.645,-15.918451,-22.855942>, <-5.9775,-19.83894,-13.708147>, <-5.415,-19.47555,-14.556058>,
<-3.915,-15.918451,-22.855942>, <-3.795,-15.55506,-23.703852>, <-3.285,-16.281843,-22.00803>, <-3.285,-15.847546,-23.021387>,
<-2.7675,-15.55506,-23.703852>, <-2.6475,-15.918451,-22.855942>, <-0.6375,-19.47555,-14.556058>, <-0.5175,-19.83894,-13.708147>,
<0,-19.546455,-14.390612>, <0,-19.112158,-15.40397>, <0.5175,-19.83894,-13.708147>, <0.6375,-19.47555,-14.556058>,
<2.6475,-15.918451,-22.855942>, <2.7675,-15.55506,-23.703852>, <3.285,-16.281843,-22.00803>, <3.285,-15.847546,-23.021387>,
<3.795,-15.55506,-23.703852>, <3.915,-15.918451,-22.855942>, <5.415,-19.47555,-14.556058>, <5.9775,-19.83894,-13.708147>,
<9.645,-15.918451,-22.855942>, <11.137501,-15.55506,-23.703852>
}
normal_vectors {
1,
<0.000001,0.919145,0.393919>
}
face_indices {
26,
<3, 2, 0>, <3, 0, 1>, <1, 0, 5>, <1, 5, 4>,
<6, 4, 5>, <6, 5, 7>, <6, 7, 8>, <6, 8, 9>,
<2, 3, 10>, <2, 10, 11>, <10, 13, 12>, <10, 12, 11>,
<15, 14, 12>, <15, 12, 13>, <9, 8, 17>, <9, 17, 16>,
<19, 18, 16>, <19, 16, 17>, <21, 18, 19>, <21, 19, 20>,
<22, 23, 14>, <22, 14, 15>, <25, 24, 21>, <25, 21, 20>,
<23, 22, 24>, <23, 24, 25>
}
normal_indices {
26,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>
}
#if (version >= 3.1) material #else texture #end { LDXColor15 }
}
mesh2 {
vertex_vectors {
249,
<-20,-24,-4>, <-20,-24,0>, <-20,0,-60>, <-20,0,-4>,
<-20,0,0>, <-20,0,20>, <-20,4,-56>, <-20,4,-44>,
<-20,4,-36>, <-20,4,-24>, <-20,4,-16>, <-20,4,-4>,
<-20,4,4>, <-20,4,16>, <-20,8,20>, <-20,8,60>,
<-20,16,-56>, <-20,16,-44>, <-20,16,-36>, <-20,16,-24>,
<-20,16,-16>, <-20,16,-4>, <-20,16,4>, <-20,16,16>,
<-20,16,20>, <-20,16,60>, <-20,24,-60>, <-20,24,20>,
<-16,-20,-4>, <-16,4,-60>, <-16,4,-56>, <-16,4,-4>,
<-16,4,0>, <-16,4,16>, <-16,6,-54>, <-16,6,-46>,
<-16,6,-34>, <-16,6,-26>, <-16,6,-14>, <-16,6,-6>,
<-16,6,6>, <-16,6,14>, <-16,12,20>, <-16,12,56>,
<-16,14,-54>, <-16,14,-46>, <-16,14,-34>, <-16,14,-26>,
<-16,14,-14>, <-16,14,-6>, <-16,14,6>, <-16,14,14>,
<-16,16,-60>, <-16,16,20>, <-16,16,56>, <-16,24,-56>,
<-16,24,-4>, <-16,24,0>, <-16,24,16>, <-14,6,-56>,
<-14,14,-56>, <-13.875,-23.162901,-5.95318>, <-13.875,-17.6973,-18.706301>, <-13.875,-12.2317,-31.459499>,
<-12,12,20>, <-12,12,24>, <-12,16,20>, <-12,16,24>,
<-11,4,0>, <-11,4,4>, <-11,24,0>, <-11,24,4>,
<-10,0,-60>, <-9,4,0>, <-9,4,4>, <-9,24,0>,
<-9,24,4>, <-8,12,20>, <-8,12,24>, <-8,16,20>,
<-8,16,24>, <-7,2.29,-56>, <-7,4,-56>, <-6,6,-56>,
<-6,14,-56>, <-4,4,-60>, <-4,16,-60>, <-3.0616,12,32.608799>,
<-3.0616,16,32.608799>, <-2.2961,16,34.456699>, <-2,12,20>, <-2,12,32>,
<-2,12,32.397999>, <-2,16,20>, <-2,16,32>, <-2,16,32.397999>,
<-1,-20,-4>, <-1,-16.486,-12.1989>, <-1,-9.789,-27.8011>, <-1,-7.912,-32.198898>,
<-1,-1.224,-47.801102>, <-1,2.29,-56>, <-1,4,0>, <-1,4,6>,
<-1,4,6.19892>, <-1,4,13.801081>, <-1,4,14>, <-1,4,16>,
<-1,10,-56>, <-1,10,-47.801102>, <-1,10,-32.198898>, <-1,10,-27.8011>,
<-1,10,-12.1989>, <-1,10,-4>, <-1,20,0>, <-1,20,6>,
<-1,20,6.19891>, <-1,20,13.80109>, <-1,20,14>, <-1,20,16>,
<0,-23.162901,-5.95318>, <0,-12.2317,-31.459499>, <0,10,-48>, <0,10,-32>,
<0,10,-28>, <0,10,-12>, <0,16,34>, <0,20,6>,
<0,20,14>, <1,-20,-4>, <1,-16.486,-12.1989>, <1,-9.789,-27.8011>,
<1,-7.912,-32.198898>, <1,-1.224,-47.801102>, <1,2.29,-56>, <1,4,0>,
<1,4,6>, <1,4,6.19892>, <1,4,13.801081>, <1,4,14>,
<1,4,16>, <1,10,-56>, <1,10,-47.801102>, <1,10,-32.198898>,
<1,10,-27.8011>, <1,10,-12.1989>, <1,10,-4>, <1,20,0>,
<1,20,6>, <1,20,6.19891>, <1,20,13.80109>, <1,20,14>,
<1,20,16>, <2,12,20>, <2,12,32>, <2,12,32.397999>,
<2,16,20>, <2,16,32>, <2,16,32.397999>, <2.2961,16,34.456699>,
<3.0616,12,32.608799>, <3.0616,16,32.608799>, <4,4,-60>, <4,16,-60>,
<6,6,-56>, <6,14,-56>, <7,2.29,-56>, <7,4,-56>,
<8,12,20>, <8,12,24>, <8,16,20>, <8,16,24>,
<9,4,0>, <9,4,4>, <9,24,0>, <9,24,4>,
<10,0,-60>, <11,4,0>, <11,4,4>, <11,24,0>,
<11,24,4>, <12,12,20>, <12,12,24>, <12,16,20>,
<12,16,24>, <13.875,-23.162901,-5.95318>, <13.875,-17.6973,-18.706301>, <13.875,-12.2317,-31.459499>,
<14,6,-56>, <14,14,-56>, <16,-20,-4>, <16,4,-60>,
<16,4,-56>, <16,4,-4>, <16,4,0>, <16,4,16>,
<16,6,-54>, <16,6,-46>, <16,6,-34>, <16,6,-26>,
<16,6,-14>, <16,6,-6>, <16,6,6>, <16,6,14>,
<16,12,20>, <16,12,56>, <16,14,-54>, <16,14,-46>,
<16,14,-34>, <16,14,-26>, <16,14,-14>, <16,14,-6>,
<16,14,6>, <16,14,14>, <16,16,-60>, <16,16,20>,
<16,16,56>, <16,24,-56>, <16,24,-4>, <16,24,0>,
<16,24,16>, <20,-24,-4>, <20,-24,0>, <20,0,-60>,
<20,0,-4>, <20,0,0>, <20,0,20>, <20,4,-56>,
<20,4,-44>, <20,4,-36>, <20,4,-24>, <20,4,-16>,
<20,4,-4>, <20,4,4>, <20,4,16>, <20,8,20>,
<20,8,60>, <20,16,-56>, <20,16,-44>, <20,16,-36>,
<20,16,-24>, <20,16,-16>, <20,16,-4>, <20,16,4>,
<20,16,16>, <20,16,20>, <20,16,60>, <20,24,-60>,
<20,24,20>
}
normal_vectors {
14,
<-1,0,0>, <-0.985351,0,-0.170541>, <-0.984428,0,0.175791>, <-0.194766,0,-0.98085>,
<0,-1,0>, <0,-0.919118,-0.393983>, <0,0,-1>, <0,0,1>,
<0,0.919141,0.393928>, <0,1,0>, <0.194766,0,-0.98085>, <0.984428,0,0.175791>,
<0.98535,0,-0.170541>, <1,0,0>
}
face_indices {
269,
<88, 95, 126>, <88, 126, 89>, <87, 92, 95>, <87, 95, 88>,
<92, 91, 94>, <92, 94, 95>, <159, 126, 158>, <159, 158, 161>,
<161, 158, 155>, <161, 155, 160>, <158, 157, 154>, <158, 154, 155>,
<126, 95, 158>, <95, 94, 157>, <95, 157, 158>, <94, 157, 156>,
<94, 156, 93>, <157, 154, 153>, <157, 153, 156>, <93, 90, 91>,
<93, 91, 94>, <171, 184, 183>, <171, 183, 170>, <171, 169, 182>,
<171, 182, 184>, <170, 168, 169>, <170, 169, 171>, <184, 182, 181>,
<184, 181, 183>, <67, 80, 79>, <67, 79, 66>, <67, 65, 78>,
<67, 78, 80>, <66, 64, 65>, <66, 65, 67>, <80, 78, 77>,
<80, 77, 79>, <116, 115, 127>, <127, 148, 149>, <104, 103, 115>,
<104, 115, 116>, <149, 148, 136>, <149, 136, 137>, <150, 151, 128>,
<128, 118, 117>, <138, 139, 151>, <138, 151, 150>, <117, 118, 106>,
<117, 106, 105>, <115, 114, 147>, <115, 147, 148>, <148, 147, 135>,
<148, 135, 136>, <114, 115, 103>, <114, 103, 102>, <151, 152, 119>,
<151, 119, 118>, <118, 119, 107>, <118, 107, 106>, <152, 151, 139>,
<152, 139, 140>, <173, 178, 180>, <173, 180, 175>, <180, 179, 174>,
<180, 174, 175>, <178, 177, 179>, <178, 179, 180>, <175, 174, 172>,
<175, 172, 173>, <69, 74, 76>, <69, 76, 71>, <76, 75, 70>,
<76, 70, 71>, <74, 73, 75>, <74, 75, 76>, <71, 70, 68>,
<71, 68, 69>, <125, 146, 145>, <146, 125, 112>, <146, 112, 113>,
<146, 129, 130>, <146, 130, 145>, <112, 97, 96>, <112, 96, 113>,
<124, 123, 110>, <124, 110, 111>, <144, 143, 123>, <144, 123, 124>,
<144, 131, 132>, <144, 132, 143>, <110, 99, 98>, <110, 98, 111>,
<122, 108, 109>, <108, 122, 142>, <108, 142, 141>, <108, 101, 100>,
<108, 100, 109>, <142, 133, 134>, <142, 134, 141>, <235, 14, 15>,
<235, 15, 236>, <15, 25, 246>, <15, 246, 236>, <14, 24, 25>,
<14, 25, 15>, <236, 246, 245>, <236, 245, 235>, <204, 42, 43>,
<204, 43, 205>, <43, 54, 216>, <43, 216, 205>, <42, 53, 54>,
<42, 54, 43>, <205, 216, 215>, <205, 215, 204>, <32, 33, 195>,
<32, 195, 194>, <33, 58, 220>, <33, 220, 195>, <194, 219, 57>,
<194, 57, 32>, <226, 225, 4>, <226, 4, 5>, <226, 5, 14>,
<226, 14, 235>, <4, 225, 222>, <4, 222, 1>, <222, 221, 0>,
<222, 0, 1>, <225, 224, 221>, <225, 221, 222>, <1, 0, 3>,
<1, 3, 4>, <248, 220, 58>, <248, 58, 27>, <27, 58, 55>,
<27, 55, 26>, <26, 55, 217>, <26, 217, 247>, <247, 217, 220>,
<247, 220, 248>, <219, 218, 56>, <219, 56, 57>, <245, 215, 216>,
<245, 216, 246>, <246, 216, 54>, <246, 54, 25>, <25, 54, 53>,
<25, 53, 24>, <193, 192, 167>, <82, 30, 31>, <176, 223, 224>,
<3, 2, 72>, <27, 24, 245>, <27, 245, 248>, <53, 42, 204>,
<53, 204, 215>, <218, 190, 28>, <218, 28, 56>, <84, 83, 164>,
<84, 164, 165>, <55, 60, 189>, <55, 189, 217>, <30, 59, 60>,
<30, 60, 55>, <192, 188, 59>, <192, 59, 30>, <217, 189, 188>,
<217, 188, 192>, <81, 82, 167>, <81, 167, 166>, <163, 162, 85>,
<163, 85, 86>, <247, 214, 52>, <247, 52, 26>, <26, 52, 29>,
<26, 29, 2>, <2, 29, 191>, <2, 191, 223>, <223, 191, 214>,
<223, 214, 247>, <243, 233, 232>, <243, 232, 242>, <241, 231, 230>,
<241, 230, 240>, <239, 229, 228>, <239, 228, 238>, <248, 244, 237>,
<248, 237, 247>, <247, 237, 227>, <247, 227, 223>, <223, 227, 234>,
<223, 234, 226>, <226, 234, 244>, <226, 244, 248>, <209, 199, 200>,
<209, 200, 210>, <207, 197, 198>, <207, 198, 208>, <219, 212, 213>,
<219, 213, 220>, <194, 202, 212>, <194, 212, 219>, <195, 203, 202>,
<195, 202, 194>, <220, 213, 203>, <220, 203, 195>, <217, 206, 211>,
<217, 211, 218>, <192, 196, 206>, <192, 206, 217>, <193, 201, 196>,
<193, 196, 192>, <218, 211, 201>, <218, 201, 193>, <48, 38, 37>,
<48, 37, 47>, <46, 36, 35>, <46, 35, 45>, <58, 51, 50>,
<58, 50, 57>, <57, 50, 40>, <57, 40, 32>, <32, 40, 41>,
<32, 41, 33>, <33, 41, 51>, <33, 51, 58>, <56, 49, 44>,
<56, 44, 55>, <55, 44, 34>, <55, 34, 30>, <30, 34, 39>,
<30, 39, 31>, <31, 39, 49>, <31, 49, 56>, <21, 11, 12>,
<21, 12, 22>, <19, 9, 10>, <19, 10, 20>, <17, 7, 8>,
<17, 8, 18>, <26, 16, 23>, <26, 23, 27>, <2, 6, 16>,
<2, 16, 26>, <5, 13, 6>, <5, 6, 2>, <27, 23, 13>,
<27, 13, 5>, <167, 166, 190>, <167, 190, 193>, <31, 28, 81>,
<31, 81, 82>, <190, 166, 81>, <190, 81, 28>, <224, 221, 176>,
<72, 0, 3>, <0, 61, 120>, <0, 120, 221>, <221, 120, 185>,
<221, 185, 186>, <221, 186, 187>, <221, 187, 176>, <176, 187, 121>,
<176, 121, 72>, <121, 63, 72>, <0, 72, 63>, <0, 63, 62>,
<0, 62, 61>
}
normal_indices {
269,
<9, 9, 9>, <9, 9, 9>, <3, 3, 3>, <3, 3, 3>,
<0, 0, 0>, <0, 0, 0>, <9, 9, 9>, <9, 9, 9>,
<10, 10, 10>, <10, 10, 10>, <13, 13, 13>, <13, 13, 13>,
<9, 9, 9>, <9, 9, 9>, <9, 9, 9>, <4, 4, 4>,
<4, 4, 4>, <0, 0, 0>, <0, 0, 0>, <13, 13, 13>,
<13, 13, 13>, <4, 4, 4>, <4, 4, 4>, <6, 6, 6>,
<6, 6, 6>, <13, 13, 13>, <13, 13, 13>, <0, 0, 0>,
<0, 0, 0>, <4, 4, 4>, <4, 4, 4>, <6, 6, 6>,
<6, 6, 6>, <13, 13, 13>, <13, 13, 13>, <0, 0, 0>,
<0, 0, 0>, <9, 9, 9>, <9, 9, 9>, <0, 0, 0>,
<0, 0, 0>, <13, 13, 13>, <13, 13, 13>, <9, 9, 9>,
<9, 9, 9>, <13, 13, 13>, <13, 13, 13>, <0, 0, 0>,
<0, 0, 0>, <9, 9, 9>, <9, 9, 9>, <13, 13, 13>,
<13, 13, 13>, <0, 0, 0>, <0, 0, 0>, <9, 9, 9>,
<9, 9, 9>, <0, 0, 0>, <0, 0, 0>, <13, 13, 13>,
<13, 13, 13>, <6, 6, 6>, <6, 6, 6>, <4, 4, 4>,
<4, 4, 4>, <0, 0, 0>, <0, 0, 0>, <13, 13, 13>,
<13, 13, 13>, <6, 6, 6>, <6, 6, 6>, <4, 4, 4>,
<4, 4, 4>, <0, 0, 0>, <0, 0, 0>, <13, 13, 13>,
<13, 13, 13>, <4, 4, 4>, <4, 4, 4>, <4, 4, 4>,
<0, 0, 0>, <0, 0, 0>, <13, 13, 13>, <13, 13, 13>,
<4, 4, 4>, <4, 4, 4>, <4, 4, 4>, <4, 4, 4>,
<0, 0, 0>, <0, 0, 0>, <13, 13, 13>, <13, 13, 13>,
<4, 4, 4>, <4, 4, 4>, <4, 4, 4>, <13, 13, 13>,
<13, 13, 13>, <0, 0, 0>, <0, 0, 0>, <4, 4, 4>,
<4, 4, 4>, <7, 7, 7>, <7, 7, 7>, <0, 0, 0>,
<0, 0, 0>, <13, 13, 13>, <13, 13, 13>, <4, 4, 4>,
<4, 4, 4>, <7, 7, 7>, <7, 7, 7>, <0, 0, 0>,
<0, 0, 0>, <13, 13, 13>, <13, 13, 13>, <4, 4, 4>,
<4, 4, 4>, <7, 7, 7>, <7, 7, 7>, <6, 6, 6>,
<6, 6, 6>, <4, 4, 4>, <4, 4, 4>, <7, 7, 7>,
<7, 7, 7>, <7, 7, 7>, <7, 7, 7>, <4, 4, 4>,
<4, 4, 4>, <13, 13, 13>, <13, 13, 13>, <0, 0, 0>,
<0, 0, 0>, <4, 4, 4>, <4, 4, 4>, <4, 4, 4>,
<4, 4, 4>, <4, 4, 4>, <4, 4, 4>, <4, 4, 4>,
<4, 4, 4>, <4, 4, 4>, <4, 4, 4>, <4, 4, 4>,
<4, 4, 4>, <4, 4, 4>, <4, 4, 4>, <4, 4, 4>,
<4, 4, 4>, <4, 4, 4>, <4, 4, 4>, <9, 9, 9>,
<9, 9, 9>, <6, 6, 6>, <6, 6, 6>, <6, 6, 6>,
<6, 6, 6>, <7, 7, 7>, <7, 7, 7>, <6, 6, 6>,
<6, 6, 6>, <6, 6, 6>, <6, 6, 6>, <6, 6, 6>,
<6, 6, 6>, <6, 6, 6>, <6, 6, 6>, <6, 6, 6>,
<6, 6, 6>, <7, 7, 7>, <7, 7, 7>, <7, 7, 7>,
<7, 7, 7>, <7, 7, 7>, <7, 7, 7>, <7, 7, 7>,
<7, 7, 7>, <7, 7, 7>, <7, 7, 7>, <7, 7, 7>,
<7, 7, 7>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <13, 13, 13>,
<13, 13, 13>, <13, 13, 13>, <13, 13, 13>, <13, 13, 13>,
<13, 13, 13>, <12, 12, 12>, <12, 12, 12>, <1, 1, 1>,
<1, 1, 1>, <5, 5, 5>, <5, 5, 5>, <2, 2, 2>,
<11, 11, 11>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>
}
}
}
#end
#declare LDX_stud2_dot_dat_in_part = union {
// Stud Open
// Name: stud2.dat
// Author: James Jessiman
// !LDRAW_ORG Primitive UPDATE 2009-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
// !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
// !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <4,0,0,0,4,0,0,0,4,0,-4,0>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,4,0,0,0,6,0,-4,0>
}
object {
LDX_4_dash_4ring2_dot_dat_in_part
matrix <2,0,0,0,1,0,0,0,2,0,-4,0>
}
}
#declare LDX_3794a_dot_dat =
#if (LDXQual = 0)
box {
<-20,-4,-10>,<20,8,10>
}
#else
union {
// Plate 1 x 2 without Groove with 1 Centre Stud
// Name: 3794a.dat
// Author: James Jessiman
// !LDRAW_ORG Part UPDATE 2011-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !KEYWORDS jumper, offset, tile, spacer
// !HISTORY 2002-07-16 [fwcain] Added keywords.
// !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
// !HISTORY 2004-07-25 [guyvivan] Made BFC Compliant
// !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
// !HISTORY 2007-06-29 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2011-11-12 [PTadmin] Renamed from 3794
// !HISTORY 2011-12-05 [MagFors] Retitled, was "Plate 1 x 2 with 1 Stud"
// !HISTORY 2011-12-29 [PTadmin] Official Update 2011-02
#if (LDXStuds)
object {
LDX_stud3_dot_dat_in_part
matrix <1,0,0,0,-1,0,0,0,1,0,4,0>
}
#end // LDXStuds
// BFC INVERTNEXT
#if (LDXStuds)
object {
LDX_stud2_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
#end // LDXStuds
mesh2 {
vertex_vectors {
16,
<-20,0,-10>, <-20,0,10>, <-20,8,-10>, <-20,8,10>,
<-16,4,-6>, <-16,4,6>, <-16,8,-6>, <-16,8,6>,
<16,4,-6>, <16,4,6>, <16,8,-6>, <16,8,6>,
<20,0,-10>, <20,0,10>, <20,8,-10>, <20,8,10>
}
normal_vectors {
5,
<-1,0,0>, <0,-1,0>, <0,0,-1>, <0,0,1>,
<1,0,0>
}
face_indices {
28,
<5, 9, 8>, <5, 8, 4>, <5, 7, 11>, <5, 11, 9>,
<4, 6, 7>, <4, 7, 5>, <8, 10, 6>, <8, 6, 4>,
<9, 11, 10>, <9, 10, 8>, <15, 11, 7>, <15, 7, 3>,
<3, 7, 6>, <3, 6, 2>, <2, 6, 10>, <2, 10, 14>,
<14, 10, 11>, <14, 11, 15>, <1, 13, 12>, <1, 12, 0>,
<1, 3, 15>, <1, 15, 13>, <0, 2, 3>, <0, 3, 1>,
<12, 14, 2>, <12, 2, 0>, <13, 15, 14>, <13, 14, 12>
}
normal_indices {
28,
<1, 1, 1>, <1, 1, 1>, <3, 3, 3>, <3, 3, 3>,
<0, 0, 0>, <0, 0, 0>, <2, 2, 2>, <2, 2, 2>,
<4, 4, 4>, <4, 4, 4>, <1, 1, 1>, <1, 1, 1>,
<1, 1, 1>, <1, 1, 1>, <1, 1, 1>, <1, 1, 1>,
<1, 1, 1>, <1, 1, 1>, <1, 1, 1>, <1, 1, 1>,
<3, 3, 3>, <3, 3, 3>, <0, 0, 0>, <0, 0, 0>,
<2, 2, 2>, <2, 2, 2>, <4, 4, 4>, <4, 4, 4>
}
}
}
#end
#include "lg_4592c01.inc" // Hinge Control Stick and Base (Complete)
#include "lg_2420.inc" // Plate 2 x 2 Corner
#include "lg_3937.inc" // Hinge 1 x 2 Base
#include "lg_3938.inc" // Hinge 1 x 2 Top
#include "lg_2412b.inc" // Tile 1 x 2 Grille with Groove
#include "lg_2434.inc" // Brick 2 x 4 x 2 with Studs on Sides
#include "lg_6019.inc" // Plate 1 x 1 with Clip Horizontal (Open U-Clip)
#include "lg_3839a.inc" // Plate 1 x 2 with Handles Type 1
#include "lg_3829c01.inc" // Car Steering Stand and Wheel (Complete)
#include "lg_4286.inc" // Slope Brick 33 3 x 1
#include "lg_2569.inc" // Antenna 8H Whip
#include "lg_4740.inc" // Dish 2 x 2 Inverted
#include "lg_3956.inc" // Bracket 2 x 2 - 2 x 2 Up
#include "lg_3039.inc" // Slope Brick 45 2 x 2
#include "lg_4476.inc" // Support 2 x 4 x 5 Stanchion Inclined
#include "lg_3623.inc" // Plate 1 x 3
#include "lg_2450.inc" // Plate 3 x 3 without Corner
#include "lg_3963.inc" // Brick 2 x 1 with Positioning Rockets
#include "lg_4073.inc" // ~Moved to 6141
#declare LDX_Starboard_space_Wing_dot_ldr = union {
// untitled model
// Name: Starboard Wing
// Author: Allen Smith
object {
lg_4476
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 124, 100, 0, 58, -30)
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3623
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(60, 12, 20, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,-10,-8,-10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2450
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(60, 12, 60, 0, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,-10,-8,30>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
object {
lg_2412b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <0,0,1,0,1,0,-1,0,0,-10,-16,20>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3963
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(60, 28, 60, 0, 10, 0)
matrix <1,0,0,0,1,0,0,0,1,-10,-16,-30>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_4073_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 12, 20, 0, 2, 0)
matrix <1,0,0,0,0,-1,0,1,0,-10,-6,-60>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
// STEP
// NOFILE
}
#include "lg_3022.inc" // Plate 2 x 2
#declare LDX_Port_space_Wing_dot_ldr = union {
// untitled model
// Name: Port Wing
// Author: Allen Smith
object {
lg_4476
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 124, 100, 0, 58, -30)
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3623
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(60, 12, 20, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,10,-8,-10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2450
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(60, 12, 60, 0, 2, 0)
matrix <0,0,1,0,1,0,-1,0,0,10,-8,30>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
object {
lg_2412b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <0,0,1,0,1,0,-1,0,0,10,-16,20>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3963
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(60, 28, 60, 0, 10, 0)
matrix <1,0,0,0,1,0,0,0,1,10,-16,-30>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_4073_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 12, 20, 0, 2, 0)
matrix <1,0,0,0,0,-1,0,1,0,10,-6,-60>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
// STEP
// NOFILE
}
#declare LDX_axleho10_dot_dat_in_part = union {
// Technic Axle Hole Tooth Surface
// Name: axleho10.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Primitive UPDATE 2005-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
// !HISTORY 2002-11-08 [OrionP] Adjusted fit and precision
// !HISTORY 2003-03-12 [PTadmin] Official Update 2003-01
// !HISTORY 2005-05-15 [guyvivan] Use 1-8chrd.dat primitive
// !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <5.54328,0,2.2961,0,1,0,-2.2961,0,5.54328,0,0,0>
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <-2.2961,0,5.54328,0,1,0,-5.54328,0,-2.2961,0,0,0>
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <-5.54328,0,-2.2961,0,1,0,2.2961,0,-5.54328,0,0,0>
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <2.2961,0,-5.54328,0,1,0,5.54328,0,2.2961,0,0,0>
}
}
#declare LDX_4_dash_4ring1_dot_dat_in_part = disc // Ring 1
{
<0,0,0>,<0,1,0>,2,1
}
#declare LDX_4_dash_4ring1_dot_dat = disc // Ring 1
{
<0,0,0>,<0,1,0>,2,1
}
#declare LDX_3_dash_4cyli_dot_dat_in_part = cylinder // Cylinder 0.75
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<1,0,0>,0
}
}
}
}
#declare LDX_3_dash_4cyli_dot_dat = cylinder // Cylinder 0.75
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<1,0,0>,0
}
}
}
}
#declare LDX_3_dash_4disc_dot_dat_in_part = disc // Disc 0.75
{
<0,0,0>,<0,1,0>,1
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<1,0,0>,0
}
}
}
}
#declare LDX_3_dash_4disc_dot_dat = disc // Disc 0.75
{
<0,0,0>,<0,1,0>,1
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<1,0,0>,0
}
}
}
}
#declare LDX_stud10_dot_dat_in_part = union {
// Stud For Round 2 x 2 Parts
// Name: stud10.dat
// Author: Orion Pobursky [OrionP]
// !LDRAW_ORG Primitive UPDATE 2019-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2004-01-06 [Steffen] Fixed Header
// !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2012-02-16 [Philo] Changed to CCW
// !HISTORY 2012-03-30 [PTadmin] Official Update 2012-01
// !HISTORY 2018-02-25 [MagFors] Corrected and added cond-lines
// !HISTORY 2019-06-28 [PTadmin] Official Update 2019-01
object {
LDX_3_dash_4cyli_dot_dat_in_part
matrix <0,0,6,0,4,0,-6,0,0,0,-4,0>
}
object {
LDX_3_dash_4disc_dot_dat_in_part
matrix <0,0,6,0,1,0,-6,0,0,0,-4,0>
}
}
#declare LDX_1_dash_8cyli_dot_dat_in_part = cylinder // Cylinder 0.125
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.70710678118654746172,0,0.70710678118654757274>,0
}
}
}
#declare LDX_1_dash_8cyli_dot_dat = cylinder // Cylinder 0.125
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.70710678118654746172,0,0.70710678118654757274>,0
}
}
}
#declare LDX_4032a_dot_dat =
#if (LDXQual = 0)
box {
<-20.000526,-4,-20.000526>,<20.000526,8,20.000526>
}
#else
union {
// Plate 2 x 2 Round with Axlehole Type 1
// Name: 4032a.dat
// Author: James Jessiman
// !LDRAW_ORG Part UPDATE 2010-03
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2004-03-25 [westrate] Added stud10, replaced quads with primitives, BFCed
// !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
// !HISTORY 2007-06-30 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2010-01-30 [mikeheide] optimized axlehole
// !HISTORY 2010-01-31 [PTadmin] Renamed from 4032
// !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
#if (LDXStuds)
object {
LDX_stud4a_dot_dat_in_part
matrix <1,0,0,0,-1,0,0,0,1,0,4,0>
}
#end // LDXStuds
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <8,0,0,0,-1,0,0,0,8,0,4,0>
}
// BFC INVERTNEXT
object {
LDX_axleho10_dot_dat_in_part
matrix <1,0,0,0,4,0,0,0,1,0,0,0>
}
object {
LDX_axleho10_dot_dat_in_part
matrix <0,0,1,0,-4,0,1,0,0,0,4,0>
}
object {
LDX_4_dash_4ring1_dot_dat_in_part
matrix <6,0,0,0,1,0,0,0,6,0,0,0>
}
object {
LDX_4_dash_4ring1_dot_dat_in_part
matrix <10,0,0,0,1,0,0,0,10,0,0,0>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <20,0,0,0,4,0,0,0,20,0,0,0>
}
#if (LDXStuds)
object {
LDX_stud10_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,10,0,10>
}
object {
LDX_stud10_dot_dat_in_part
matrix <0,0,1,0,1,0,-1,0,0,-10,0,10>
}
object {
LDX_stud10_dot_dat_in_part
matrix <0,0,-1,0,1,0,1,0,0,10,0,-10>
}
object {
LDX_stud10_dot_dat_in_part
matrix <-1,0,0,0,1,0,0,0,-1,-10,0,-10>
}
#end // LDXStuds
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <-7.6537,0,-18.4776,0,-1,0,18.4776,0,-7.6537,0,8,0>
}
object {
LDX_1_dash_8cyli_dot_dat_in_part
matrix <-7.6537,0,-18.4776,0,4,0,18.4776,0,-7.6537,0,4,0>
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <18.4776,0,-7.6537,0,-1,0,7.6537,0,18.4776,0,8,0>
}
object {
LDX_1_dash_8cyli_dot_dat_in_part
matrix <18.4776,0,-7.6537,0,4,0,7.6537,0,18.4776,0,4,0>
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <7.6537,0,18.4776,0,-1,0,-18.4776,0,7.6537,0,8,0>
}
object {
LDX_1_dash_8cyli_dot_dat_in_part
matrix <7.6537,0,18.4776,0,4,0,-18.4776,0,7.6537,0,4,0>
}
object {
LDX_1_dash_8chrd_dot_dat_in_part
matrix <-18.4776,0,7.6537,0,-1,0,-7.6537,0,-18.4776,0,8,0>
}
object {
LDX_1_dash_8cyli_dot_dat_in_part
matrix <-18.4776,0,7.6537,0,4,0,-7.6537,0,-18.4776,0,4,0>
}
// //
mesh2 {
vertex_vectors {
132,
<-18.4776,4,-7.6537>, <-18.4776,4,7.6537>, <-18.4776,8,-7.6537>, <-18.4776,8,7.6537>,
<-16,-4,-10>, <-16,-4,10>, <-16,0,-10>, <-16,0,10>,
<-16,4,-11.36>, <-16,4,11.36>, <-16,8,-11.36>, <-16,8,11.36>,
<-15.6145,-4,-11.9397>, <-15.6145,-4,11.9397>, <-15.6145,0,-11.9397>, <-15.6145,0,11.9387>,
<-14.142,-4,-14.142>, <-14.142,-4,14.142>, <-14.142,0,-14.142>, <-14.142,0,14.142>,
<-14.14,4,-14.14>, <-14.14,4,14.14>, <-11.9397,-4,-15.6145>, <-11.9397,-4,15.6145>,
<-11.9397,0,15.6145>, <-11.9387,0,-15.6145>, <-11.36,4,-16>, <-11.36,4,16>,
<-11.36,8,-16>, <-11.36,8,16>, <-10,-4,-16>, <-10,-4,-10>,
<-10,-4,10>, <-10,-4,16>, <-10,0,-16>, <-10,0,16>,
<-8,4,-8>, <-8,4,8>, <-7.6537,4,-18.4776>, <-7.6537,4,18.4776>,
<-7.6537,8,-18.4776>, <-7.6537,8,18.4776>, <-6,0,0>, <-6,4,0>,
<-5.602,0,-2>, <-5.602,0,2>, <-5.602,4,-2>, <-5.602,4,2>,
<-5.543,0,-2.296>, <-5.543,0,2.296>, <-5.543,4,-2.296>, <-5.543,4,2.296>,
<-2.296,0,-5.543>, <-2.296,0,5.543>, <-2.296,4,-5.543>, <-2.296,4,5.543>,
<-2,0,-5.602>, <-2,0,-2>, <-2,0,2>, <-2,0,5.602>,
<-2,4,-5.602>, <-2,4,-2>, <-2,4,2>, <-2,4,5.602>,
<0,0,-6>, <0,0,6>, <0,4,-6>, <0,4,6>,
<2,0,-5.602>, <2,0,-2>, <2,0,2>, <2,0,5.602>,
<2,4,-5.602>, <2,4,-2>, <2,4,2>, <2,4,5.602>,
<2.296,0,-5.543>, <2.296,0,5.543>, <2.296,4,-5.543>, <2.296,4,5.543>,
<5.543,0,-2.296>, <5.543,0,2.296>, <5.543,4,-2.296>, <5.543,4,2.296>,
<5.602,0,-2>, <5.602,0,2>, <5.602,4,-2>, <5.602,4,2>,
<6,0,0>, <6,4,0>, <7.6537,4,-18.4776>, <7.6537,4,18.4776>,
<7.6537,8,-18.4776>, <7.6537,8,18.4776>, <8,4,-8>, <8,4,8>,
<10,-4,-16>, <10,-4,-10>, <10,-4,10>, <10,-4,16>,
<10,0,-16>, <10,0,16>, <11.36,4,-16>, <11.36,4,16>,
<11.36,8,-16>, <11.36,8,16>, <11.9387,0,15.6145>, <11.9397,-4,-15.6145>,
<11.9397,-4,15.6145>, <11.9397,0,-15.6145>, <14.14,4,-14.14>, <14.14,4,14.14>,
<14.142,-4,-14.142>, <14.142,-4,14.142>, <14.142,0,-14.142>, <14.142,0,14.142>,
<15.6145,-4,-11.9397>, <15.6145,-4,11.9397>, <15.6145,0,-11.9387>, <15.6145,0,11.9397>,
<16,-4,-10>, <16,-4,10>, <16,0,-10>, <16,0,10>,
<16,4,-11.36>, <16,4,11.36>, <16,8,-11.36>, <16,8,11.36>,
<18.4776,4,-7.6537>, <18.4776,4,7.6537>, <18.4776,8,-7.6537>, <18.4776,8,7.6537>
}
normal_vectors {
26,
<-1,0,0>, <-0.980769,0,-0.195173>, <-0.980769,0,0.195173>, <-0.8313,0,-0.555823>,
<-0.831417,-0.000139,0.555649>, <-0.707107,0,-0.707107>, <-0.707107,0,0.707107>, <-0.555649,-0.000139,-0.831417>,
<-0.555823,0,0.8313>, <-0.195173,0,-0.980769>, <-0.195173,0,0.980769>, <0,-1,0>,
<0,0,-1>, <0,0,1>, <0,1,0>, <0.195173,0,-0.980769>,
<0.195173,0,0.980769>, <0.555823,0,-0.8313>, <0.555649,-0.000139,0.831417>, <0.707107,0,-0.707107>,
<0.707107,0,0.707107>, <0.831417,-0.000139,-0.555649>, <0.8313,0,0.555823>, <0.980769,0,-0.195173>,
<0.980769,0,0.195173>, <1,0,0>
}
face_indices {
152,
<42, 45, 47>, <42, 47, 43>, <45, 58, 62>, <45, 62, 47>,
<58, 59, 63>, <58, 63, 62>, <59, 65, 67>, <59, 67, 63>,
<88, 89, 87>, <88, 87, 85>, <85, 87, 74>, <85, 74, 70>,
<70, 74, 75>, <70, 75, 71>, <71, 75, 67>, <71, 67, 65>,
<42, 43, 46>, <42, 46, 44>, <44, 46, 61>, <44, 61, 57>,
<57, 61, 60>, <57, 60, 56>, <56, 60, 66>, <56, 66, 64>,
<88, 84, 86>, <88, 86, 89>, <84, 69, 73>, <84, 73, 86>,
<69, 68, 72>, <69, 72, 73>, <68, 64, 66>, <68, 66, 72>,
<81, 70, 85>, <71, 70, 77>, <58, 49, 45>, <58, 59, 53>,
<69, 80, 84>, <69, 68, 76>, <48, 57, 44>, <56, 57, 52>,
<77, 70, 81>, <49, 58, 53>, <52, 57, 48>, <80, 69, 76>,
<79, 74, 75>, <87, 74, 83>, <73, 78, 72>, <73, 86, 82>,
<62, 55, 63>, <62, 47, 51>, <54, 61, 60>, <46, 61, 50>,
<83, 74, 79>, <78, 73, 82>, <50, 61, 54>, <55, 62, 51>,
<121, 117, 98>, <117, 113, 98>, <113, 108, 98>, <108, 99, 98>,
<123, 119, 117>, <123, 117, 121>, <119, 115, 113>, <119, 113, 117>,
<115, 106, 108>, <115, 108, 113>, <106, 101, 99>, <106, 99, 108>,
<33, 23, 32>, <23, 17, 32>, <17, 13, 32>, <13, 5, 32>,
<35, 24, 23>, <35, 23, 33>, <24, 19, 17>, <24, 17, 23>,
<19, 15, 13>, <19, 13, 17>, <15, 7, 5>, <15, 5, 13>,
<96, 107, 97>, <107, 112, 97>, <112, 116, 97>, <116, 120, 97>,
<100, 109, 107>, <100, 107, 96>, <109, 114, 112>, <109, 112, 107>,
<114, 118, 116>, <114, 116, 112>, <118, 122, 120>, <118, 120, 116>,
<4, 12, 31>, <12, 16, 31>, <16, 22, 31>, <22, 30, 31>,
<6, 14, 12>, <6, 12, 4>, <14, 18, 16>, <14, 16, 12>,
<18, 25, 22>, <18, 22, 16>, <25, 34, 30>, <25, 30, 22>,
<94, 102, 26>, <94, 26, 36>, <26, 20, 8>, <26, 8, 36>,
<26, 28, 104>, <26, 104, 102>, <92, 40, 28>, <92, 28, 104>,
<90, 92, 104>, <90, 104, 102>, <40, 38, 26>, <40, 26, 28>,
<95, 125, 124>, <95, 124, 94>, <124, 110, 102>, <124, 102, 94>,
<124, 126, 127>, <124, 127, 125>, <131, 130, 126>, <131, 126, 127>,
<129, 131, 127>, <129, 127, 125>, <130, 128, 124>, <130, 124, 126>,
<37, 27, 103>, <37, 103, 95>, <103, 111, 125>, <103, 125, 95>,
<103, 105, 29>, <103, 29, 27>, <41, 93, 105>, <41, 105, 29>,
<39, 41, 29>, <39, 29, 27>, <93, 91, 103>, <93, 103, 105>,
<36, 8, 9>, <36, 9, 37>, <9, 21, 27>, <9, 27, 37>,
<9, 11, 10>, <9, 10, 8>, <2, 3, 11>, <2, 11, 10>,
<0, 2, 10>, <0, 10, 8>, <3, 1, 9>, <3, 9, 11>
}
normal_indices {
152,
<25, 23, 23>, <25, 23, 25>, <12, 12, 12>, <12, 12, 12>,
<25, 25, 25>, <25, 25, 25>, <15, 12, 12>, <15, 12, 15>,
<0, 0, 1>, <0, 1, 1>, <12, 12, 12>, <12, 12, 12>,
<0, 0, 0>, <0, 0, 0>, <9, 9, 12>, <9, 12, 12>,
<25, 25, 24>, <25, 24, 24>, <13, 13, 13>, <13, 13, 13>,
<25, 25, 25>, <25, 25, 25>, <16, 16, 13>, <16, 13, 13>,
<0, 2, 2>, <0, 2, 0>, <13, 13, 13>, <13, 13, 13>,
<0, 0, 0>, <0, 0, 0>, <10, 13, 13>, <10, 13, 10>,
<14, 14, 14>, <14, 14, 14>, <14, 14, 14>, <14, 14, 14>,
<14, 14, 14>, <14, 14, 14>, <14, 14, 14>, <14, 14, 14>,
<14, 14, 14>, <14, 14, 14>, <14, 14, 14>, <14, 14, 14>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<14, 14, 14>, <14, 14, 14>, <14, 14, 14>, <14, 14, 14>,
<1, 1, 1>, <1, 1, 1>, <3, 5, 5>, <3, 5, 3>,
<5, 7, 7>, <5, 7, 5>, <9, 9, 9>, <9, 9, 9>,
<14, 14, 14>, <14, 14, 14>, <14, 14, 14>, <14, 14, 14>,
<15, 15, 15>, <15, 15, 15>, <17, 19, 19>, <17, 19, 17>,
<19, 21, 21>, <19, 21, 19>, <23, 23, 23>, <23, 23, 23>,
<14, 14, 14>, <14, 14, 14>, <14, 14, 14>, <14, 14, 14>,
<10, 10, 10>, <10, 10, 10>, <8, 6, 6>, <8, 6, 8>,
<6, 4, 4>, <6, 4, 6>, <2, 2, 2>, <2, 2, 2>,
<14, 14, 14>, <14, 14, 14>, <14, 14, 14>, <14, 14, 14>,
<24, 24, 24>, <24, 24, 24>, <22, 20, 20>, <22, 20, 22>,
<20, 18, 18>, <20, 18, 20>, <16, 16, 16>, <16, 16, 16>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<13, 13, 13>, <13, 13, 13>, <11, 11, 11>, <11, 11, 11>,
<8, 8, 8>, <8, 8, 8>, <18, 18, 18>, <18, 18, 18>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<0, 0, 0>, <0, 0, 0>, <11, 11, 11>, <11, 11, 11>,
<3, 3, 3>, <3, 3, 3>, <4, 4, 4>, <4, 4, 4>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<12, 12, 12>, <12, 12, 12>, <11, 11, 11>, <11, 11, 11>,
<17, 17, 17>, <17, 17, 17>, <7, 7, 7>, <7, 7, 7>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<25, 25, 25>, <25, 25, 25>, <11, 11, 11>, <11, 11, 11>,
<22, 22, 22>, <22, 22, 22>, <21, 21, 21>, <21, 21, 21>
}
}
}
#end
#include "lg_3941.inc" // Brick 2 x 2 Round Type 1
#include "lg_4589.inc" // Cone 1 x 1
#declare LDX_Engine_dot_ldr = union {
// untitled model
// Name: Engine
// Author: Allen Smith
object {
lg_3022
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
object {
lg_3941_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40.001011, 28, 40.001011, 0, 10, 0)
matrix <1,0,0,0,1,0,0,0,1,0,8,0>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
// STEP
object {
lg_4589_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 28, 20, 0, 10, 0)
matrix <1,0,0,0,1,0,0,0,1,0,32,0>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
// STEP
// NOFILE
}
#declare LDX_4_dash_4cylo_dot_dat_in_part = union {
// Cylinder Open 1.0
// Name: 4-4cylo.dat
// Author: Mark Kennedy [mkennedy]
// !LDRAW_ORG Primitive UPDATE 2010-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
}
#declare LDX_1_dash_4disc_dot_dat_in_part = disc // Disc 0.25
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4disc_dot_dat = disc // Disc 0.25
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4cyli_dot_dat_in_part = cylinder // Cylinder 0.25
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4cyli_dot_dat = cylinder // Cylinder 0.25
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4cylc_dot_dat_in_part = union {
// Cylinder Closed 0.25
// Name: 1-4cylc.dat
// Author: Mark Kennedy [mkennedy]
// !LDRAW_ORG Primitive UPDATE 2010-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2010-04-05 [PTadmin] Official Update 2010-01
object {
LDX_1_dash_4disc_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_1_dash_4cyli_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
}
#declare LDX_1_dash_4ring1_dot_dat_in_part = disc // Ring 0.25
{
<0,0,0>,<0,1,0>,2,1
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4ring1_dot_dat = disc // Ring 0.25
{
<0,0,0>,<0,1,0>,2,1
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_3_dash_4ndis_dot_dat_in_part = disc // Not-Disc 0.75
{
<0,0,0>,<0,1,0>,2,1
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<1,0,0>,0
}
}
box
{
<-1,-1,-1>,<1,1,1>
}
}
}
#declare LDX_3_dash_4ndis_dot_dat = disc // Not-Disc 0.75
{
<0,0,0>,<0,1,0>,2,1
clipped_by
{
union
{
plane
{
<0,0,-1>,0
}
plane
{
<1,0,0>,0
}
}
box
{
<-1,-1,-1>,<1,1,1>
}
}
}
#declare LDX_s_slash_3816s02_dot_dat_in_part = union {
// ~Minifig Leg Right without Front and Side Surfaces
// Name: s\3816s02.dat
// Author: Magnus Forsberg [MagFors]
// !LDRAW_ORG Subpart UPDATE 2013-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
// // Interior
// BFC INVERTNEXT
object {
LDX_4_dash_4cylo_dot_dat_in_part
matrix <6,0,0,0,0,4,0,6,0,-10,18,5>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <6,0,0,0,0,1,0,6,0,-10,18,5>
}
// BFC INVERTNEXT
// BFC INVERTNEXT
// // Bottom
// // Front
// // Side out
// // Side in
// // Side out
// BFC INVERTNEXT
object {
LDX_4_dash_4cylo_dot_dat_in_part
matrix <0,3,0,5.72,0,0,0,0,3,-7.72,0,0>
}
// // Hole side
// BFC INVERTNEXT
object {
LDX_1_dash_4cylc_dot_dat_in_part
matrix <0,-6,0,6.62,0,0,0,0,-6,-14.34,0,0>
}
object {
LDX_1_dash_4ring1_dot_dat_in_part
matrix <0,-3,0,1,0,0,0,0,-3,-7.72,0,0>
}
object {
LDX_3_dash_4ndis_dot_dat_in_part
matrix <0,0,-3,1,0,0,0,3,0,-7.72,0,0>
}
// // inner cyl
// // topside
// // backside
// // backside bottom
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <6,0,0,0,0,-1,0,6,0,-10,18,9>
}
}
#declare LDX_s_slash_3816s01_dot_dat_in_part = union {
// ~Minifig Leg Right without Front Surfaces
// Name: s\3816s01.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Subpart UPDATE 2013-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
// !HISTORY 2002-05-29 [fwcain] removed all front surfaces (put into "main" file[s])...
// !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
// !HISTORY 2007-09-13 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2008-07-07 [tchang] Add BFC, partially rebuild
// !HISTORY 2008-12-31 [tchang] Corrected some conditional lines
// !HISTORY 2009-08-24 [PTadmin] Renamed from s/971s01
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
// !HISTORY 2013-04-01 [tchang] Suppress overlap faces
// !HISTORY 2013-04-03 [MagFors] Used new file s\3816s02.dat
// !HISTORY 2013-12-23 [PTadmin] Official Update 2013-02
object {
LDX_s_slash_3816s02_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
// // outer side surface
}
#declare LDX_s_slash_3817s01_dot_dat_in_part = union {
// ~Minifig Leg Left without Front Surfaces
// Name: s\3817s01.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Subpart UPDATE 2009-03
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
// !HISTORY 2002-05-29 [fwcain] removed all front surfaces (put into "main" file[s])
// !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
// !HISTORY 2003-07-01 [sbliss] Changed to be a mirror reference to 971s01
// !HISTORY 2003-12-19 [PTadmin] Official Update 2003-03
// !HISTORY 2007-09-13 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-05-20 [Steffen] BFCed
// !HISTORY 2009-08-24 [PTadmin] Renamed from s/972s01
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
// // Un-Comment these lines for front surfaces:
// // 4 16 2 -6.30 -6.30 2 -3.42 -8.28 18.23 -3.42 -8.28 18.11 -6.30 -6.30
// // 4 16 2 -3.42 -8.28 2 0 -9 18.36 0 -9 18.23 -3.42 -8.28
// // 4 16 2 0 -9 2 3.42 -8.28 18.50 3.42 -8.28 18.36 0 -9
// // 4 16 2 3.42 -8.28 2 6.74 -6 18.64 6.74 -6 18.50 3.42 -8.28
// // 4 16 2 6.74 -6 2 7.70 -6 18.68 7.70 -6 18.64 6.74 -6
// // 4 16 1.50 7.70 -6 1.50 20 -6 19.18 20 -6 18.68 7.70 -6
// // 4 16 1.50 20 -6 1.50 20 -11 19.18 20 -11 19.18 20 -6
// // 4 16 1.50 20 -11 1.50 28 -11 19.50 28 -11 19.18 20 -11
object {
LDX_s_slash_3816s01_dot_dat_in_part
matrix <-1,0,0,0,1,0,0,0,1,0,0,0>
}
}
#declare LDX_3817_dot_dat =
#if (LDXQual = 0)
box {
<1.5,-9,-11>,<19.5,28,9>
}
#else
union {
// Minifig Leg Left
// Name: 3817.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Part UPDATE 2009-03
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HELP Move down 12 units to align with hips
// !HISTORY 1997-10-29 [PTadmin] Official Update 1997-16
// !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
// !HISTORY 2002-04-10 [fwcain] Fixed overlapping quad...
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2002-05-29 [fwcain] Moved all front surfaces to "main" file (from subfile)...
// !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
// !HISTORY 2007-07-27 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2008-12-31 [tchang] Add BFC
// !HISTORY 2009-08-24 [PTadmin] Moved from 972
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
object {
LDX_s_slash_3817s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
mesh2 {
vertex_vectors {
144,
<1.5,4.1,9>, <1.5,7,7>, <1.5,7.7,-6>, <1.5,9.2,-3.8>,
<1.5,9.2,3.8>, <1.5,10,0>, <1.5,20,-11>, <1.5,20,-6>,
<1.5,28,-11>, <1.5,28,9>, <2,-9,0>, <2,-8.28,-3.42>,
<2,-8.28,3.42>, <2,-6.3,-6.3>, <2,-6.3,6.3>, <2,-3.42,-8.28>,
<2,-3.42,8.28>, <2,-3,0>, <2,-2.7717,-1.1481>, <2,-2.7717,1.1481>,
<2,-2.1213,-2.1213>, <2,-2.1213,2.1213>, <2,-1.1481,-2.7717>, <2,-1.1481,2.7717>,
<2,0,-9>, <2,0,-3>, <2,0,3>, <2,0,9>,
<2,1.1481,-2.7717>, <2,1.1481,2.7717>, <2,2.1213,-2.1213>, <2,2.1213,2.1213>,
<2,2.7717,-1.1481>, <2,2.7717,1.1481>, <2,3,0>, <2,3.42,-8.28>,
<2,4.1,9>, <2,6.74,-6>, <2,7,7>, <2,7.7,-6>,
<2,9.2,-3.8>, <2,9.2,3.8>, <2,10,0>, <4,-2,5>,
<4,-2,8.5789>, <4,8,-3>, <4,8,5>, <4,12,5>,
<4,12,9>, <4,18,9>, <4,24,-7>, <4,24,-3>,
<4,24,5>, <4,24,9>, <4,28,-7>, <4,28,5>,
<4.2824,-3.42,8.28>, <4.3977,0,9>, <4.4566,-4.2962,5>, <4.4566,-4.2962,7.6776>,
<4.4566,0.2962,5>, <4.4566,0.2962,9>, <5.7574,-6.2426,5>, <5.7574,-6.2426,6.3395>,
<5.7574,2.2426,5>, <5.7574,2.2426,9>, <5.8433,-6.3,6.3>, <7.1806,-7.1937,5>,
<7.7038,-7.5434,4.4914>, <7.7038,-7.5434,5>, <7.7038,3.5434,9>, <7.72,-6,0>,
<7.72,-6,5>, <7.72,-3,0>, <7.72,-3,3>, <7.72,0,-6>,
<7.72,0,-3>, <7.72,0,3>, <7.72,2.3,-5.54>, <7.72,3,-3>,
<7.72,3,0>, <7.72,3,3>, <7.72,3.55,-4.71>, <7.72,3.55,5>,
<10,-8,3.8273>, <10,-8,5>, <10,4,-4.4>, <10,4,9>,
<10,12,5>, <10,12,9>, <10,24,5>, <10,24,9>,
<12.2962,-7.5434,4.4914>, <12.2962,-7.5434,5>, <12.2962,3.5434,9>, <12.3,3.54,-4.71>,
<12.8194,-7.1937,5>, <14.1567,-6.3,6.3>, <14.24,2.24,-5.55>, <14.2426,-6.2426,5>,
<14.2426,-6.2426,6.3395>, <14.2426,2.2426,9>, <14.34,-6,0>, <14.34,-6,5>,
<14.34,0,-6>, <14.34,0,0>, <14.34,2.1,-5.58>, <14.34,2.1,5>,
<15.5434,-4.2962,5>, <15.5434,-4.2962,7.6776>, <15.5434,0.2962,5>, <15.5434,0.2962,9>,
<15.6023,0,9>, <15.7176,-3.42,8.28>, <16,-2,5>, <16,-2,8.5789>,
<16,8,-3>, <16,8,5>, <16,12,5>, <16,12,9>,
<16,18,9>, <16,24,-7>, <16,24,-3>, <16,24,5>,
<16,24,9>, <16,28,-7>, <16,28,5>, <18,-9,0>,
<18.030001,-8.28,-3.42>, <18.030001,-8.28,3.42>, <18.110001,-6.3,-6.3>, <18.110001,-6.3,6.3>,
<18.23,-3.42,-8.28>, <18.23,-3.42,8.28>, <18.360001,0,-9>, <18.360001,0,0>,
<18.360001,0,9>, <18.5,3.42,-8.28>, <18.639999,6.74,-6>, <18.68,7.7,-6>,
<19.18,20,-11>, <19.18,20,-6>, <19.5,28,-11>, <19.5,28,9>
}
normal_vectors {
66,
<-1,0,0>, <-0.999223,0.039404,-0.000587>, <-0.999223,0.039404,0.000587>, <-0.999187,0.040324,-0.00019>,
<-0.999184,0.040384,0.000734>, <-0.999155,0.041099,-0.000184>, <-0.980804,-0.194997,0>, <-0.980797,0.195031,0>,
<-0.92388,-0.382681,0>, <-0.923873,0.382698,0>, <-0.7071,-0.707114,0.000002>, <-0.70658,0.707633,0>,
<-0.658423,0.752648,-0.000298>, <-0.55563,-0.83143,0.000003>, <-0.55569,0.83139,0>, <-0.382722,0.923863,0>,
<-0.382024,0.924152,-0.000013>, <-0.193633,0.981074,0>, <-0.06566,0.997842,0.000281>, <0,-1,0>,
<0,-0.566107,0.824332>, <0,-0.393684,0.919246>, <0,0,-1>, <0,0,1>,
<0,0,1>, <0,0.041349,-0.999145>, <0,0.103573,-0.994622>, <0,0.196116,-0.980581>,
<0.000216,0.202974,-0.979184>, <0,0.206033,-0.978545>, <0.00001,0.393923,-0.919143>, <0,0.393919,0.919145>,
<0,0.566537,-0.824036>, <0,0.567733,0.823213>, <0,0.707271,-0.706942>, <0,0.707107,0.707107>,
<0,0.707623,0.70659>, <0,0.82406,-0.566503>, <0,0.826227,-0.563337>, <0,0.919151,-0.393905>,
<0,0.919145,0.393919>, <0,0.919905,-0.392141>, <0,1,0>, <0,1,0>,
<0.001371,0.383264,-0.923638>, <0.001219,0.558127,-0.829755>, <0.001229,0.563073,-0.826406>, <0.002124,0.384694,-0.923042>,
<0.002061,0.554313,-0.832306>, <0.066967,0.997755,-0.000064>, <0.321057,0.94706,-0.000082>, <0.382722,0.923863,0>,
<0.443669,0.896191,-0.000166>, <0.555593,-0.831454,0>, <0.55569,0.83139,0>, <0.696419,0.717635,-0.000253>,
<0.707084,-0.707129,0>, <0.729136,0.684369,-0.000023>, <0.81978,0.572678,-0.000125>, <0.829693,0.558221,0.000145>,
<0.896639,0.442763,0.000148>, <0.923874,-0.382698,0.000005>, <0.924027,0.382327,0>, <0.980793,-0.195053,0>,
<0.980797,0.195033,0>, <1,0,0>
}
face_indices {
246,
<55, 126, 123>, <55, 123, 90>, <55, 90, 52>, <88, 118, 117>,
<88, 117, 46>, <47, 88, 46>, <122, 51, 45>, <122, 45, 116>,
<45, 46, 117>, <45, 117, 116>, <51, 52, 46>, <51, 46, 45>,
<116, 117, 123>, <116, 123, 122>, <122, 123, 126>, <122, 126, 125>,
<125, 121, 122>, <54, 55, 52>, <54, 52, 51>, <51, 50, 54>,
<121, 125, 54>, <121, 54, 50>, <121, 50, 51>, <121, 51, 122>,
<125, 126, 143>, <125, 143, 142>, <126, 55, 9>, <126, 9, 143>,
<55, 54, 8>, <55, 8, 9>, <54, 125, 142>, <54, 142, 8>,
<6, 7, 9>, <6, 9, 8>, <2, 3, 7>, <3, 5, 9>,
<3, 9, 7>, <5, 4, 9>, <4, 1, 9>, <1, 0, 9>,
<39, 40, 3>, <39, 3, 2>, <40, 42, 5>, <40, 5, 3>,
<42, 41, 4>, <42, 4, 5>, <41, 38, 1>, <41, 1, 4>,
<38, 36, 0>, <38, 0, 1>, <27, 36, 31>, <27, 31, 29>,
<16, 27, 29>, <16, 29, 26>, <14, 16, 26>, <14, 26, 23>,
<12, 14, 23>, <12, 23, 21>, <10, 12, 21>, <10, 21, 19>,
<11, 10, 19>, <11, 19, 17>, <13, 11, 17>, <13, 17, 18>,
<15, 13, 18>, <15, 18, 20>, <24, 15, 20>, <24, 20, 22>,
<35, 24, 22>, <35, 22, 25>, <37, 35, 25>, <37, 25, 28>,
<39, 37, 28>, <39, 28, 30>, <40, 39, 30>, <40, 30, 32>,
<42, 40, 32>, <42, 32, 34>, <41, 42, 34>, <41, 34, 33>,
<38, 41, 33>, <38, 33, 31>, <38, 31, 36>, <102, 71, 72>,
<102, 72, 103>, <104, 106, 78>, <104, 78, 75>, <106, 98, 78>,
<78, 98, 95>, <82, 78, 95>, <82, 95, 86>, <105, 102, 103>,
<105, 103, 107>, <105, 107, 106>, <105, 106, 104>, <71, 73, 74>,
<71, 74, 72>, <81, 83, 72>, <81, 72, 77>, <79, 82, 83>,
<79, 83, 80>, <75, 78, 79>, <75, 79, 76>, <82, 79, 78>,
<110, 107, 103>, <110, 103, 114>, <108, 114, 103>, <108, 103, 99>,
<93, 96, 103>, <93, 103, 85>, <85, 103, 72>, <85, 72, 69>,
<67, 69, 72>, <67, 72, 58>, <43, 58, 72>, <43, 72, 60>,
<64, 60, 72>, <64, 72, 83>, <94, 87, 86>, <94, 86, 95>,
<101, 94, 95>, <101, 95, 98>, <101, 98, 106>, <101, 106, 107>,
<107, 110, 111>, <107, 111, 101>, <112, 111, 110>, <115, 112, 110>,
<115, 110, 114>, <113, 115, 114>, <113, 114, 108>, <109, 113, 108>,
<100, 109, 108>, <100, 108, 99>, <97, 100, 99>, <97, 99, 96>,
<92, 96, 93>, <93, 85, 84>, <93, 84, 92>, <85, 69, 68>,
<85, 68, 84>, <67, 68, 69>, <66, 67, 62>, <66, 62, 63>,
<59, 63, 62>, <59, 62, 58>, <56, 59, 58>, <56, 58, 43>,
<44, 56, 43>, <44, 43, 60>, <44, 60, 57>, <61, 57, 60>,
<61, 60, 64>, <61, 64, 65>, <65, 64, 83>, <65, 83, 70>,
<70, 83, 87>, <83, 82, 86>, <83, 86, 87>, <84, 12, 129>,
<129, 92, 84>, <12, 84, 68>, <12, 68, 67>, <129, 96, 92>,
<131, 97, 96>, <131, 96, 129>, <67, 66, 14>, <67, 14, 12>,
<12, 10, 127>, <12, 127, 129>, <10, 11, 128>, <10, 128, 127>,
<11, 13, 130>, <11, 130, 128>, <136, 112, 115>, <136, 115, 133>,
<113, 133, 115>, <109, 133, 113>, <133, 109, 100>, <133, 100, 131>,
<97, 131, 100>, <16, 44, 57>, <16, 57, 27>, <56, 44, 16>,
<59, 56, 16>, <14, 63, 59>, <14, 59, 16>, <66, 63, 14>,
<36, 70, 87>, <36, 87, 89>, <27, 65, 70>, <27, 70, 36>,
<61, 65, 27>, <57, 61, 27>, <136, 111, 112>, <136, 101, 111>,
<119, 94, 101>, <119, 101, 136>, <87, 94, 119>, <87, 119, 89>,
<91, 124, 143>, <91, 143, 9>, <91, 9, 53>, <9, 49, 53>,
<0, 48, 49>, <0, 49, 9>, <36, 89, 48>, <36, 48, 0>,
<120, 119, 136>, <120, 136, 143>, <120, 143, 124>, <96, 99, 103>,
<62, 67, 58>, <72, 74, 77>, <83, 81, 80>, <142, 143, 141>,
<142, 141, 140>, <141, 143, 136>, <141, 136, 138>, <136, 135, 138>,
<135, 136, 133>, <135, 133, 131>, <135, 131, 129>, <135, 129, 127>,
<135, 127, 128>, <135, 128, 130>, <135, 130, 132>, <135, 132, 134>,
<135, 134, 137>, <135, 137, 138>, <7, 6, 140>, <7, 140, 141>,
<6, 8, 142>, <6, 142, 140>, <139, 2, 7>, <139, 7, 141>,
<138, 37, 39>, <138, 39, 139>, <35, 37, 138>, <35, 138, 137>,
<24, 35, 137>, <24, 137, 134>, <132, 15, 24>, <132, 24, 134>,
<13, 15, 132>, <13, 132, 130>
}
normal_indices {
246,
<23, 23, 23>, <23, 23, 23>, <23, 23, 23>, <23, 23, 23>,
<23, 23, 23>, <23, 23, 23>, <22, 22, 22>, <22, 22, 22>,
<19, 19, 19>, <19, 19, 19>, <0, 0, 0>, <0, 0, 0>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<22, 22, 22>, <22, 22, 22>, <19, 19, 19>, <19, 19, 19>,
<19, 19, 19>, <19, 19, 19>, <19, 19, 19>, <19, 19, 19>,
<19, 19, 19>, <19, 19, 19>, <19, 19, 19>, <19, 19, 19>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<38, 41, 41>, <38, 41, 38>, <41, 42, 42>, <41, 42, 41>,
<42, 40, 40>, <42, 40, 42>, <40, 36, 36>, <40, 36, 40>,
<36, 33, 33>, <36, 33, 36>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <19, 19, 19>,
<19, 19, 19>, <27, 28, 44>, <27, 44, 27>, <28, 47, 44>,
<44, 47, 48>, <45, 44, 48>, <45, 48, 46>, <65, 65, 65>,
<65, 65, 65>, <65, 65, 65>, <65, 65, 65>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<22, 22, 22>, <22, 22, 22>, <22, 22, 22>, <22, 22, 22>,
<22, 22, 22>, <22, 22, 22>, <22, 22, 22>, <22, 22, 22>,
<22, 22, 22>, <22, 22, 22>, <22, 22, 22>, <22, 22, 22>,
<22, 22, 22>, <22, 22, 22>, <50, 18, 49>, <50, 49, 52>,
<57, 50, 52>, <57, 52, 55>, <57, 55, 58>, <57, 58, 59>,
<59, 62, 60>, <59, 60, 57>, <64, 60, 62>, <65, 64, 62>,
<65, 62, 65>, <63, 65, 65>, <63, 65, 61>, <61, 63, 61>,
<56, 61, 61>, <56, 61, 56>, <53, 56, 56>, <53, 56, 53>,
<15, 14, 15>, <15, 43, 43>, <15, 43, 15>, <43, 51, 51>,
<43, 51, 43>, <54, 51, 51>, <13, 13, 10>, <13, 10, 10>,
<8, 10, 10>, <8, 10, 8>, <6, 8, 8>, <6, 8, 0>,
<0, 6, 0>, <0, 0, 9>, <0, 9, 7>, <9, 7, 9>,
<9, 9, 11>, <9, 11, 12>, <12, 11, 16>, <12, 16, 15>,
<15, 16, 18>, <16, 17, 49>, <16, 49, 18>, <37, 39, 39>,
<39, 37, 37>, <39, 37, 37>, <39, 37, 37>, <39, 37, 37>,
<34, 34, 37>, <34, 37, 39>, <37, 34, 34>, <37, 34, 39>,
<39, 42, 42>, <39, 42, 39>, <42, 40, 40>, <42, 40, 42>,
<40, 35, 35>, <40, 35, 40>, <25, 26, 29>, <25, 29, 30>,
<30, 30, 29>, <32, 30, 30>, <30, 32, 32>, <30, 32, 34>,
<34, 34, 32>, <30, 29, 26>, <30, 26, 26>, <30, 29, 30>,
<32, 30, 30>, <34, 32, 32>, <34, 32, 30>, <34, 32, 34>,
<22, 22, 22>, <22, 22, 22>, <26, 22, 22>, <26, 22, 22>,
<22, 22, 26>, <26, 22, 26>, <25, 22, 26>, <25, 22, 22>,
<22, 22, 22>, <22, 22, 25>, <22, 22, 22>, <22, 22, 22>,
<22, 22, 22>, <22, 22, 22>, <22, 22, 22>, <22, 22, 22>,
<22, 22, 22>, <22, 22, 22>, <22, 22, 22>, <22, 22, 22>,
<22, 22, 25>, <22, 25, 22>, <22, 22, 22>, <22, 22, 22>,
<22, 22, 22>, <0, 0, 0>, <0, 0, 0>, <3, 3, 3>,
<3, 3, 3>, <3, 3, 3>, <3, 3, 5>, <3, 3, 5>,
<3, 3, 2>, <3, 2, 4>, <3, 4, 3>, <3, 3, 3>,
<3, 3, 3>, <3, 3, 3>, <3, 3, 1>, <3, 1, 1>,
<3, 1, 5>, <3, 5, 5>, <42, 42, 42>, <42, 42, 42>,
<23, 23, 23>, <23, 23, 23>, <23, 23, 23>, <23, 23, 23>,
<23, 23, 23>, <23, 23, 23>, <21, 20, 20>, <21, 20, 21>,
<24, 21, 21>, <24, 21, 24>, <31, 31, 24>, <31, 24, 24>,
<35, 31, 31>, <35, 31, 35>
}
}
}
#end
#declare LDX_3816_dot_dat =
#if (LDXQual = 0)
box {
<-19.5,-9,-11>,<-1.5,28,9>
}
#else
union {
// Minifig Leg Right
// Name: 3816.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Part UPDATE 2009-03
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HELP Move down 12 units to align with hips
// !HISTORY 1997-10-29 [PTadmin] Official Update 1997-16
// !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
// !HISTORY 2000-05-07 [PTadmin] Official Update 2000-01
// !HISTORY 2002-04-10 [fwcain] Fixed overlapping quad...
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2002-05-29 [fwcain] Moved all front surfaces to "main" file (from subfile)...
// !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
// !HISTORY 2007-07-27 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2008-12-31 [tchang] Add BFC
// !HISTORY 2009-08-24 [PTadmin] Moved from 971
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
object {
LDX_s_slash_3816s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
mesh2 {
vertex_vectors {
144,
<-19.5,28,-11>, <-19.5,28,9>, <-19.18,20,-11>, <-19.18,20,-6>,
<-18.68,7.7,-6>, <-18.639999,6.74,-6>, <-18.5,3.42,-8.28>, <-18.360001,0,-9>,
<-18.360001,0,0>, <-18.360001,0,9>, <-18.23,-3.42,-8.28>, <-18.23,-3.42,8.28>,
<-18.110001,-6.3,-6.3>, <-18.110001,-6.3,6.3>, <-18.030001,-8.28,-3.42>, <-18.030001,-8.28,3.42>,
<-18,-9,0>, <-16,-2,5>, <-16,-2,8.5789>, <-16,8,-3>,
<-16,8,5>, <-16,12,5>, <-16,12,9>, <-16,18,9>,
<-16,24,-7>, <-16,24,-3>, <-16,24,5>, <-16,24,9>,
<-16,28,-7>, <-16,28,5>, <-15.7176,-3.42,8.28>, <-15.6023,0,9>,
<-15.5434,-4.2962,5>, <-15.5434,-4.2962,7.6776>, <-15.5434,0.2962,5>, <-15.5434,0.2962,9>,
<-14.34,-6,0>, <-14.34,-6,5>, <-14.34,0,-6>, <-14.34,0,0>,
<-14.34,2.1,-5.58>, <-14.34,2.1,5>, <-14.2426,-6.2426,5>, <-14.2426,-6.2426,6.3395>,
<-14.2426,2.2426,9>, <-14.24,2.24,-5.55>, <-14.1567,-6.3,6.3>, <-12.8194,-7.1937,5>,
<-12.3,3.54,-4.71>, <-12.2962,-7.5434,4.4914>, <-12.2962,-7.5434,5>, <-12.2962,3.5434,9>,
<-10,-8,3.8273>, <-10,-8,5>, <-10,4,-4.4>, <-10,4,9>,
<-10,12,5>, <-10,12,9>, <-10,24,5>, <-10,24,9>,
<-7.72,-6,0>, <-7.72,-6,5>, <-7.72,-3,0>, <-7.72,-3,3>,
<-7.72,0,-6>, <-7.72,0,-3>, <-7.72,0,3>, <-7.72,2.3,-5.54>,
<-7.72,3,-3>, <-7.72,3,0>, <-7.72,3,3>, <-7.72,3.55,-4.71>,
<-7.72,3.55,5>, <-7.7038,-7.5434,4.4914>, <-7.7038,-7.5434,5>, <-7.7038,3.5434,9>,
<-7.1806,-7.1937,5>, <-5.8433,-6.3,6.3>, <-5.7574,-6.2426,5>, <-5.7574,-6.2426,6.3395>,
<-5.7574,2.2426,5>, <-5.7574,2.2426,9>, <-4.4566,-4.2962,5>, <-4.4566,-4.2962,7.6776>,
<-4.4566,0.2962,5>, <-4.4566,0.2962,9>, <-4.3977,0,9>, <-4.2824,-3.42,8.28>,
<-4,-2,5>, <-4,-2,8.5789>, <-4,8,-3>, <-4,8,5>,
<-4,12,5>, <-4,12,9>, <-4,18,9>, <-4,24,-7>,
<-4,24,-3>, <-4,24,5>, <-4,24,9>, <-4,28,-7>,
<-4,28,5>, <-2,-9,0>, <-2,-8.28,-3.42>, <-2,-8.28,3.42>,
<-2,-6.3,-6.3>, <-2,-6.3,6.3>, <-2,-3.42,-8.28>, <-2,-3.42,8.28>,
<-2,-3,0>, <-2,-2.7717,-1.1481>, <-2,-2.7717,1.1481>, <-2,-2.1213,-2.1213>,
<-2,-2.1213,2.1213>, <-2,-1.1481,-2.7717>, <-2,-1.1481,2.7717>, <-2,0,-9>,
<-2,0,-3>, <-2,0,3>, <-2,0,9>, <-2,1.1481,-2.7717>,
<-2,1.1481,2.7717>, <-2,2.1213,-2.1213>, <-2,2.1213,2.1213>, <-2,2.7717,-1.1481>,
<-2,2.7717,1.1481>, <-2,3,0>, <-2,3.42,-8.28>, <-2,4.1,9>,
<-2,6.74,-6>, <-2,7,7>, <-2,7.7,-6>, <-2,9.2,-3.8>,
<-2,9.2,3.8>, <-2,10,0>, <-1.5,4.1,9>, <-1.5,7,7>,
<-1.5,7.7,-6>, <-1.5,9.2,-3.8>, <-1.5,9.2,3.8>, <-1.5,10,0>,
<-1.5,20,-11>, <-1.5,20,-6>, <-1.5,28,-11>, <-1.5,28,9>
}
normal_vectors {
65,
<-1,0,0>, <-0.999155,-0.041099,0.000184>, <-0.999201,-0.039968,0>, <-0.999184,-0.040384,0.000734>,
<-0.999223,-0.039404,-0.000587>, <-0.999223,-0.039404,0.000587>, <-0.980797,-0.195031,0>, <-0.980804,0.194997,0>,
<-0.923873,-0.382698,0>, <-0.92388,0.382681,0>, <-0.70658,-0.707633,0>, <-0.7071,0.707114,-0.000002>,
<-0.658423,-0.752648,0.000298>, <-0.55569,-0.83139,0>, <-0.55563,0.83143,-0.000003>, <-0.382722,-0.923863,0>,
<-0.382024,-0.924152,0.000013>, <-0.193633,-0.981074,0>, <-0.06566,-0.997842,-0.000281>, <0,-1,0>,
<0,-1,0>, <0,-0.919905,0.392141>, <0,-0.919145,-0.393919>, <0,-0.919151,0.393905>,
<0,-0.826227,0.563337>, <0,-0.82406,0.566503>, <0,-0.707623,-0.70659>, <0,-0.707107,-0.707107>,
<0,-0.707271,0.706942>, <0,-0.567733,-0.823213>, <0,-0.566537,0.824036>, <0,-0.566107,0.824332>,
<0.00001,-0.393923,0.919143>, <0,-0.206033,0.978545>, <0.000216,-0.202974,0.979184>, <0,-0.196116,0.980581>,
<0,-0.103573,0.994622>, <0,0,-1>, <0,0,1>, <0,0,1>,
<0,0.393919,0.919145>, <0,0.707107,0.707107>, <0,1,0>, <0.001229,-0.563073,0.826406>,
<0.001219,-0.558127,0.829755>, <0.001371,-0.383264,0.923638>, <0.002061,-0.554313,0.832306>, <0.002124,-0.384694,0.923042>,
<0.066967,-0.997755,0.000064>, <0.321057,-0.94706,0.000082>, <0.382722,-0.923863,0>, <0.443669,-0.896191,0.000166>,
<0.55569,-0.83139,0>, <0.555593,0.831454,0>, <0.696419,-0.717635,0.000253>, <0.707084,0.707129,0>,
<0.729136,-0.684369,0.000023>, <0.81978,-0.572678,0.000125>, <0.829693,-0.558221,-0.000145>, <0.896639,-0.442763,-0.000148>,
<0.924027,-0.382327,0>, <0.923874,0.382698,-0.000005>, <0.980797,-0.195033,0>, <0.980793,0.195053,0>,
<1,0,0>
}
face_indices {
246,
<100, 29, 26>, <100, 26, 58>, <100, 58, 97>, <56, 21, 20>,
<56, 20, 91>, <92, 56, 91>, <25, 96, 90>, <25, 90, 19>,
<90, 91, 20>, <90, 20, 19>, <96, 97, 91>, <96, 91, 90>,
<19, 20, 26>, <19, 26, 25>, <25, 26, 29>, <25, 29, 28>,
<28, 24, 25>, <99, 100, 97>, <99, 97, 96>, <96, 95, 99>,
<24, 28, 99>, <24, 99, 95>, <24, 95, 96>, <24, 96, 25>,
<28, 29, 1>, <28, 1, 0>, <29, 100, 143>, <29, 143, 1>,
<100, 99, 142>, <100, 142, 143>, <99, 28, 0>, <99, 0, 142>,
<140, 141, 143>, <140, 143, 142>, <136, 137, 141>, <137, 139, 143>,
<137, 143, 141>, <139, 138, 143>, <138, 135, 143>, <135, 134, 143>,
<130, 131, 137>, <130, 137, 136>, <131, 133, 139>, <131, 139, 137>,
<133, 132, 138>, <133, 138, 139>, <132, 129, 135>, <132, 135, 138>,
<129, 127, 134>, <129, 134, 135>, <118, 127, 122>, <118, 122, 120>,
<107, 118, 120>, <107, 120, 117>, <105, 107, 117>, <105, 117, 114>,
<103, 105, 114>, <103, 114, 112>, <101, 103, 112>, <101, 112, 110>,
<102, 101, 110>, <102, 110, 108>, <104, 102, 108>, <104, 108, 109>,
<106, 104, 109>, <106, 109, 111>, <115, 106, 111>, <115, 111, 113>,
<126, 115, 113>, <126, 113, 116>, <128, 126, 116>, <128, 116, 119>,
<130, 128, 119>, <130, 119, 121>, <131, 130, 121>, <131, 121, 123>,
<133, 131, 123>, <133, 123, 125>, <132, 133, 125>, <132, 125, 124>,
<129, 132, 124>, <129, 124, 122>, <129, 122, 127>, <36, 60, 61>,
<36, 61, 37>, <38, 40, 67>, <38, 67, 64>, <40, 45, 67>,
<67, 45, 48>, <71, 67, 48>, <71, 48, 54>, <39, 36, 37>,
<39, 37, 41>, <39, 41, 40>, <39, 40, 38>, <60, 62, 63>,
<60, 63, 61>, <70, 72, 61>, <70, 61, 66>, <68, 71, 72>,
<68, 72, 69>, <64, 67, 68>, <64, 68, 65>, <71, 68, 67>,
<34, 41, 37>, <34, 37, 17>, <32, 17, 37>, <32, 37, 42>,
<50, 47, 37>, <50, 37, 53>, <53, 37, 61>, <53, 61, 74>,
<76, 74, 61>, <76, 61, 82>, <88, 82, 61>, <88, 61, 84>,
<80, 84, 61>, <80, 61, 72>, <51, 55, 54>, <51, 54, 48>,
<44, 51, 48>, <44, 48, 45>, <44, 45, 40>, <44, 40, 41>,
<41, 34, 35>, <41, 35, 44>, <31, 35, 34>, <18, 31, 34>,
<18, 34, 17>, <30, 18, 17>, <30, 17, 32>, <33, 30, 32>,
<43, 33, 32>, <43, 32, 42>, <46, 43, 42>, <46, 42, 47>,
<49, 47, 50>, <50, 53, 52>, <50, 52, 49>, <53, 74, 73>,
<53, 73, 52>, <76, 73, 74>, <77, 76, 78>, <77, 78, 79>,
<83, 79, 78>, <83, 78, 82>, <87, 83, 82>, <87, 82, 88>,
<89, 87, 88>, <89, 88, 84>, <89, 84, 86>, <85, 86, 84>,
<85, 84, 80>, <85, 80, 81>, <81, 80, 72>, <81, 72, 75>,
<75, 72, 55>, <72, 71, 54>, <72, 54, 55>, <52, 103, 15>,
<15, 49, 52>, <103, 52, 73>, <103, 73, 76>, <15, 47, 49>,
<13, 46, 47>, <13, 47, 15>, <76, 77, 105>, <76, 105, 103>,
<103, 101, 16>, <103, 16, 15>, <101, 102, 14>, <101, 14, 16>,
<102, 104, 12>, <102, 12, 14>, <9, 31, 18>, <9, 18, 11>,
<30, 11, 18>, <33, 11, 30>, <11, 33, 43>, <11, 43, 13>,
<46, 13, 43>, <107, 89, 86>, <107, 86, 118>, <87, 89, 107>,
<83, 87, 107>, <105, 79, 83>, <105, 83, 107>, <77, 79, 105>,
<127, 75, 55>, <127, 55, 57>, <118, 81, 75>, <118, 75, 127>,
<85, 81, 118>, <86, 85, 118>, <9, 35, 31>, <9, 44, 35>,
<22, 51, 44>, <22, 44, 9>, <55, 51, 22>, <55, 22, 57>,
<59, 27, 1>, <59, 1, 143>, <59, 143, 98>, <143, 94, 98>,
<134, 93, 94>, <134, 94, 143>, <127, 57, 93>, <127, 93, 134>,
<23, 22, 9>, <23, 9, 1>, <23, 1, 27>, <47, 42, 37>,
<78, 76, 82>, <61, 63, 66>, <72, 70, 69>, <0, 1, 3>,
<0, 3, 2>, <3, 1, 9>, <3, 9, 5>, <9, 8, 5>,
<8, 9, 11>, <8, 11, 13>, <8, 13, 15>, <8, 15, 16>,
<8, 16, 14>, <8, 14, 12>, <8, 12, 10>, <8, 10, 7>,
<8, 7, 6>, <8, 6, 5>, <3, 2, 140>, <3, 140, 141>,
<2, 0, 142>, <2, 142, 140>, <3, 141, 136>, <3, 136, 4>,
<4, 130, 128>, <4, 128, 5>, <6, 5, 128>, <6, 128, 126>,
<7, 6, 126>, <7, 126, 115>, <7, 115, 106>, <7, 106, 10>,
<12, 10, 106>, <12, 106, 104>
}
normal_indices {
246,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <38, 38, 38>, <38, 38, 38>,
<42, 42, 42>, <42, 42, 42>, <0, 0, 0>, <0, 0, 0>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<38, 38, 38>, <38, 38, 38>, <42, 42, 42>, <42, 42, 42>,
<42, 42, 42>, <42, 42, 42>, <42, 42, 42>, <42, 42, 42>,
<42, 42, 42>, <42, 42, 42>, <42, 42, 42>, <42, 42, 42>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<24, 21, 21>, <24, 21, 24>, <21, 19, 19>, <21, 19, 21>,
<19, 22, 22>, <19, 22, 19>, <22, 26, 26>, <22, 26, 22>,
<26, 29, 29>, <26, 29, 26>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <42, 42, 42>,
<42, 42, 42>, <35, 34, 45>, <35, 45, 35>, <34, 47, 45>,
<45, 47, 46>, <44, 45, 46>, <44, 46, 43>, <64, 64, 64>,
<64, 64, 64>, <64, 64, 64>, <64, 64, 64>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<38, 38, 38>, <38, 38, 38>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 38>, <38, 38, 38>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 38>, <38, 38, 38>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 38>, <38, 38, 38>, <49, 18, 48>, <49, 48, 51>,
<56, 49, 51>, <56, 51, 54>, <56, 54, 57>, <56, 57, 58>,
<58, 60, 59>, <58, 59, 56>, <62, 59, 60>, <64, 62, 60>,
<64, 60, 64>, <63, 64, 64>, <63, 64, 61>, <61, 63, 61>,
<55, 61, 61>, <55, 61, 55>, <53, 55, 55>, <53, 55, 53>,
<15, 13, 15>, <15, 20, 20>, <15, 20, 15>, <20, 50, 50>,
<20, 50, 20>, <52, 50, 50>, <14, 14, 11>, <14, 11, 11>,
<9, 11, 11>, <9, 11, 9>, <7, 9, 9>, <7, 9, 0>,
<0, 7, 0>, <0, 0, 8>, <0, 8, 6>, <8, 6, 8>,
<8, 8, 10>, <8, 10, 12>, <12, 10, 16>, <12, 16, 15>,
<15, 16, 18>, <16, 17, 48>, <16, 48, 18>, <25, 23, 23>,
<23, 25, 25>, <23, 25, 25>, <23, 25, 25>, <23, 25, 25>,
<28, 28, 25>, <28, 25, 23>, <25, 28, 28>, <25, 28, 23>,
<23, 19, 19>, <23, 19, 23>, <19, 22, 22>, <19, 22, 19>,
<22, 27, 27>, <22, 27, 22>, <36, 36, 33>, <36, 33, 32>,
<32, 32, 33>, <30, 32, 32>, <32, 30, 30>, <32, 30, 28>,
<28, 28, 30>, <32, 33, 36>, <32, 36, 36>, <32, 33, 32>,
<30, 32, 32>, <28, 30, 30>, <28, 30, 32>, <28, 30, 28>,
<38, 38, 38>, <38, 38, 38>, <36, 38, 38>, <36, 38, 38>,
<38, 38, 36>, <36, 38, 36>, <36, 38, 36>, <36, 38, 38>,
<38, 38, 38>, <38, 38, 36>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 38>, <38, 38, 38>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 38>, <38, 38, 38>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 36>, <38, 36, 38>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 38>, <0, 0, 0>, <0, 0, 0>, <2, 2, 2>,
<2, 2, 2>, <2, 2, 2>, <2, 2, 1>, <2, 2, 1>,
<2, 2, 4>, <2, 4, 2>, <2, 2, 2>, <2, 2, 2>,
<2, 2, 2>, <2, 2, 3>, <2, 3, 5>, <2, 5, 4>,
<2, 4, 1>, <2, 1, 1>, <42, 42, 42>, <42, 42, 42>,
<38, 38, 38>, <38, 38, 38>, <38, 38, 38>, <38, 38, 38>,
<38, 38, 38>, <38, 38, 38>, <32, 31, 31>, <32, 31, 32>,
<39, 32, 32>, <39, 32, 39>, <39, 39, 40>, <39, 40, 40>,
<41, 40, 40>, <41, 40, 41>
}
}
}
#end
#declare LDX_5_dash_16cyli_dot_dat_in_part = cylinder // Cylinder 0.3125
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.92387953251128673848,0,-0.38268343236508967076>,0
}
}
}
#declare LDX_5_dash_16cyli_dot_dat = cylinder // Cylinder 0.3125
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.92387953251128673848,0,-0.38268343236508967076>,0
}
}
}
#declare LDX_7_dash_16cyli_dot_dat_in_part = cylinder // Cylinder 0.4375
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.38268343236509033689,0,-0.92387953251128651644>,0
}
}
}
#declare LDX_7_dash_16cyli_dot_dat = cylinder // Cylinder 0.4375
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.38268343236509033689,0,-0.92387953251128651644>,0
}
}
}
#declare LDX_4_dash_4cylc_dot_dat_in_part = union {
// Cylinder Closed 1.0
// Name: 4-4cylc.dat
// Author: Alex Taylor [anathema]
// !LDRAW_ORG Primitive UPDATE 2009-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2008-12-29 [cwdee] Removed one disc
// !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
object {
LDX_4_dash_4disc_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
}
#declare LDX_s_slash_3815s01_dot_dat_in_part = union {
// ~Minifig Hips without Decorated Surface
// Name: s\3815s01.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Subpart UPDATE 2010-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !HISTORY 1998-12-11 [cwdee] created subpart
// !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
// !HISTORY 2002-06-10 [cwdee] updated studs with those developed by Mark Kennedy
// !HISTORY 2002-08-18 [PTadmin] Official Update 2002-04
// !HISTORY 2004-06-15 [nielsk] BFC'd
// !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
// !HISTORY 2007-09-13 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-01-28 [Philo] Moved crotch to main for patterned parts
// !HISTORY 2009-01-28 [Philo] Various shape improvements
// !HISTORY 2009-08-24 [PTadmin] Renamed from s\970s01
// !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
// //
// //
// //
// BFC INVERTNEXT
object {
LDX_3_dash_4cyli_dot_dat_in_part
matrix <2.8,0,-2.8,0,11,0,-2.8,0,-2.8,10,-11,0>
}
// //
// //
// //
// BFC INVERTNEXT
object {
LDX_3_dash_4cyli_dot_dat_in_part
matrix <-2.8,0,2.8,0,11,0,2.8,0,2.8,-10,-11,0>
}
// //
object {
LDX_7_dash_16cyli_dot_dat_in_part
matrix <0,8.3149,-3.4441,4,0,0,0,3.4441,8.3149,-2,12,0>
}
// BFC INVERTNEXT
object {
LDX_1_dash_4cyli_dot_dat_in_part
matrix <0,-6.364,6.364,36,0,0,0,-6.364,-6.364,-18,12,0>
}
object {
LDX_4_dash_4disc_dot_dat_in_part
matrix <0,9,0,1,0,0,0,0,-9,-2,12,0>
}
object {
LDX_4_dash_4disc_dot_dat_in_part
matrix <0,9,0,-1,0,0,0,0,9,2,12,0>
}
object {
LDX_4_dash_4cylc_dot_dat_in_part
matrix <0,3,0,19.84,0,0,0,0,3,-9.92,12,0>
}
object {
LDX_4_dash_4disc_dot_dat_in_part
matrix <0,3,0,-1,0,0,0,0,3,9.92,12,0>
}
// //
// //
// //
// //
// //
// //
// //
}
#declare LDX_3815_dot_dat =
#if (LDXQual = 0)
box {
<-18,-11,-10>,<18,21.000195,10>
}
#else
union {
// Minifig Hips
// Name: 3815.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Part UPDATE 2010-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !HISTORY 1997-10-29 [PTadmin] Official Update 1997-16
// !HISTORY 1999-01-01 [cwdee] Modifications
// !HISTORY 1999-02-01 [PTadmin] Official Update 1999-01
// !HISTORY 2004-06-15 [nielsk] BFC'd
// !HISTORY 2004-11-06 [PTadmin] Official Update 2004-04
// !HISTORY 2007-07-27 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-01-28 [Philo] Moved crotch to main part
// !HISTORY 2009-08-24 [PTadmin] Renamed from 970
// !HISTORY 2010-07-05 [PTadmin] Official Update 2010-02
object {
LDX_5_dash_16cyli_dot_dat_in_part
matrix <0,-6.364,-6.364,4,0,0,0,6.364,-6.364,-2,12,0>
}
object {
LDX_s_slash_3815s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
// //
mesh2 {
vertex_vectors {
106,
<-18,0,-10>, <-18,0,10>, <-18,3,0>, <-18,3.685,-3.444>,
<-18,3.685,3.444>, <-18,5.636,-6.364>, <-18,5.636,6.364>, <-18,6,-10>,
<-18,6,-6.607>, <-18,6,6.607>, <-18,6,10>, <-16,-4,-3.46>,
<-16,-4,3.46>, <-16,0,-3.46>, <-16,0,3.46>, <-14.48,-11,-4.48>,
<-14.48,-11,4.48>, <-14.48,0,-4.48>, <-14.48,0,4.48>, <-13.46,-11,-6>,
<-13.46,-11,6>, <-13.46,0,-6>, <-13.46,0,6>, <-12.8,-11,-2.8>,
<-12.8,-11,2.8>, <-12.8,0,-2.8>, <-12.8,0,2.8>, <-11.52,-11,-3.68>,
<-11.52,-11,3.68>, <-10,-11,-6>, <-10,-11,-4>, <-10,-11,4>,
<-10,-11,6>, <-8.48,-11,-3.68>, <-8.48,-11,3.68>, <-7.2,-11,-2.8>,
<-7.2,-11,2.8>, <-6.54,-11,-6>, <-6.54,-11,6>, <-6.54,0,-6>,
<-6.54,0,6>, <-6.32,-11,-1.52>, <-6.32,-11,1.52>, <-6,-11,0>,
<-5.52,-11,-4.48>, <-5.52,-11,4.48>, <-5.52,0,-4.48>, <-5.52,0,4.48>,
<-4,-11,-3.46>, <-4,-11,0>, <-4,-11,3.46>, <-4,0,-3.46>,
<-4,0,3.46>, <4,-11,-3.46>, <4,-11,0>, <4,-11,3.46>,
<4,0,-3.46>, <4,0,3.46>, <5.52,-11,-4.48>, <5.52,-11,4.48>,
<5.52,0,-4.48>, <5.52,0,4.48>, <6,-11,0>, <6.32,-11,-1.52>,
<6.32,-11,1.52>, <6.54,-11,-6>, <6.54,-11,6>, <6.54,0,-6>,
<6.54,0,6>, <7.2,-11,-2.8>, <7.2,-11,2.8>, <8.48,-11,-3.68>,
<8.48,-11,3.68>, <10,-11,-6>, <10,-11,-4>, <10,-11,4>,
<10,-11,6>, <11.52,-11,-3.68>, <11.52,-11,3.68>, <12.8,-11,-2.8>,
<12.8,-11,2.8>, <12.8,0,-2.8>, <12.8,0,2.8>, <13.46,-11,-6>,
<13.46,-11,6>, <13.46,0,-6>, <13.46,0,6>, <14.48,-11,-4.48>,
<14.48,-11,4.48>, <14.48,0,-4.48>, <14.48,0,4.48>, <16,-4,-3.46>,
<16,-4,3.46>, <16,0,-3.46>, <16,0,3.46>, <18,0,-10>,
<18,0,10>, <18,3,0>, <18,3.685,-3.444>, <18,3.685,3.444>,
<18,5.636,-6.364>, <18,5.636,6.364>, <18,6,-10>, <18,6,-6.607>,
<18,6,6.607>, <18,6,10>
}
normal_vectors {
22,
<-1,0,0>, <-0.977227,-0.212198,0>, <-0.830366,0,-0.557219>, <-0.830366,0,0.557219>,
<-0.707107,0,-0.707107>, <-0.707107,0,0.707107>, <-0.557219,0,-0.830366>, <-0.557219,0,0.830366>,
<0,-1,0>, <0,0,-1>, <0,0,1>, <0,0.555228,-0.831699>,
<0,0.555228,0.831699>, <0,1,0>, <0.557219,0,-0.830366>, <0.557219,0,0.830366>,
<0.707107,0,-0.707107>, <0.707107,0,0.707107>, <0.830366,0,-0.557219>, <0.830366,0,0.557219>,
<0.977227,-0.212198,0>, <1,0,0>
}
face_indices {
140,
<95, 102, 7>, <95, 7, 0>, <1, 10, 105>, <1, 105, 96>,
<1, 0, 95>, <1, 95, 96>, <68, 66, 84>, <68, 84, 86>,
<56, 53, 55>, <56, 55, 57>, <65, 67, 85>, <65, 85, 83>,
<94, 92, 91>, <94, 91, 93>, <81, 79, 80>, <81, 80, 82>,
<89, 85, 83>, <89, 83, 87>, <67, 60, 58>, <67, 58, 65>,
<60, 56, 53>, <60, 53, 58>, <57, 61, 59>, <57, 59, 55>,
<61, 68, 66>, <61, 66, 59>, <86, 90, 88>, <86, 88, 84>,
<90, 94, 92>, <90, 92, 88>, <88, 92, 91>, <88, 91, 87>,
<93, 89, 87>, <93, 87, 91>, <87, 79, 80>, <87, 80, 88>,
<80, 78, 84>, <80, 84, 88>, <78, 75, 76>, <78, 76, 84>,
<75, 72, 66>, <75, 66, 76>, <72, 70, 59>, <72, 59, 66>,
<70, 64, 55>, <70, 55, 59>, <64, 62, 54>, <64, 54, 55>,
<62, 63, 53>, <62, 53, 54>, <63, 69, 58>, <63, 58, 53>,
<69, 71, 65>, <69, 65, 58>, <71, 74, 73>, <71, 73, 65>,
<74, 77, 83>, <74, 83, 73>, <77, 79, 87>, <77, 87, 83>,
<22, 20, 38>, <22, 38, 40>, <52, 50, 48>, <52, 48, 51>,
<19, 21, 39>, <19, 39, 37>, <13, 11, 12>, <13, 12, 14>,
<26, 24, 23>, <26, 23, 25>, <19, 21, 17>, <19, 17, 15>,
<44, 46, 39>, <44, 39, 37>, <48, 51, 46>, <48, 46, 44>,
<45, 47, 52>, <45, 52, 50>, <38, 40, 47>, <38, 47, 45>,
<16, 18, 22>, <16, 22, 20>, <12, 14, 18>, <12, 18, 16>,
<11, 12, 16>, <11, 16, 15>, <15, 17, 13>, <15, 13, 11>,
<24, 23, 15>, <24, 15, 16>, <20, 28, 24>, <20, 24, 16>,
<32, 31, 28>, <32, 28, 20>, <38, 34, 31>, <38, 31, 32>,
<45, 36, 34>, <45, 34, 38>, <50, 42, 36>, <50, 36, 45>,
<49, 43, 42>, <49, 42, 50>, <48, 41, 43>, <48, 43, 49>,
<44, 35, 41>, <44, 41, 48>, <37, 33, 35>, <37, 35, 44>,
<29, 30, 33>, <29, 33, 37>, <19, 27, 30>, <19, 30, 29>,
<15, 23, 27>, <15, 27, 19>, <103, 8, 7>, <103, 7, 102>,
<100, 5, 8>, <100, 8, 103>, <9, 104, 105>, <9, 105, 10>,
<6, 101, 104>, <6, 104, 9>, <103, 102, 100>, <98, 100, 102>,
<98, 102, 95>, <98, 95, 97>, <99, 97, 95>, <99, 95, 96>,
<101, 99, 96>, <101, 96, 105>, <101, 105, 104>, <9, 10, 6>,
<4, 6, 10>, <4, 10, 1>, <4, 1, 2>, <3, 2, 1>,
<3, 1, 0>, <5, 3, 0>, <5, 0, 7>, <5, 7, 8>
}
normal_indices {
140,
<9, 9, 9>, <9, 9, 9>, <10, 10, 10>, <10, 10, 10>,
<13, 13, 13>, <13, 13, 13>, <9, 9, 9>, <9, 9, 9>,
<21, 21, 21>, <21, 21, 21>, <10, 10, 10>, <10, 10, 10>,
<0, 0, 0>, <0, 0, 0>, <21, 21, 21>, <21, 21, 21>,
<16, 18, 18>, <16, 18, 16>, <2, 4, 4>, <2, 4, 2>,
<4, 6, 6>, <4, 6, 4>, <7, 5, 5>, <7, 5, 7>,
<5, 3, 3>, <5, 3, 5>, <19, 17, 17>, <19, 17, 19>,
<17, 15, 15>, <17, 15, 17>, <20, 20, 20>, <20, 20, 20>,
<14, 16, 16>, <14, 16, 14>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<9, 9, 9>, <9, 9, 9>, <0, 0, 0>, <0, 0, 0>,
<10, 10, 10>, <10, 10, 10>, <21, 21, 21>, <21, 21, 21>,
<0, 0, 0>, <0, 0, 0>, <2, 2, 4>, <2, 4, 4>,
<16, 16, 18>, <16, 18, 18>, <14, 14, 16>, <14, 16, 16>,
<17, 17, 15>, <17, 15, 15>, <19, 19, 17>, <19, 17, 17>,
<5, 5, 3>, <5, 3, 3>, <7, 7, 5>, <7, 5, 5>,
<1, 1, 1>, <1, 1, 1>, <4, 4, 6>, <4, 6, 6>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <13, 13, 13>, <13, 13, 13>,
<12, 12, 12>, <12, 12, 12>, <13, 13, 13>, <13, 13, 13>,
<11, 11, 11>, <11, 11, 11>, <21, 21, 21>, <21, 21, 21>,
<21, 21, 21>, <21, 21, 21>, <21, 21, 21>, <21, 21, 21>,
<21, 21, 21>, <21, 21, 21>, <21, 21, 21>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>
}
}
}
#end
#declare LDX_s_slash_973s01_dot_dat_in_part = union {
// ~Minifig Torso without Front or Back
// Name: s\973s01.dat
// Author: Steve Bliss [sbliss]
// !LDRAW_ORG Subpart UPDATE 2018-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 1999-04-16 [sbliss] Moved to s\973s01.dat; removed back area; updated comment code
// !HISTORY 1999-04-19 [sbliss] Fixed internal surface error
// !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
// !HISTORY 1999-05-24 [PTadmin] Official Update 1999-04
// !HISTORY 2000-11-05 [cwdee] Removed hard-coded neck mark; now required in main part
// !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
// !HISTORY 2002-02-05 [cwdee] Corrected L3P -check warnings; bow-tie quads mainly
// !HISTORY 2002-02-18 [PTadmin] Official Update 2002-01
// !HISTORY 2002-02-19 [sbliss] Made it fully BFC compliant
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2007-09-14 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2018-11-15 [Steffen] minor polish
// !HISTORY 2018-11-17 [Philo] Removed bottom bleeding, useless t-juctions, used more primitives
// !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
// // front:
// // 4 16 -19 29 -10 19 32 -10 -19 32 -10 19 29 -10
// // 4 16 19 29 -10 -19 29 -10 -14.345 2 -10 14.345 2 -10
// // 4 16 -14.345 2 -10 -12 0 -10 12 0 -10 14.345 2 -10
// // back:
// // 4 16 19 29 10 -19 32 10 19 32 10 -19 29 10
// // 4 16 -19 29 10 19 29 10 -14.345 2 10 14.345 2 10
// // 4 16 -14.345 2 10 12 0 10 -12 0 10 14.345 2 10
// // neck mark:
// // 1 16 0 -4 0 4.243 0 -4.243 0 -8 0 -4.243 0 -4.243 1-4cyli.dat
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,-4,0,0,0,6,0,0,0>
}
object {
LDX_3_dash_4cyli_dot_dat_in_part
matrix <4.243,0,-4.243,0,-8,0,4.243,0,4.243,0,-4,0>
}
object {
LDX_4_dash_4disc_dot_dat_in_part
matrix <6,0,0,0,1,0,0,0,6,0,-12,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cylo_dot_dat_in_part
matrix <0.85,4.925,0,1.97,-0.34,0,0,0,5,13.558,9.221,0>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0.85,4.925,0,0,-1,0,0,0,5,13.558,9.221,0>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0.85,4.925,0,0,1,0,0,0,5,15.528,8.881,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cylo_dot_dat_in_part
matrix <-0.85,4.925,0,-1.97,-0.34,0,0,0,5,-13.558,9.221,0>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <-0.85,4.925,0,0,-1,0,0,0,5,-13.558,9.221,0>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <-0.85,4.925,0,0,1,0,0,0,5,-15.528,8.881,0>
}
}
#declare LDX_973p68_dot_dat =
#if (LDXQual = 0)
box {
<-19,-12,-10>,<19,32,10>
}
#else
union {
// Minifig Torso with MTron Logo Pattern
// Name: 973p68.dat
// Author: John Van Zwieten [jvan]
// !LDRAW_ORG Part UPDATE 2004-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !HISTORY 1999-04-16 [sbliss] Updated 973-4t.dat to s\973s01.dat; added back surface
// !HISTORY 1999-05-17 [PTadmin] Official Update 1999-03
// !HISTORY 2000-11-05 [cwdee] Moved neck mark from s\973s01.dat
// !HISTORY 2001-10-26 [PTadmin] Official Update 2001-01
// !HISTORY 2003-08-04 [Steffen] BFCed, made use of pattern subfile
// !HISTORY 2004-04-22 [PTadmin] Official Update 2004-02
// !HISTORY 2007-07-29 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
object {
LDX_s_slash_973s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_1_dash_4cyli_dot_dat_in_part
matrix <4.243,0,-4.243,0,-8,0,-4.243,0,-4.243,0,-4,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_s_slash_3068p68a_dot_dat_in_part
matrix <0.65,0,0,0,0,0.65,0,-0.65,0,0,16,-10>
}
mesh2 {
vertex_vectors {
64,
<-12.025,16,-10>, <-9.6525,20.7125,-10>, <-8.502975,24.502975,-10>, <-8.358999,19.913,-10>,
<-7.0655,19.113501,-10>, <-6.695,18.301001,-10>, <-6.63,18.1905,-10>, <-6.142499,17.137501,-10>,
<-6.11,17.0725,-10>, <-5.1805,11.2875,-10>, <-5.148,14.9275,-10>, <-5.109,14.856,-10>,
<-4.693,12.087,-10>, <-4.199,12.8865,-10>, <-3.7375,19.113501,-10>, <-3.393,19.913,-10>,
<-3.3735,18.301001,-10>, <-3.3215,18.1905,-10>, <-3.289,20.7125,-10>, <-2.847,17.137501,-10>,
<-2.847,19.113501,-10>, <-2.847,20.069,-10>, <-2.3985,20.7125,-10>, <-2.366,18.1905,-10>,
<-2.314,18.301001,-10>, <-2.2945,19.913,-10>, <-1.95,19.113501,-10>, <-0.897,12.8865,-10>,
<-0.5525,12.087,-10>, <-0.4485,11.2875,-10>, <0,3.975,-10>, <0,11.931,-10>,
<0,12.8865,-10>, <0,14.856,-10>, <0.4485,11.2875,-10>, <0.5525,12.087,-10>,
<0.897,12.8865,-10>, <1.95,19.113501,-10>, <2.2945,19.913,-10>, <2.314,18.301001,-10>,
<2.366,18.1905,-10>, <2.3985,20.7125,-10>, <2.847,17.137501,-10>, <2.847,19.113501,-10>,
<2.847,20.069,-10>, <3.289,20.7125,-10>, <3.3215,18.1905,-10>, <3.3735,18.301001,-10>,
<3.393,19.913,-10>, <3.7375,19.113501,-10>, <4.199,12.8865,-10>, <4.693,12.087,-10>,
<5.109,14.856,-10>, <5.148,14.9275,-10>, <5.1805,11.2875,-10>, <6.11,17.0725,-10>,
<6.142499,17.137501,-10>, <6.63,18.1905,-10>, <6.695,18.301001,-10>, <7.0655,19.113501,-10>,
<8.358999,19.913,-10>, <8.502975,24.502975,-10>, <9.6525,20.7125,-10>, <12.025,16,-10>
}
normal_vectors {
1,
<0,0,1>
}
face_indices {
77,
<0, 2, 1>, <4, 5, 3>, <5, 6, 3>, <9, 0, 1>,
<7, 8, 10>, <7, 10, 12>, <6, 7, 12>, <6, 12, 3>,
<10, 11, 13>, <10, 13, 12>, <15, 14, 4>, <15, 4, 3>,
<5, 16, 17>, <5, 17, 6>, <2, 18, 1>, <15, 20, 14>,
<21, 18, 22>, <19, 17, 23>, <14, 20, 24>, <14, 24, 16>,
<16, 24, 23>, <16, 23, 17>, <25, 26, 24>, <25, 24, 20>,
<13, 27, 28>, <13, 28, 12>, <32, 28, 27>, <32, 27, 33>,
<29, 30, 9>, <30, 0, 9>, <34, 30, 29>, <34, 29, 31>,
<36, 35, 32>, <36, 32, 33>, <25, 38, 37>, <25, 37, 26>,
<24, 39, 40>, <24, 40, 23>, <38, 43, 39>, <38, 39, 37>,
<44, 41, 45>, <46, 42, 40>, <39, 47, 46>, <39, 46, 40>,
<49, 43, 48>, <49, 47, 39>, <49, 39, 43>, <50, 51, 35>,
<50, 35, 36>, <53, 52, 33>, <11, 10, 53>, <11, 53, 33>,
<53, 51, 50>, <53, 50, 52>, <34, 54, 30>, <42, 55, 19>,
<55, 8, 7>, <55, 7, 19>, <56, 55, 42>, <56, 51, 53>,
<56, 53, 55>, <47, 58, 57>, <47, 57, 46>, <48, 60, 59>,
<48, 59, 49>, <60, 58, 59>, <60, 57, 58>, <57, 60, 51>,
<57, 51, 56>, <61, 22, 18>, <61, 18, 2>, <22, 61, 41>,
<41, 61, 45>, <45, 61, 62>, <63, 62, 61>, <54, 62, 63>,
<30, 54, 63>
}
normal_indices {
77,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>
}
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
mesh2 {
vertex_vectors {
33,
<-7.0655,19.113501,-10>, <-6.695,18.301001,-10>, <-6.63,18.1905,-10>, <-6.142499,17.137501,-10>,
<-6.11,17.0725,-10>, <-5.148,14.9275,-10>, <-5.109,14.856,-10>, <-4.199,12.8865,-10>,
<-3.7375,19.113501,-10>, <-3.3735,18.301001,-10>, <-3.3215,18.1905,-10>, <-2.847,17.137501,-10>,
<-2.366,18.1905,-10>, <-2.314,18.301001,-10>, <-1.95,19.113501,-10>, <-0.897,12.8865,-10>,
<0,14.856,-10>, <0.897,12.8865,-10>, <1.95,19.113501,-10>, <2.314,18.301001,-10>,
<2.366,18.1905,-10>, <2.847,17.137501,-10>, <3.3215,18.1905,-10>, <3.3735,18.301001,-10>,
<3.7375,19.113501,-10>, <4.199,12.8865,-10>, <5.109,14.856,-10>, <5.148,14.9275,-10>,
<6.11,17.0725,-10>, <6.142499,17.137501,-10>, <6.63,18.1905,-10>, <6.695,18.301001,-10>,
<7.0655,19.113501,-10>
}
normal_vectors {
2,
<0,0,1>, <0,0,1>
}
face_indices {
18,
<9, 1, 0>, <9, 0, 8>, <11, 3, 2>, <11, 2, 10>,
<7, 6, 16>, <7, 16, 15>, <19, 13, 14>, <19, 14, 18>,
<21, 11, 12>, <21, 12, 20>, <26, 25, 17>, <26, 17, 16>,
<5, 4, 28>, <5, 28, 27>, <29, 21, 22>, <29, 22, 30>,
<31, 23, 24>, <31, 24, 32>
}
normal_indices {
18,
<0, 1, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 1>,
<0, 1, 0>, <0, 0, 1>
}
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
mesh2 {
vertex_vectors {
26,
<-9.6525,20.7125,-10>, <-8.358999,19.913,-10>, <-5.1805,11.2875,-10>, <-4.693,12.087,-10>,
<-3.393,19.913,-10>, <-3.289,20.7125,-10>, <-2.847,19.113501,-10>, <-2.847,20.069,-10>,
<-2.3985,20.7125,-10>, <-2.2945,19.913,-10>, <-0.5525,12.087,-10>, <-0.4485,11.2875,-10>,
<0,11.931,-10>, <0,12.8865,-10>, <0.4485,11.2875,-10>, <0.5525,12.087,-10>,
<2.2945,19.913,-10>, <2.3985,20.7125,-10>, <2.847,19.113501,-10>, <2.847,20.069,-10>,
<3.289,20.7125,-10>, <3.393,19.913,-10>, <4.693,12.087,-10>, <5.1805,11.2875,-10>,
<8.358999,19.913,-10>, <9.6525,20.7125,-10>
}
normal_vectors {
1,
<0,0,1>
}
face_indices {
26,
<3, 2, 0>, <3, 0, 1>, <1, 0, 5>, <1, 5, 4>,
<6, 4, 5>, <6, 5, 7>, <6, 7, 8>, <6, 8, 9>,
<2, 3, 10>, <2, 10, 11>, <10, 13, 12>, <10, 12, 11>,
<15, 14, 12>, <15, 12, 13>, <9, 8, 17>, <9, 17, 16>,
<19, 18, 16>, <19, 16, 17>, <21, 18, 19>, <21, 19, 20>,
<22, 23, 14>, <22, 14, 15>, <25, 24, 21>, <25, 21, 20>,
<23, 22, 24>, <23, 24, 25>
}
normal_indices {
26,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>
}
#if (version >= 3.1) material #else texture #end { LDXColor15 }
}
mesh2 {
vertex_vectors {
78,
<-19,29,-10>, <-19,29,10>, <-19,32,-10>, <-19,32,10>,
<-16.378,13.806,-5>, <-16.378,13.806,5>, <-16,23.369999,-6>, <-16,23.369999,6>,
<-16,32,-6>, <-16,32,6>, <-14.678,3.956,-5>, <-14.678,3.956,5>,
<-14.408,14.146,-5>, <-14.408,14.146,5>, <-14.35,2,-10>, <-14.345,2,-10>,
<-14.345,2,10>, <-14,0,-8>, <-14,0,8>, <-12.708,4.296,-5>,
<-12.708,4.296,5>, <-12.484,3,-6>, <-12.484,3,6>, <-12.025,3.975,-10>,
<-12.025,28.025,-10>, <-12,0,-10>, <-12,0,10>, <-6.536,3,-6>,
<-6.536,3,6>, <-6.536,32,-6>, <-6.536,32,6>, <-4,3,-6>,
<-4,3,-3.464>, <-4,3,3.464>, <-4,3,6>, <-4,32,-6>,
<-4,32,-3.464>, <-4,32,3.464>, <-4,32,6>, <4,3,-6>,
<4,3,-3.464>, <4,3,3.464>, <4,3,6>, <4,32,-6>,
<4,32,-3.464>, <4,32,3.464>, <4,32,6>, <6.536,3,-6>,
<6.536,3,6>, <6.536,32,-6>, <6.536,32,6>, <12,0,-10>,
<12,0,10>, <12.025,3.975,-10>, <12.025,28.025,-10>, <12.484,3,-6>,
<12.484,3,6>, <12.708,4.296,-5>, <12.708,4.296,5>, <14,0,-8>,
<14,0,8>, <14.345,2,-10>, <14.345,2,10>, <14.35,2,-10>,
<14.408,14.146,-5>, <14.408,14.146,5>, <14.678,3.956,-5>, <14.678,3.956,5>,
<16,23.369999,-6>, <16,23.369999,6>, <16,32,-6>, <16,32,6>,
<16.378,13.806,-5>, <16.378,13.806,5>, <19,29,-10>, <19,29,10>,
<19,32,-10>, <19,32,10>
}
normal_vectors {
20,
<-1,0,0>, <-0.985631,0.16891,0>, <-0.98539,-0.170314,0>, <-0.985446,0.16999,0>,
<-0.707107,0,-0.707107>, <-0.707107,0,0.707107>, <-0.544351,0.638251,-0.544351>, <-0.544351,0.638251,0.544351>,
<0,-1,0>, <0,0,-1>, <0,0,1>, <0,1,0>,
<0.544351,0.638251,-0.544351>, <0.544351,0.638251,0.544351>, <0.707107,0,-0.707107>, <0.707107,0,0.707107>,
<0.98539,-0.170314,0>, <0.985446,0.16999,0>, <0.985631,0.16891,0>, <1,0,0>
}
face_indices {
118,
<70, 76, 2>, <70, 2, 8>, <71, 77, 76>, <71, 76, 70>,
<9, 3, 77>, <9, 77, 71>, <8, 2, 3>, <8, 3, 9>,
<6, 8, 9>, <6, 9, 7>, <68, 69, 71>, <68, 71, 70>,
<22, 56, 55>, <22, 55, 21>, <74, 76, 77>, <74, 77, 75>,
<1, 3, 2>, <1, 2, 0>, <18, 16, 15>, <18, 15, 17>,
<61, 62, 60>, <61, 60, 59>, <17, 25, 26>, <17, 26, 18>,
<51, 52, 26>, <51, 26, 25>, <60, 52, 51>, <60, 51, 59>,
<17, 15, 25>, <59, 51, 61>, <60, 62, 52>, <18, 26, 16>,
<16, 11, 10>, <16, 10, 15>, <0, 15, 10>, <0, 10, 4>,
<0, 4, 5>, <0, 5, 1>, <1, 5, 11>, <1, 11, 16>,
<21, 19, 20>, <21, 20, 22>, <22, 20, 13>, <22, 13, 7>,
<6, 7, 13>, <6, 13, 12>, <6, 12, 19>, <6, 19, 21>,
<66, 67, 62>, <66, 62, 61>, <66, 61, 74>, <66, 74, 72>,
<73, 72, 74>, <73, 74, 75>, <67, 73, 75>, <67, 75, 62>,
<58, 57, 55>, <58, 55, 56>, <65, 58, 56>, <65, 56, 69>,
<65, 69, 68>, <65, 68, 64>, <57, 64, 68>, <57, 68, 55>,
<46, 45, 41>, <46, 41, 42>, <45, 50, 48>, <45, 48, 41>,
<45, 46, 50>, <38, 37, 33>, <38, 33, 34>, <37, 30, 28>,
<37, 28, 33>, <37, 38, 30>, <43, 44, 40>, <43, 40, 39>,
<44, 49, 47>, <44, 47, 40>, <44, 43, 49>, <35, 36, 32>,
<35, 32, 31>, <36, 29, 27>, <36, 27, 32>, <36, 35, 29>,
<29, 8, 21>, <29, 21, 27>, <6, 21, 8>, <55, 70, 49>,
<55, 49, 47>, <55, 68, 70>, <39, 43, 35>, <39, 35, 31>,
<22, 9, 30>, <22, 30, 28>, <22, 7, 9>, <50, 71, 56>,
<50, 56, 48>, <69, 56, 71>, <42, 34, 38>, <42, 38, 46>,
<3, 77, 75>, <3, 75, 1>, <1, 75, 62>, <1, 62, 16>,
<52, 26, 16>, <52, 16, 62>, <76, 2, 0>, <76, 0, 74>,
<25, 51, 63>, <25, 63, 14>, <23, 14, 63>, <23, 63, 53>,
<0, 14, 23>, <0, 23, 24>, <0, 24, 54>, <0, 54, 74>,
<54, 53, 63>, <54, 63, 74>
}
normal_indices {
118,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<8, 8, 8>, <8, 8, 8>, <8, 8, 8>, <8, 8, 8>,
<0, 0, 0>, <0, 0, 0>, <19, 19, 19>, <19, 19, 19>,
<8, 8, 8>, <8, 8, 8>, <0, 0, 0>, <0, 0, 0>,
<19, 19, 19>, <19, 19, 19>, <17, 18, 18>, <17, 18, 17>,
<1, 1, 3>, <1, 3, 3>, <11, 11, 11>, <11, 11, 11>,
<11, 11, 11>, <11, 11, 11>, <11, 11, 11>, <11, 11, 11>,
<13, 13, 13>, <7, 7, 7>, <6, 6, 6>, <12, 12, 12>,
<18, 18, 18>, <18, 18, 18>, <17, 18, 18>, <17, 18, 17>,
<17, 17, 17>, <17, 17, 17>, <17, 17, 18>, <17, 18, 18>,
<2, 2, 2>, <2, 2, 2>, <2, 2, 2>, <2, 2, 2>,
<2, 2, 2>, <2, 2, 2>, <2, 2, 2>, <2, 2, 2>,
<1, 1, 1>, <1, 1, 1>, <1, 1, 3>, <1, 3, 3>,
<3, 3, 3>, <3, 3, 3>, <1, 3, 3>, <1, 3, 1>,
<16, 16, 16>, <16, 16, 16>, <16, 16, 16>, <16, 16, 16>,
<16, 16, 16>, <16, 16, 16>, <16, 16, 16>, <16, 16, 16>,
<19, 19, 19>, <19, 19, 19>, <5, 5, 5>, <5, 5, 5>,
<8, 8, 8>, <19, 19, 19>, <19, 19, 19>, <4, 4, 4>,
<4, 4, 4>, <11, 11, 11>, <0, 0, 0>, <0, 0, 0>,
<15, 15, 15>, <15, 15, 15>, <11, 11, 11>, <0, 0, 0>,
<0, 0, 0>, <14, 14, 14>, <14, 14, 14>, <8, 8, 8>,
<9, 9, 9>, <9, 9, 9>, <9, 9, 9>, <9, 9, 9>,
<9, 9, 9>, <9, 9, 9>, <9, 9, 9>, <9, 9, 9>,
<10, 10, 10>, <10, 10, 10>, <10, 10, 10>, <10, 10, 10>,
<10, 10, 10>, <10, 10, 10>, <10, 10, 10>, <10, 10, 10>,
<10, 10, 10>, <10, 10, 10>, <10, 10, 10>, <10, 10, 10>,
<10, 10, 10>, <10, 10, 10>, <9, 9, 9>, <9, 9, 9>,
<9, 9, 9>, <9, 9, 9>, <9, 9, 9>, <9, 9, 9>,
<9, 9, 9>, <9, 9, 9>, <9, 9, 9>, <9, 9, 9>,
<9, 9, 9>, <9, 9, 9>
}
}
}
#end
#include "lg_3838.inc" // Minifig Airtanks
#include "lg_3626bp01.inc" // Minifig Head with Standard Grin Pattern (Hollow Stud with Pierced Base)
#declare LDX_2_dash_4disc_dot_dat_in_part = disc // Disc 0.5
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<0,0,-1>,0
}
}
}
#declare LDX_2_dash_4disc_dot_dat = disc // Disc 0.5
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<0,0,-1>,0
}
}
}
#declare LDX_2_dash_4cyli_dot_dat_in_part = cylinder // Cylinder 0.5
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
}
}
#declare LDX_2_dash_4cyli_dot_dat = cylinder // Cylinder 0.5
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
}
}
#declare LDX_1_dash_4cyls_dot_dat_in_part = cylinder // Sloped Cylinder 0.25
{
<0,0,0>,<0,2,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
plane
{
<1,1,0>,0.70710678118654757274
}
}
}
#declare LDX_1_dash_4cyls_dot_dat = cylinder // Sloped Cylinder 0.25
{
<0,0,0>,<0,2,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
plane
{
<1,1,0>,0.70710678118654757274
}
}
}
#declare LDX_s_slash_3818s01_dot_dat_in_part = union {
// ~Minifig Arm Right Inner Half
// Name: s\3818s01.dat
// Author: Magnus Forsberg [MagFors]
// !LDRAW_ORG Subpart UPDATE 2018-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
object {
LDX_4_dash_4ring1_dot_dat_in_part
matrix <0,2,0,-1,0,0,0,0,2,7,0,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cylo_dot_dat_in_part
matrix <0,2,0,7,0,0,0,0,2,0,0,0>
}
object {
LDX_4_dash_4cylo_dot_dat_in_part
matrix <0,5,0,2,0,0,0,0,5,0,0,0>
}
// // shoulder joint
// // flat inner arm
object {
LDX_2_dash_4disc_dot_dat_in_part
matrix <0,0,6.5,-1,0,0,0,-6.5,0,0,0,0>
}
object {
LDX_2_dash_4disc_dot_dat_in_part
matrix <0,0,2,-1,0,0,0,2,0,0,0,0>
}
// // hand hole
// BFC INVERTNEXT
object {
LDX_4_dash_4cylc_dot_dat_in_part
matrix <2.5,0,0,0,10.6066,-10.6066,0,-1.76777,-1.76777,-5,8.294,0.707>
}
object {
LDX_4_dash_4ring1_dot_dat_in_part
matrix <2.5,0,0,0,-1,0,0,-1.7678,-1.7678,-5,18.9,-9.9>
}
// // shoulder
// // upper arm extension (to elbow)
// // lower arm
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <0,3.5355,3.5355,0,-6.936,6.936,5,0,0,-5,18.9,-9.9>
}
object {
LDX_1_dash_4cyli_dot_dat_in_part
matrix <0,3.5355,3.5355,0,-5.928,5.928,5,0,0,-5,11.964,-2.964>
}
object {
LDX_1_dash_4cyls_dot_dat_in_part
matrix <0,3.5355,3.5355,0,-3.543,3.543,5,0,0,-5,6.036,2.964>
}
object {
LDX_1_dash_4cyls_dot_dat_in_part
matrix <0,-3.536,-3.536,0,-2.936,2.936,5,0,0,-5,11.964,-2.964>
}
// // rear upper arm
// // rear shoulder line
// // crook of elbow
}
#declare LDX_2_dash_4cyls_dot_dat_in_part = cylinder // Sloped Cylinder 0.5
{
<0,0,0>,<0,2,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<1,1,0>,0.70710678118654757274
}
}
}
#declare LDX_2_dash_4cyls_dot_dat = cylinder // Sloped Cylinder 0.5
{
<0,0,0>,<0,2,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<1,1,0>,0.70710678118654757274
}
}
}
#declare LDX_s_slash_3818s02_dot_dat_in_part = union {
// ~Minifig Arm Right Outer Surface
// Name: s\3818s02.dat
// Author: Magnus Forsberg [MagFors]
// !LDRAW_ORG Subpart UPDATE 2018-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
// // shoulder
// // upper arm
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <0,0,-6.5,-3.333,8,0,-5,0,0,-1.666,0,0>
}
// // upper arm extension (to elbow)
// // lower arm
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <0,-3.5355,-3.5355,0,-6.936,6.936,-5,0,0,-5,18.9,-9.9>
}
object {
LDX_2_dash_4cyls_dot_dat_in_part
matrix <0,-3.5355,-3.5355,0,-2.964,2.964,-5,0,0,-5,11.964,-2.964>
}
}
#declare LDX_3818_dot_dat_sub_part =
#if (LDXQual = 0)
box {
<-10,-6.5,-13.436>,<7,22.435999,6.507>
}
#else
union {
// Minifig Arm Right
// Name: 3818.dat
// Author: Chris Dee [cwdee]
// !LDRAW_ORG Part UPDATE 2018-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// !HELP Place at -15.552 9 0 relative to torso
// !HELP Then rotate about x axis to give required elevation of arm
// !HELP 0 = upper arm vertical
// !HELP -45 = lower arm horizontal
// !HELP -90 = upper arm horizontal
// !HELP -135 = lower arm vertical
// !HELP Then rotate 9.782 about z axis to align with slope of torso
// BFC CERTIFY CCW
// !HISTORY 2002-11-30 [PTadmin] Official Update 2002-05
// !HISTORY 2007-07-29 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2008-07-01 [tchang] Add BFC, some conditional lines
// !HISTORY 2009-05-28 [Eldar] Fix wrong color lines
// !HISTORY 2009-08-24 [PTadmin] Moved from 982
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
// !HISTORY 2010-08-27 [Philo] Increased hand hole to 15LDu; Fixed/added some condline.
// !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
// !HISTORY 2018-03-05 [GeraldLasser] Added a Conditional Line
// !HISTORY 2018-03-23 [MagFors] Subfiled for patterned parts
// !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
object {
LDX_s_slash_3818s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_s_slash_3818s02_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
}
#end
#declare LDX_3819_dot_dat =
#if (LDXQual = 0)
box {
<-7,-6.5,-13.436>,<10,22.435999,6.507>
}
#else
union {
// Minifig Arm Left
// Name: 3819.dat
// Author: Chris Dee [cwdee]
// !LDRAW_ORG Part UPDATE 2009-03
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HELP Place at 15.552 9 0 relative to torso
// !HELP Then rotate about x axis to give require elevation of arm
// !HELP 0 = upper arm vertical
// !HELP -45 = lower arm horizontal
// !HELP -90 = upper arm horizontal
// !HELP -135 = lower arm vertical
// !HELP Then rotate -9.782 about z axis to align with slope of torso
// !HISTORY 2002-11-30 [PTadmin] Official Update 2002-05
// !HISTORY 2007-07-29 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-08-24 [PTadmin] Moved from 981
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
object {
LDX_3818_dot_dat_sub_part
matrix <-1,0,0,0,1,0,0,0,1,0,0,0>
}
mesh2 {
vertex_vectors {
154,
<-7,-4,0>, <-7,-3.696,-1.531>, <-7,-3.696,1.531>, <-7,-2.828,-2.828>,
<-7,-2.828,2.828>, <-7,-1.531,-3.696>, <-7,-1.531,3.696>, <-7,0,-4>,
<-7,0,4>, <-7,1.531,-3.696>, <-7,1.531,3.696>, <-7,2.828,-2.828>,
<-7,2.828,2.828>, <-7,3.696,-1.531>, <-7,3.696,1.531>, <-7,4,0>,
<-6,-5,0>, <-6,-4.619,-1.913>, <-6,-4.619,1.913>, <-6,-3.536,-3.536>,
<-6,-3.536,3.536>, <-6,-1.913,-4.619>, <-6,-1.913,4.619>, <-6,0,-5>,
<-6,0,5>, <-6,1.913,-4.619>, <-6,1.913,4.619>, <-6,3.536,-3.536>,
<-6,3.536,3.536>, <-6,4.619,-1.913>, <-6,4.619,1.913>, <-6,5,0>,
<-5,-5.5,0>, <-5,-5.081,-2.105>, <-5,-5.081,2.105>, <-5,-3.889,-3.889>,
<-5,-3.889,3.889>, <-5,-2.105,-5.081>, <-5,-2.105,5.081>, <-5,0,-5.5>,
<-5,0,5.5>, <-5,2.105,-5.081>, <-5,2.105,5.081>, <-5,3.889,-3.889>,
<-5,3.889,3.889>, <-5,5.081,-2.105>, <-5,5.081,2.105>, <-5,5.5,0>,
<-3.5,-5.5,0>, <-3.5,-5.081,-2.105>, <-3.5,-5.081,2.105>, <-3.5,-3.889,-3.889>,
<-3.5,-3.889,3.889>, <-3.5,-2.105,-5.081>, <-3.5,-2.105,5.081>, <-3.5,0,-5.5>,
<-3.5,0,5.5>, <-3.5,2.105,-5.081>, <-3.5,2.105,5.081>, <-3.5,3.889,-3.889>,
<-3.5,3.889,3.889>, <-3.5,5.081,-2.105>, <-3.5,5.081,2.105>, <-3.5,5.5,0>,
<-2,-5,0>, <-2,-4.619,-1.913>, <-2,-4.619,1.913>, <-2,-3.536,-3.536>,
<-2,-3.536,3.536>, <-2,-1.913,-4.619>, <-2,-1.913,4.619>, <-2,0,-5>,
<-2,0,5>, <-2,1.913,-4.619>, <-2,1.913,4.619>, <-2,3.536,-3.536>,
<-2,3.536,3.536>, <-2,4.619,-1.913>, <-2,4.619,1.913>, <-2,5,0>,
<0,-6.5,0>, <0,-6.005,-2.488>, <0,-6.005,2.488>, <0,-4.596,-4.596>,
<0,-4.596,4.596>, <0,-2.488,-6.005>, <0,-2.488,6.005>, <0,0,-6.5>,
<0,0,-5>, <0,0,5>, <0,0,6.5>, <0,1.913,-4.619>,
<0,1.913,4.619>, <0,2.487,-6.005>, <0,2.5,6.5>, <0,3.536,-3.536>,
<0,3.536,3.536>, <0,4.5,4.5>, <0,4.596,-4.596>, <0,4.619,-1.913>,
<0,4.619,1.913>, <0,5,0>, <0,6,3>, <0,9.028,-0.028>,
<0.381,5.206,6.5>, <0.381,8.798,-2.505>, <0.957,-2.2,-6.005>, <0.957,-2.2,6.005>,
<1.465,7.5,6.5>, <1.465,8.604,-4.604>, <1.666,0,-6.5>, <1.666,0,6.5>,
<1.768,-4.066,-4.596>, <1.768,-4.066,4.596>, <2.31,-5.312,-2.487>, <2.31,-5.312,2.487>,
<2.5,-5.75,0>, <2.942,-1.53,-6.005>, <2.942,-1.53,6.005>, <3.087,8.474,-6.008>,
<3.087,9.034,6.5>, <3.58,0,-6.005>, <3.58,0,6.005>, <4.024,-2.829,-4.596>,
<4.024,-2.829,4.596>, <4.746,-3.695,-2.487>, <4.746,-3.695,2.487>, <4.999,8,-6.5>,
<4.999,8,6.5>, <5,-4,0>, <5,8,6.5>, <5,8.428,-6.5>,
<5,8.4285,-6.4995>, <5,9.5715,6.4995>, <5,9.572,6.5>, <5.202,0,-4.596>,
<5.202,0,4.596>, <6.286,0,-2.488>, <6.286,0,2.488>, <6.666,0,0>,
<6.9125,8,-6.0054>, <6.9125,8,6.0054>, <6.9135,8.472,-6.0049>, <6.9135,9.528,6.0049>,
<8.5345,8,-4.5962>, <8.5345,8,4.5962>, <8.5355,8.5959,-4.5958>, <8.5355,9.4041,4.5958>,
<9.6185,8,-2.4876>, <9.6185,8,2.4876>, <9.6195,8.7813,-2.4874>, <9.6195,9.2187,2.4874>,
<9.999,8,0>, <10,9,0>
}
normal_vectors {
159,
<-1,0,0>, <-0.971439,0.170306,-0.165236>, <-0.917264,0.240971,-0.317113>, <-0.892932,0.263323,-0.365148>,
<-0.770239,0.311612,-0.556444>, <-0.706193,-0.706463,0.046916>, <-0.706099,-0.670651,-0.227271>, <-0.706264,-0.634743,0.313517>,
<-0.706454,-0.532598,-0.466113>, <-0.706454,-0.466113,0.532598>, <-0.706264,-0.313517,-0.634743>, <-0.706099,-0.227271,0.670651>,
<-0.706193,-0.046916,-0.706463>, <-0.706193,0.046916,0.706463>, <-0.706099,0.227271,-0.670651>, <-0.706264,0.313517,0.634743>,
<-0.706454,0.466113,-0.532598>, <-0.706454,0.532598,0.466113>, <-0.706264,0.634743,-0.313517>, <-0.706099,0.670651,0.227271>,
<-0.706193,0.706463,-0.046916>, <-0.624234,0.277695,-0.730217>, <-0.610778,-0.720149,-0.329143>, <-0.610778,-0.329143,0.720149>,
<-0.610778,0.329143,-0.720149>, <-0.610778,0.720149,0.329143>, <-0.585045,-0.810977,0.006183>, <-0.584895,-0.747052,0.31593>,
<-0.585085,-0.577818,-0.569036>, <-0.585085,-0.569036,0.577818>, <-0.584895,-0.31593,-0.747052>, <-0.585045,-0.006183,-0.810977>,
<-0.585045,0.006183,0.810977>, <-0.584895,0.31593,0.747052>, <-0.585085,0.569036,-0.577818>, <-0.585085,0.577818,0.569036>,
<-0.584895,0.747052,-0.31593>, <-0.585045,0.810977,-0.006183>, <-0.447214,-0.894427,-0.000049>, <-0.446572,-0.847449,0.287059>,
<-0.446572,-0.287059,-0.847449>, <-0.447214,0.000049,-0.894427>, <-0.447214,-0.000049,0.894427>, <-0.446572,0.287059,0.847449>,
<-0.446572,0.847449,-0.287059>, <-0.447214,0.894427,0.000049>, <-0.446392,-0.802318,-0.396258>, <-0.446153,-0.673422,0.589449>,
<-0.446153,-0.589449,-0.673422>, <-0.446392,-0.396258,0.802318>, <-0.446392,0.396258,-0.802318>, <-0.446153,0.589449,0.673422>,
<-0.446153,0.673422,-0.589449>, <-0.446392,0.802318,0.396258>, <-0.365066,0.161333,-0.916896>, <-0.249069,0.000582,-0.968486>,
<-0.156141,0.045454,-0.986688>, <-0.145916,0.03122,-0.988804>, <0,-1,0>, <0,-0.923856,-0.382739>,
<0,-0.923856,0.382739>, <0,-0.707107,-0.707107>, <0,-0.707107,0.707107>, <0,-0.382739,-0.923856>,
<0,-0.382739,0.923856>, <0,-0.098038,0.995183>, <0,0,-1>, <0,0,1>,
<0,0,1>, <0,0.382739,-0.923856>, <0,0.382739,0.923856>, <0,0.707107,-0.707107>,
<0,0.707107,0.707107>, <0,0.923856,-0.382739>, <0,0.923856,0.382739>, <0,1,0>,
<0.080569,-0.333916,-0.939153>, <0.081491,-0.158177,-0.984042>, <0.081491,-0.158177,0.984042>, <0.102405,-0.390566,0.914862>,
<0.127522,-0.399521,0.907811>, <0.135325,-0.430737,-0.892274>, <0.160367,-0.987057,-0.000002>, <0.160394,-0.911897,-0.37778>,
<0.160394,-0.37778,0.911897>, <0.160367,0.000002,-0.987057>, <0.160367,-0.000002,0.987057>, <0.160394,0.37778,-0.911897>,
<0.160394,0.911897,0.37778>, <0.160367,0.987057,0.000002>, <0.166676,-0.174937,-0.970369>, <0.192105,-0.891388,0.410515>,
<0.191984,-0.720528,-0.666319>, <0.191984,-0.666319,0.720528>, <0.192105,-0.410515,-0.891388>, <0.192105,0.410515,0.891388>,
<0.191984,0.666319,-0.720528>, <0.191984,0.720528,0.666319>, <0.192105,0.891388,-0.410515>, <0.193638,-0.645224,-0.739046>,
<0.195738,-0.459477,0.866353>, <0.207078,-0.690781,0.692777>, <0.247503,-0.555592,-0.793763>, <0.24935,-0.636192,0.730126>,
<0.249029,-0.103844,-0.962913>, <0.249029,-0.103844,0.962913>, <0.250254,0.000496,-0.96818>, <0.250258,0.000153,0.968179>,
<0.250249,0.000521,-0.968181>, <0.265842,-0.652334,-0.70978>, <0.267133,-0.88991,-0.369731>, <0.267113,-0.889843,0.369905>,
<0.287386,-0.957815,0.000002>, <0.315411,-0.713934,0.625151>, <0.315411,-0.625151,-0.713934>, <0.315411,0.625151,0.713934>,
<0.315411,0.713934,-0.625151>, <0.316228,-0.948683,0.000052>, <0.316403,-0.876506,0.362805>, <0.315551,-0.850785,-0.420229>,
<0.315551,-0.420229,0.850785>, <0.316403,-0.362805,-0.876506>, <0.316228,-0.000052,-0.948683>, <0.316228,0.000052,0.948683>,
<0.316403,0.362805,0.876506>, <0.315551,0.420229,-0.850785>, <0.315551,0.850785,0.420229>, <0.316403,0.876506,-0.362805>,
<0.316228,0.948683,-0.000052>, <0.375607,-0.826404,0.419496>, <0.401487,-0.827116,-0.393304>, <0.406979,-0.68987,-0.598706>,
<0.406979,-0.68987,0.598706>, <0.450256,-0.892476,0.027487>, <0.538751,-0.796748,-0.273751>, <0.538751,-0.796748,0.273751>,
<0.573462,-0.819232,0>, <0.632226,-0.263634,-0.728552>, <0.63243,-0.263532,-0.728411>, <0.63251,-0.263565,0.72833>,
<0.655851,-0.000589,-0.754891>, <0.655814,-0.000252,0.754923>, <0.710669,-0.29605,-0.638204>, <0.710584,-0.296015,0.638315>,
<0.778893,-0.324478,-0.536692>, <0.778822,-0.324448,0.536815>, <0.786828,-0.000903,-0.617171>, <0.786769,-0.000462,0.617247>,
<0.869474,-0.362325,-0.33576>, <0.869505,-0.362338,0.335666>, <0.883984,-0.368504,-0.28771>, <0.884115,-0.368559,0.287236>,
<0.923079,-0.38461,-0.000008>, <0.923132,-0.384484,0.000216>, <0.951339,-0.001222,-0.308145>, <0.951302,-0.00073,0.308259>,
<0.966617,-0.00082,0.256225>, <0.998701,-0.000931,0.050953>, <0.999999,-0.001121,0.000096>
}
face_indices {
217,
<48, 50, 66>, <48, 66, 64>, <32, 34, 50>, <32, 50, 48>,
<16, 18, 34>, <16, 34, 32>, <0, 2, 18>, <0, 18, 16>,
<50, 52, 68>, <50, 68, 66>, <34, 36, 52>, <34, 52, 50>,
<18, 20, 36>, <18, 36, 34>, <2, 4, 20>, <2, 20, 18>,
<52, 54, 70>, <52, 70, 68>, <36, 38, 54>, <36, 54, 52>,
<20, 22, 38>, <20, 38, 36>, <4, 6, 22>, <4, 22, 20>,
<54, 56, 72>, <54, 72, 70>, <38, 40, 56>, <38, 56, 54>,
<22, 24, 40>, <22, 40, 38>, <6, 8, 24>, <6, 24, 22>,
<56, 58, 74>, <56, 74, 72>, <40, 42, 58>, <40, 58, 56>,
<24, 26, 42>, <24, 42, 40>, <8, 10, 26>, <8, 26, 24>,
<58, 60, 76>, <58, 76, 74>, <42, 44, 60>, <42, 60, 58>,
<26, 28, 44>, <26, 44, 42>, <10, 12, 28>, <10, 28, 26>,
<60, 62, 78>, <60, 78, 76>, <44, 46, 62>, <44, 62, 60>,
<28, 30, 46>, <28, 46, 44>, <12, 14, 30>, <12, 30, 28>,
<62, 63, 79>, <62, 79, 78>, <46, 47, 63>, <46, 63, 62>,
<30, 31, 47>, <30, 47, 46>, <14, 15, 31>, <14, 31, 30>,
<63, 61, 77>, <63, 77, 79>, <47, 45, 61>, <47, 61, 63>,
<31, 29, 45>, <31, 45, 47>, <15, 13, 29>, <15, 29, 31>,
<61, 59, 75>, <61, 75, 77>, <45, 43, 59>, <45, 59, 61>,
<29, 27, 43>, <29, 43, 45>, <13, 11, 27>, <13, 27, 29>,
<59, 57, 73>, <59, 73, 75>, <43, 41, 57>, <43, 57, 59>,
<27, 25, 41>, <27, 41, 43>, <11, 9, 25>, <11, 25, 27>,
<57, 55, 71>, <57, 71, 73>, <41, 39, 55>, <41, 55, 57>,
<25, 23, 39>, <25, 39, 41>, <9, 7, 23>, <9, 23, 25>,
<55, 53, 69>, <55, 69, 71>, <39, 37, 53>, <39, 53, 55>,
<23, 21, 37>, <23, 37, 39>, <7, 5, 21>, <7, 21, 23>,
<53, 51, 67>, <53, 67, 69>, <37, 35, 51>, <37, 51, 53>,
<21, 19, 35>, <21, 35, 37>, <5, 3, 19>, <5, 19, 21>,
<51, 49, 65>, <51, 65, 67>, <35, 33, 49>, <35, 49, 51>,
<19, 17, 33>, <19, 33, 35>, <3, 1, 17>, <3, 17, 19>,
<49, 48, 64>, <49, 64, 65>, <33, 32, 48>, <33, 48, 49>,
<17, 16, 32>, <17, 32, 33>, <1, 0, 16>, <1, 16, 17>,
<89, 92, 94>, <89, 94, 90>, <92, 96, 97>, <92, 97, 94>,
<96, 100, 102>, <96, 102, 97>, <100, 101, 103>, <100, 103, 102>,
<99, 103, 101>, <99, 95, 98>, <99, 98, 103>, <95, 91, 93>,
<95, 93, 98>, <91, 88, 87>, <91, 87, 93>, <85, 110, 87>,
<111, 86, 90>, <120, 134, 130>, <120, 130, 108>, <104, 108, 130>,
<104, 130, 94>, <90, 94, 130>, <90, 130, 111>, <127, 87, 110>,
<119, 127, 131>, <87, 127, 119>, <119, 93, 87>, <119, 109, 93>,
<98, 93, 109>, <98, 109, 105>, <98, 105, 103>, <114, 81, 80>,
<114, 80, 116>, <112, 83, 81>, <112, 81, 114>, <106, 85, 83>,
<106, 83, 112>, <106, 110, 85>, <82, 115, 116>, <82, 116, 80>,
<84, 113, 115>, <84, 115, 82>, <86, 107, 113>, <86, 113, 84>,
<107, 86, 111>, <114, 116, 125>, <112, 114, 123>, <106, 112, 117>,
<129, 125, 116>, <125, 123, 114>, <123, 117, 112>, <117, 110, 106>,
<118, 107, 111>, <115, 126, 116>, <113, 124, 115>, <107, 118, 113>,
<129, 116, 126>, <126, 115, 124>, <124, 113, 118>, <126, 138, 139>,
<126, 139, 129>, <124, 136, 138>, <124, 138, 126>, <118, 122, 136>,
<118, 136, 124>, <111, 122, 118>, <137, 125, 129>, <137, 129, 139>,
<135, 123, 125>, <135, 125, 137>, <121, 117, 123>, <121, 123, 135>,
<110, 117, 121>, <142, 132, 127>, <142, 127, 140>, <146, 142, 140>,
<146, 140, 144>, <150, 146, 144>, <150, 144, 148>, <153, 150, 148>,
<153, 148, 152>, <151, 153, 152>, <151, 152, 149>, <147, 151, 149>,
<147, 149, 145>, <143, 147, 145>, <143, 145, 141>, <133, 143, 141>,
<133, 141, 128>
}
normal_indices {
217,
<82, 91, 118>, <82, 118, 117>, <58, 60, 91>, <58, 91, 82>,
<26, 27, 39>, <26, 39, 38>, <5, 7, 27>, <5, 27, 26>,
<91, 93, 113>, <91, 113, 118>, <60, 62, 93>, <60, 93, 91>,
<27, 29, 47>, <27, 47, 39>, <7, 9, 29>, <7, 29, 27>,
<93, 84, 120>, <93, 120, 113>, <62, 64, 84>, <62, 84, 93>,
<29, 23, 49>, <29, 49, 47>, <9, 11, 23>, <9, 23, 29>,
<84, 86, 123>, <84, 123, 120>, <64, 67, 86>, <64, 86, 84>,
<23, 32, 42>, <23, 42, 49>, <11, 13, 32>, <11, 32, 23>,
<86, 95, 124>, <86, 124, 123>, <67, 70, 95>, <67, 95, 86>,
<32, 33, 43>, <32, 43, 42>, <13, 15, 33>, <13, 33, 32>,
<95, 97, 115>, <95, 115, 124>, <70, 72, 97>, <70, 97, 95>,
<33, 35, 51>, <33, 51, 43>, <15, 17, 35>, <15, 35, 33>,
<97, 88, 126>, <97, 126, 115>, <72, 74, 88>, <72, 88, 97>,
<35, 25, 53>, <35, 53, 51>, <17, 19, 25>, <17, 25, 35>,
<88, 89, 128>, <88, 128, 126>, <74, 75, 89>, <74, 89, 88>,
<25, 37, 45>, <25, 45, 53>, <19, 20, 37>, <19, 37, 25>,
<89, 98, 127>, <89, 127, 128>, <75, 73, 98>, <75, 98, 89>,
<37, 36, 44>, <37, 44, 45>, <20, 18, 36>, <20, 36, 37>,
<98, 96, 116>, <98, 116, 127>, <73, 71, 96>, <73, 96, 98>,
<36, 34, 52>, <36, 52, 44>, <18, 16, 34>, <18, 34, 36>,
<96, 87, 125>, <96, 125, 116>, <71, 69, 87>, <71, 87, 96>,
<34, 24, 50>, <34, 50, 52>, <16, 14, 24>, <16, 24, 34>,
<87, 85, 122>, <87, 122, 125>, <69, 66, 85>, <69, 85, 87>,
<24, 31, 41>, <24, 41, 50>, <14, 12, 31>, <14, 31, 24>,
<85, 94, 121>, <85, 121, 122>, <66, 63, 94>, <66, 94, 85>,
<31, 30, 40>, <31, 40, 41>, <12, 10, 30>, <12, 30, 31>,
<94, 92, 114>, <94, 114, 121>, <63, 61, 92>, <63, 92, 94>,
<30, 28, 48>, <30, 48, 40>, <10, 8, 28>, <10, 28, 30>,
<92, 83, 119>, <92, 119, 114>, <61, 59, 83>, <61, 83, 92>,
<28, 22, 46>, <28, 46, 48>, <8, 6, 22>, <8, 22, 28>,
<83, 82, 117>, <83, 117, 119>, <59, 58, 82>, <59, 82, 83>,
<22, 26, 38>, <22, 38, 46>, <6, 5, 26>, <6, 26, 22>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <76, 77, 57>,
<78, 79, 65>, <67, 68, 67>, <67, 67, 67>, <67, 67, 67>,
<67, 67, 67>, <65, 67, 67>, <65, 67, 78>, <56, 57, 77>,
<54, 56, 55>, <57, 56, 54>, <54, 21, 57>, <54, 4, 21>,
<3, 21, 4>, <3, 4, 2>, <3, 2, 1>, <130, 110, 112>,
<130, 112, 133>, <109, 99, 110>, <109, 110, 130>, <81, 76, 99>,
<81, 99, 109>, <81, 77, 76>, <111, 129, 133>, <111, 133, 112>,
<101, 103, 129>, <101, 129, 111>, <79, 80, 103>, <79, 103, 101>,
<80, 79, 78>, <130, 133, 134>, <109, 130, 131>, <81, 109, 102>,
<136, 134, 133>, <134, 131, 130>, <131, 102, 109>, <90, 77, 81>,
<100, 80, 78>, <129, 135, 133>, <103, 132, 129>, <80, 100, 103>,
<136, 133, 135>, <135, 129, 132>, <132, 103, 100>, <151, 149, 152>,
<151, 152, 153>, <145, 143, 149>, <145, 149, 151>, <139, 139, 143>,
<139, 143, 145>, <78, 105, 105>, <150, 148, 153>, <150, 153, 152>,
<144, 142, 148>, <144, 148, 150>, <138, 137, 142>, <138, 142, 144>,
<77, 90, 104>, <108, 108, 108>, <108, 108, 106>, <146, 140, 140>,
<146, 140, 146>, <154, 146, 146>, <154, 146, 154>, <158, 154, 154>,
<158, 154, 157>, <156, 158, 157>, <156, 157, 155>, <147, 156, 155>,
<147, 155, 147>, <141, 147, 147>, <141, 147, 141>, <107, 107, 107>,
<107, 107, 107>
}
}
}
#end
#declare LDX_3818_dot_dat =
#if (LDXQual = 0)
box {
<-10,-6.5,-13.436>,<7,22.435999,6.507>
}
#else
union {
// Minifig Arm Right
// Name: 3818.dat
// Author: Chris Dee [cwdee]
// !LDRAW_ORG Part UPDATE 2018-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// !HELP Place at -15.552 9 0 relative to torso
// !HELP Then rotate about x axis to give required elevation of arm
// !HELP 0 = upper arm vertical
// !HELP -45 = lower arm horizontal
// !HELP -90 = upper arm horizontal
// !HELP -135 = lower arm vertical
// !HELP Then rotate 9.782 about z axis to align with slope of torso
// BFC CERTIFY CCW
// !HISTORY 2002-11-30 [PTadmin] Official Update 2002-05
// !HISTORY 2007-07-29 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2008-07-01 [tchang] Add BFC, some conditional lines
// !HISTORY 2009-05-28 [Eldar] Fix wrong color lines
// !HISTORY 2009-08-24 [PTadmin] Moved from 982
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
// !HISTORY 2010-08-27 [Philo] Increased hand hole to 15LDu; Fixed/added some condline.
// !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
// !HISTORY 2018-03-05 [GeraldLasser] Added a Conditional Line
// !HISTORY 2018-03-23 [MagFors] Subfiled for patterned parts
// !HISTORY 2018-12-08 [PTadmin] Official Update 2018-02
object {
LDX_s_slash_3818s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_s_slash_3818s02_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
mesh2 {
vertex_vectors {
154,
<-10,9,0>, <-9.999,8,0>, <-9.6195,8.7813,-2.4874>, <-9.6195,9.2187,2.4874>,
<-9.6185,8,-2.4876>, <-9.6185,8,2.4876>, <-8.5345,8,-4.5962>, <-8.5345,8,4.5962>,
<-8.5355,8.5959,-4.5958>, <-8.5355,9.4041,4.5958>, <-6.9135,8.472,-6.0049>, <-6.9135,9.528,6.0049>,
<-6.9125,8,-6.0054>, <-6.9125,8,6.0054>, <-6.666,0,0>, <-6.286,0,-2.488>,
<-6.286,0,2.488>, <-5.202,0,-4.596>, <-5.202,0,4.596>, <-5,-4,0>,
<-5,8,6.5>, <-5,8.428,-6.5>, <-5,8.4285,-6.4995>, <-5,9.5715,6.4995>,
<-5,9.572,6.5>, <-4.999,8,-6.5>, <-4.999,8,6.5>, <-4.746,-3.695,-2.487>,
<-4.746,-3.695,2.487>, <-4.024,-2.829,-4.596>, <-4.024,-2.829,4.596>, <-3.58,0,-6.005>,
<-3.58,0,6.005>, <-3.087,8.474,-6.008>, <-3.087,9.034,6.5>, <-2.942,-1.53,-6.005>,
<-2.942,-1.53,6.005>, <-2.5,-5.75,0>, <-2.31,-5.312,-2.487>, <-2.31,-5.312,2.487>,
<-1.768,-4.066,-4.596>, <-1.768,-4.066,4.596>, <-1.666,0,-6.5>, <-1.666,0,6.5>,
<-1.465,7.5,6.5>, <-1.465,8.604,-4.604>, <-0.957,-2.2,-6.005>, <-0.957,-2.2,6.005>,
<-0.381,5.206,6.5>, <-0.381,8.798,-2.505>, <0,-6.5,0>, <0,-6.005,-2.488>,
<0,-6.005,2.488>, <0,-4.596,-4.596>, <0,-4.596,4.596>, <0,-2.488,-6.005>,
<0,-2.488,6.005>, <0,0,-6.5>, <0,0,-5>, <0,0,5>,
<0,0,6.5>, <0,1.913,-4.619>, <0,1.913,4.619>, <0,2.487,-6.005>,
<0,2.5,6.5>, <0,3.536,-3.536>, <0,3.536,3.536>, <0,4.5,4.5>,
<0,4.596,-4.596>, <0,4.619,-1.913>, <0,4.619,1.913>, <0,5,0>,
<0,6,3>, <0,9.028,-0.028>, <2,-5,0>, <2,-4.619,-1.913>,
<2,-4.619,1.913>, <2,-3.536,-3.536>, <2,-3.536,3.536>, <2,-1.913,-4.619>,
<2,-1.913,4.619>, <2,0,-5>, <2,0,5>, <2,1.913,-4.619>,
<2,1.913,4.619>, <2,3.536,-3.536>, <2,3.536,3.536>, <2,4.619,-1.913>,
<2,4.619,1.913>, <2,5,0>, <3.5,-5.5,0>, <3.5,-5.081,-2.105>,
<3.5,-5.081,2.105>, <3.5,-3.889,-3.889>, <3.5,-3.889,3.889>, <3.5,-2.105,-5.081>,
<3.5,-2.105,5.081>, <3.5,0,-5.5>, <3.5,0,5.5>, <3.5,2.105,-5.081>,
<3.5,2.105,5.081>, <3.5,3.889,-3.889>, <3.5,3.889,3.889>, <3.5,5.081,-2.105>,
<3.5,5.081,2.105>, <3.5,5.5,0>, <5,-5.5,0>, <5,-5.081,-2.105>,
<5,-5.081,2.105>, <5,-3.889,-3.889>, <5,-3.889,3.889>, <5,-2.105,-5.081>,
<5,-2.105,5.081>, <5,0,-5.5>, <5,0,5.5>, <5,2.105,-5.081>,
<5,2.105,5.081>, <5,3.889,-3.889>, <5,3.889,3.889>, <5,5.081,-2.105>,
<5,5.081,2.105>, <5,5.5,0>, <6,-5,0>, <6,-4.619,-1.913>,
<6,-4.619,1.913>, <6,-3.536,-3.536>, <6,-3.536,3.536>, <6,-1.913,-4.619>,
<6,-1.913,4.619>, <6,0,-5>, <6,0,5>, <6,1.913,-4.619>,
<6,1.913,4.619>, <6,3.536,-3.536>, <6,3.536,3.536>, <6,4.619,-1.913>,
<6,4.619,1.913>, <6,5,0>, <7,-4,0>, <7,-3.696,-1.531>,
<7,-3.696,1.531>, <7,-2.828,-2.828>, <7,-2.828,2.828>, <7,-1.531,-3.696>,
<7,-1.531,3.696>, <7,0,-4>, <7,0,4>, <7,1.531,-3.696>,
<7,1.531,3.696>, <7,2.828,-2.828>, <7,2.828,2.828>, <7,3.696,-1.531>,
<7,3.696,1.531>, <7,4,0>
}
normal_vectors {
158,
<-1,0,0>, <-0.971439,-0.170306,0.165236>, <-0.917264,-0.240971,0.317113>, <-0.892932,-0.263323,0.365148>,
<-0.770239,-0.311612,0.556444>, <-0.706193,-0.706463,0.046916>, <-0.706099,-0.670651,-0.227271>, <-0.706264,-0.634743,0.313517>,
<-0.706454,-0.532598,-0.466113>, <-0.706454,-0.466113,0.532598>, <-0.706264,-0.313517,-0.634743>, <-0.706099,-0.227271,0.670651>,
<-0.706193,-0.046916,-0.706463>, <-0.706193,0.046916,0.706463>, <-0.706099,0.227271,-0.670651>, <-0.706264,0.313517,0.634743>,
<-0.706454,0.466113,-0.532598>, <-0.706454,0.532598,0.466113>, <-0.706264,0.634743,-0.313517>, <-0.706099,0.670651,0.227271>,
<-0.706193,0.706463,-0.046916>, <-0.624234,-0.277695,0.730217>, <-0.610778,-0.720149,-0.329143>, <-0.610778,-0.329143,0.720149>,
<-0.610778,0.329143,-0.720149>, <-0.610778,0.720149,0.329143>, <-0.585045,-0.810977,0.006183>, <-0.584895,-0.747052,0.31593>,
<-0.585085,-0.577818,-0.569036>, <-0.585085,-0.569036,0.577818>, <-0.584895,-0.31593,-0.747052>, <-0.585045,-0.006183,-0.810977>,
<-0.585045,0.006183,0.810977>, <-0.584895,0.31593,0.747052>, <-0.585085,0.569036,-0.577818>, <-0.585085,0.577818,0.569036>,
<-0.584895,0.747052,-0.31593>, <-0.585045,0.810977,-0.006183>, <-0.447214,-0.894427,-0.000049>, <-0.446572,-0.847449,0.287059>,
<-0.446572,-0.287059,-0.847449>, <-0.447214,0.000049,-0.894427>, <-0.447214,-0.000049,0.894427>, <-0.446572,0.287059,0.847449>,
<-0.446572,0.847449,-0.287059>, <-0.447214,0.894427,0.000049>, <-0.446392,-0.802318,-0.396258>, <-0.446153,-0.673422,0.589449>,
<-0.446153,-0.589449,-0.673422>, <-0.446392,-0.396258,0.802318>, <-0.446392,0.396258,-0.802318>, <-0.446153,0.589449,0.673422>,
<-0.446153,0.673422,-0.589449>, <-0.446392,0.802318,0.396258>, <-0.365066,-0.161333,0.916896>, <-0.249069,-0.000582,0.968486>,
<-0.156141,-0.045454,0.986688>, <-0.145916,-0.03122,0.988804>, <0,-1,0>, <0,-0.923856,-0.382739>,
<0,-0.923856,0.382739>, <0,-0.707107,-0.707107>, <0,-0.707107,0.707107>, <0,-0.382739,-0.923856>,
<0,-0.382739,0.923856>, <0,0,-1>, <0,0,-1>, <0,0,1>,
<0,0.098038,-0.995183>, <0,0.382739,-0.923856>, <0,0.382739,0.923856>, <0,0.707107,-0.707107>,
<0,0.707107,0.707107>, <0,0.923856,-0.382739>, <0,0.923856,0.382739>, <0,1,0>,
<0.081491,0.158177,-0.984042>, <0.081491,0.158177,0.984042>, <0.080569,0.333916,0.939153>, <0.102405,0.390566,-0.914862>,
<0.127522,0.399521,-0.907811>, <0.135325,0.430737,0.892274>, <0.160367,-0.987057,-0.000002>, <0.160394,-0.911897,-0.37778>,
<0.160394,-0.37778,0.911897>, <0.160367,0.000002,-0.987057>, <0.160367,-0.000002,0.987057>, <0.160394,0.37778,-0.911897>,
<0.160394,0.911897,0.37778>, <0.160367,0.987057,0.000002>, <0.166676,0.174937,0.970369>, <0.192105,-0.891388,0.410515>,
<0.191984,-0.720528,-0.666319>, <0.191984,-0.666319,0.720528>, <0.192105,-0.410515,-0.891388>, <0.192105,0.410515,0.891388>,
<0.191984,0.666319,-0.720528>, <0.191984,0.720528,0.666319>, <0.192105,0.891388,-0.410515>, <0.193638,0.645224,0.739046>,
<0.195738,0.459477,-0.866353>, <0.207078,0.690781,-0.692777>, <0.247503,0.555592,0.793763>, <0.249029,0.103844,-0.962913>,
<0.249029,0.103844,0.962913>, <0.24935,0.636192,-0.730126>, <0.250258,-0.000153,-0.968179>, <0.250243,-0.000546,0.968183>,
<0.265842,0.652334,0.70978>, <0.267113,0.889843,-0.369905>, <0.267133,0.88991,0.369731>, <0.287386,0.957815,-0.000002>,
<0.315411,-0.713934,0.625151>, <0.315411,-0.625151,-0.713934>, <0.315411,0.625151,0.713934>, <0.315411,0.713934,-0.625151>,
<0.316228,-0.948683,0.000052>, <0.316403,-0.876506,0.362805>, <0.315551,-0.850785,-0.420229>, <0.315551,-0.420229,0.850785>,
<0.316403,-0.362805,-0.876506>, <0.316228,-0.000052,-0.948683>, <0.316228,0.000052,0.948683>, <0.316403,0.362805,0.876506>,
<0.315551,0.420229,-0.850785>, <0.315551,0.850785,0.420229>, <0.316403,0.876506,-0.362805>, <0.316228,0.948683,-0.000052>,
<0.375607,0.826404,-0.419496>, <0.401487,0.827116,0.393304>, <0.406979,0.68987,-0.598706>, <0.406979,0.68987,0.598706>,
<0.450256,0.892476,-0.027487>, <0.538751,0.796748,-0.273751>, <0.538751,0.796748,0.273751>, <0.573462,0.819232,0>,
<0.63243,0.263532,0.728411>, <0.632226,0.263634,0.728552>, <0.632572,0.263778,-0.728199>, <0.655814,0.000252,-0.754923>,
<0.655851,0.000589,0.754891>, <0.710584,0.296015,-0.638315>, <0.710669,0.29605,0.638204>, <0.778822,0.324448,-0.536815>,
<0.778893,0.324478,0.536692>, <0.786769,0.000462,-0.617247>, <0.786828,0.000903,0.617171>, <0.869474,0.362325,0.33576>,
<0.869505,0.362338,-0.335666>, <0.884115,0.368559,-0.287236>, <0.883984,0.368504,0.28771>, <0.923132,0.384484,-0.000216>,
<0.923079,0.38461,0.000008>, <0.951302,0.00073,-0.308259>, <0.951339,0.001222,0.308145>, <0.966617,0.00082,-0.256225>,
<0.998701,0.000931,-0.050953>, <0.999999,0.001121,-0.000096>
}
face_indices {
217,
<90, 92, 76>, <90, 76, 74>, <106, 108, 92>, <106, 92, 90>,
<122, 124, 108>, <122, 108, 106>, <138, 140, 124>, <138, 124, 122>,
<92, 94, 78>, <92, 78, 76>, <108, 110, 94>, <108, 94, 92>,
<124, 126, 110>, <124, 110, 108>, <140, 142, 126>, <140, 126, 124>,
<94, 96, 80>, <94, 80, 78>, <110, 112, 96>, <110, 96, 94>,
<126, 128, 112>, <126, 112, 110>, <142, 144, 128>, <142, 128, 126>,
<96, 98, 82>, <96, 82, 80>, <112, 114, 98>, <112, 98, 96>,
<128, 130, 114>, <128, 114, 112>, <144, 146, 130>, <144, 130, 128>,
<98, 100, 84>, <98, 84, 82>, <114, 116, 100>, <114, 100, 98>,
<130, 132, 116>, <130, 116, 114>, <146, 148, 132>, <146, 132, 130>,
<100, 102, 86>, <100, 86, 84>, <116, 118, 102>, <116, 102, 100>,
<132, 134, 118>, <132, 118, 116>, <148, 150, 134>, <148, 134, 132>,
<102, 104, 88>, <102, 88, 86>, <118, 120, 104>, <118, 104, 102>,
<134, 136, 120>, <134, 120, 118>, <150, 152, 136>, <150, 136, 134>,
<104, 105, 89>, <104, 89, 88>, <120, 121, 105>, <120, 105, 104>,
<136, 137, 121>, <136, 121, 120>, <152, 153, 137>, <152, 137, 136>,
<105, 103, 87>, <105, 87, 89>, <121, 119, 103>, <121, 103, 105>,
<137, 135, 119>, <137, 119, 121>, <153, 151, 135>, <153, 135, 137>,
<103, 101, 85>, <103, 85, 87>, <119, 117, 101>, <119, 101, 103>,
<135, 133, 117>, <135, 117, 119>, <151, 149, 133>, <151, 133, 135>,
<101, 99, 83>, <101, 83, 85>, <117, 115, 99>, <117, 99, 101>,
<133, 131, 115>, <133, 115, 117>, <149, 147, 131>, <149, 131, 133>,
<99, 97, 81>, <99, 81, 83>, <115, 113, 97>, <115, 97, 99>,
<131, 129, 113>, <131, 113, 115>, <147, 145, 129>, <147, 129, 131>,
<97, 95, 79>, <97, 79, 81>, <113, 111, 95>, <113, 95, 97>,
<129, 127, 111>, <129, 111, 113>, <145, 143, 127>, <145, 127, 129>,
<95, 93, 77>, <95, 77, 79>, <111, 109, 93>, <111, 93, 95>,
<127, 125, 109>, <127, 109, 111>, <143, 141, 125>, <143, 125, 127>,
<93, 91, 75>, <93, 75, 77>, <109, 107, 91>, <109, 91, 93>,
<125, 123, 107>, <125, 107, 109>, <141, 139, 123>, <141, 123, 125>,
<91, 90, 74>, <91, 74, 75>, <107, 106, 90>, <107, 90, 91>,
<123, 122, 106>, <123, 106, 107>, <139, 138, 122>, <139, 122, 123>,
<59, 62, 64>, <59, 64, 60>, <62, 66, 67>, <62, 67, 64>,
<66, 70, 72>, <66, 72, 67>, <70, 71, 73>, <70, 73, 72>,
<69, 73, 71>, <69, 65, 68>, <69, 68, 73>, <65, 61, 63>,
<65, 63, 68>, <61, 58, 57>, <61, 57, 63>, <55, 42, 57>,
<43, 56, 60>, <34, 24, 20>, <34, 20, 44>, <48, 44, 20>,
<48, 20, 64>, <60, 64, 20>, <60, 20, 43>, <25, 57, 42>,
<33, 25, 21>, <57, 25, 33>, <33, 63, 57>, <33, 45, 63>,
<68, 63, 45>, <68, 45, 49>, <68, 49, 73>, <38, 51, 50>,
<38, 50, 37>, <40, 53, 51>, <40, 51, 38>, <46, 55, 53>,
<46, 53, 40>, <46, 42, 55>, <52, 39, 37>, <52, 37, 50>,
<54, 41, 39>, <54, 39, 52>, <56, 47, 41>, <56, 41, 54>,
<47, 56, 43>, <38, 37, 27>, <40, 38, 29>, <46, 40, 35>,
<19, 27, 37>, <27, 29, 38>, <29, 35, 40>, <35, 42, 46>,
<36, 47, 43>, <39, 28, 37>, <41, 30, 39>, <47, 36, 41>,
<19, 37, 28>, <28, 39, 30>, <30, 41, 36>, <28, 16, 14>,
<28, 14, 19>, <30, 18, 16>, <30, 16, 28>, <36, 32, 18>,
<36, 18, 30>, <43, 32, 36>, <15, 27, 19>, <15, 19, 14>,
<17, 29, 27>, <17, 27, 15>, <31, 35, 29>, <31, 29, 17>,
<42, 35, 31>, <10, 22, 25>, <10, 25, 12>, <8, 10, 12>,
<8, 12, 6>, <2, 8, 6>, <2, 6, 4>, <0, 2, 4>,
<0, 4, 1>, <3, 0, 1>, <3, 1, 5>, <9, 3, 5>,
<9, 5, 7>, <11, 9, 7>, <11, 7, 13>, <23, 11, 13>,
<23, 13, 26>
}
normal_indices {
217,
<89, 98, 126>, <89, 126, 127>, <75, 73, 98>, <75, 98, 89>,
<37, 36, 44>, <37, 44, 45>, <20, 18, 36>, <20, 36, 37>,
<98, 96, 115>, <98, 115, 126>, <73, 71, 96>, <73, 96, 98>,
<36, 34, 52>, <36, 52, 44>, <18, 16, 34>, <18, 34, 36>,
<96, 87, 124>, <96, 124, 115>, <71, 69, 87>, <71, 87, 96>,
<34, 24, 50>, <34, 50, 52>, <16, 14, 24>, <16, 24, 34>,
<87, 85, 121>, <87, 121, 124>, <69, 65, 85>, <69, 85, 87>,
<24, 31, 41>, <24, 41, 50>, <14, 12, 31>, <14, 31, 24>,
<85, 94, 120>, <85, 120, 121>, <65, 63, 94>, <65, 94, 85>,
<31, 30, 40>, <31, 40, 41>, <12, 10, 30>, <12, 30, 31>,
<94, 92, 113>, <94, 113, 120>, <63, 61, 92>, <63, 92, 94>,
<30, 28, 48>, <30, 48, 40>, <10, 8, 28>, <10, 28, 30>,
<92, 83, 118>, <92, 118, 113>, <61, 59, 83>, <61, 83, 92>,
<28, 22, 46>, <28, 46, 48>, <8, 6, 22>, <8, 22, 28>,
<83, 82, 116>, <83, 116, 118>, <59, 58, 82>, <59, 82, 83>,
<22, 26, 38>, <22, 38, 46>, <6, 5, 26>, <6, 26, 22>,
<82, 91, 117>, <82, 117, 116>, <58, 60, 91>, <58, 91, 82>,
<26, 27, 39>, <26, 39, 38>, <5, 7, 27>, <5, 27, 26>,
<91, 93, 112>, <91, 112, 117>, <60, 62, 93>, <60, 93, 91>,
<27, 29, 47>, <27, 47, 39>, <7, 9, 29>, <7, 29, 27>,
<93, 84, 119>, <93, 119, 112>, <62, 64, 84>, <62, 84, 93>,
<29, 23, 49>, <29, 49, 47>, <9, 11, 23>, <9, 23, 29>,
<84, 86, 122>, <84, 122, 119>, <64, 67, 86>, <64, 86, 84>,
<23, 32, 42>, <23, 42, 49>, <11, 13, 32>, <11, 32, 23>,
<86, 95, 123>, <86, 123, 122>, <67, 70, 95>, <67, 95, 86>,
<32, 33, 43>, <32, 43, 42>, <13, 15, 33>, <13, 33, 32>,
<95, 97, 114>, <95, 114, 123>, <70, 72, 97>, <70, 97, 95>,
<33, 35, 51>, <33, 51, 43>, <15, 17, 35>, <15, 35, 33>,
<97, 88, 125>, <97, 125, 114>, <72, 74, 88>, <72, 88, 97>,
<35, 25, 53>, <35, 53, 51>, <17, 19, 25>, <17, 25, 35>,
<88, 89, 127>, <88, 127, 125>, <74, 75, 89>, <74, 89, 88>,
<25, 37, 45>, <25, 45, 53>, <19, 20, 37>, <19, 37, 25>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <78, 77, 57>,
<76, 79, 68>, <65, 66, 65>, <65, 65, 65>, <65, 65, 65>,
<65, 65, 65>, <68, 65, 65>, <68, 65, 76>, <56, 57, 77>,
<54, 56, 55>, <57, 56, 54>, <54, 21, 57>, <54, 4, 21>,
<3, 21, 4>, <3, 4, 2>, <3, 2, 1>, <129, 110, 111>,
<129, 111, 132>, <108, 99, 110>, <108, 110, 129>, <81, 78, 99>,
<81, 99, 108>, <81, 77, 78>, <109, 128, 132>, <109, 132, 111>,
<101, 105, 128>, <101, 128, 109>, <79, 80, 105>, <79, 105, 101>,
<80, 79, 76>, <129, 132, 134>, <108, 129, 131>, <81, 108, 102>,
<135, 134, 132>, <134, 131, 129>, <131, 102, 108>, <90, 77, 81>,
<100, 80, 76>, <128, 133, 132>, <105, 130, 128>, <80, 100, 105>,
<135, 132, 133>, <133, 128, 130>, <130, 105, 100>, <149, 148, 152>,
<149, 152, 151>, <143, 141, 148>, <143, 148, 149>, <138, 138, 141>,
<138, 141, 143>, <76, 103, 103>, <150, 147, 151>, <150, 151, 152>,
<144, 142, 147>, <144, 147, 150>, <136, 137, 142>, <136, 142, 144>,
<77, 90, 104>, <107, 107, 107>, <107, 107, 107>, <146, 140, 140>,
<146, 140, 146>, <154, 146, 146>, <154, 146, 154>, <157, 154, 154>,
<157, 154, 156>, <155, 157, 156>, <155, 156, 153>, <145, 155, 153>,
<145, 153, 145>, <139, 145, 145>, <139, 145, 139>, <106, 106, 106>,
<106, 106, 106>
}
}
}
#end
#declare LDX_2_dash_4cylo_dot_dat_in_part = union {
// Cylinder Open 0.5
// Name: 2-4cylo.dat
// Author: Max Martin Richter [MMR1988]
// !LDRAW_ORG Primitive UPDATE 2010-03
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2010-12-31 [PTadmin] Official Update 2010-03
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
}
#declare LDX_2_dash_4ring2_dot_dat_in_part = disc // Ring 0.5
{
<0,0,0>,<0,1,0>,3,2
clipped_by
{
plane
{
<0,0,-1>,0
}
}
}
#declare LDX_2_dash_4ring2_dot_dat = disc // Ring 0.5
{
<0,0,0>,<0,1,0>,3,2
clipped_by
{
plane
{
<0,0,-1>,0
}
}
}
#declare LDX_3820_dot_dat =
#if (LDXQual = 0)
box {
<-6,-7.6502,-15.517837>,<6,4.6128,13>
}
#else
union {
// Minifig Hand
// Name: 3820.dat
// Author: Orion Pobursky [OrionP]
// !LDRAW_ORG Part UPDATE 2019-01
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// !HELP The centre of the grip is at x, y -.8229, z -9.8948
// !HELP The centre of the arm/hand cylinder meets at x, y, z -9.682
// !HELP The Hand angle is 14.5 degrees
// !HELP To rotate the hand to 90 degrees horizontal use the following rotation
// !HELP matrix: 1 0 0 0 0.968148 0.25038 0 -0.25038 0.968148
// !HELP After the rotation matrix is applied:
// !HELP The center of the bottom of the hand will be x, y+2.2259, z-9.3739
// !HELP The center of the top of the hand will be x, y-8.7741, z-9.3739
// BFC CERTIFY CCW
// !HISTORY 2002-11-30 [PTadmin] Official Update 2002-05
// !HISTORY 2002-12-31 [PTadmin] Official Update 2002-06
// !HISTORY 2007-07-29 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2008-07-07 [DeannaEarley] Removed erroneous BFC CERTIFY entries (2005-08-29
// !HISTORY 2008-07-07 [WilliamH] Added conditional lines to underside (2006-08-17)
// !HISTORY 2009-08-24 [PTadmin] Moved from 983
// !HISTORY 2009-12-29 [PTadmin] Official Update 2009-03
// !HISTORY 2018-12-25 [GeraldLasser] Corrected grip width and intersection at cuff, reduced height by 1 LDU
// !HISTORY 2019-06-28 [PTadmin] Official Update 2019-01
// // Post
object {
LDX_4_dash_4cylc_dot_dat_in_part
matrix <2.5,0,0,0,0,-13,0,-2.5,0,0,0,13>
}
// // Cuff
// // Flat part of Cuff
// // Cuff Intersect Lines
// // Cuff Ring
// // Hand
object {
LDX_2_dash_4cylo_dot_dat_in_part
matrix <-6,0,0,0,-10.64966,-2.75422,0,-1.5023,5.8089,0,4.502,-8.518>
}
// BFC INVERTNEXT
object {
LDX_2_dash_4cylo_dot_dat_in_part
matrix <-4,0,0,0,-10.64966,-2.75422,0,-1.0015,3.8726,0,4.502,-8.518>
}
object {
LDX_2_dash_4ring2_dot_dat_in_part
matrix <-2,0,0,0,-1,0,0,-0.5008,1.93629,0,4.502,-8.518>
}
object {
LDX_2_dash_4ring2_dot_dat_in_part
matrix <-2,0,0,0,1,0,0,-0.5008,1.93629,0,-6.1478,-11.2716>
}
// // Fingers A
object {
LDX_1_dash_4chrd_dot_dat_in_part
matrix <0,-1.45222,-0.37557,-1,0,0,0,0.37557,-1.45222,-3.5,-3.8845,-14.0324>
}
// // Fingers B
object {
LDX_1_dash_4chrd_dot_dat_in_part
matrix <0,-1.45222,-0.37557,1,0,0,0,0.37557,-1.45222,3.5,-3.8845,-14.0324>
}
mesh2 {
vertex_vectors {
105,
<-6,-6.14766,-11.27222>, <-6,4.502,-8.518>, <-5.6195,4.6128,-10.4658>, <-5.5434,-5.5729,-13.4946>,
<-5.5434,4.4609,-10.9004>, <-4.9134,-5.3367,-14.4079>, <-4.7152,3.9694,-12.3076>, <-4.5298,-5.0825,-14.9351>,
<-4.2426,-4.6969,-15.2792>, <-4.2426,3.122,-13.2571>, <-4,-6.1479,-11.2716>, <-4,4.502,-8.518>,
<-3.696,-5.7641,-12.7544>, <-3.6956,4.5906,-10.0763>, <-3.6787,2.6705,-13.7632>, <-3.6708,-4.0933,-15.5178>,
<-3.5,-5.691,-13.0376>, <-3.5,-5.3367,-14.4079>, <-3.5,-5.0825,-14.9351>, <-3.5,-4.6459,-15.3248>,
<-3.5,-4.0933,-15.5178>, <-3.5,-3.5089,-15.4846>, <-3.5,2.119,-14.0291>, <-3.5,2.6705,-13.7632>,
<-3.5,3.9694,-12.3076>, <-3.5,4.6076,-10.3742>, <-3,0,-4.4423>, <-3,0,0>,
<-2.7717,-1.1481,-4.5817>, <-2.7717,-1.1481,0>, <-2.7717,1.1481,-3.9877>, <-2.7717,1.1481,0>,
<-2.6602,-1.3149,-4.5478>, <-2.5,0,0>, <-2.3098,-0.9567,0>, <-2.3098,0.9567,0>,
<-2.2962,-1.3762,-4.3124>, <-2.2962,1.8596,-3.4756>, <-2.2962,1.8596,0>, <-2.1213,-2.1213,-1.4641>,
<-2.1213,-2.1213,0>, <-2.1213,2.1212,-3.372>, <-2.1213,2.1213,0>, <-1.7678,-1.7678,0>,
<-1.7678,1.7677,0>, <-1.5546,-2.5,0>, <-1.1481,2.7717,-3.0039>, <-1.1481,2.7717,0>,
<-0.9567,-2.3098,0>, <-0.9567,2.3098,0>, <0,-2.5,0>, <0,-1.4914,-3.8706>,
<0,2.5,0>, <0,3,-2.7094>, <0,2.9999,0>, <0.9567,-2.3098,0>,
<0.9567,2.3098,0>, <1.1481,2.7717,-3.0039>, <1.1481,2.7717,0>, <1.5546,-2.5,0>,
<1.7678,-1.7678,0>, <1.7678,1.7677,0>, <2.1213,-2.1213,-1.4641>, <2.1213,-2.1213,0>,
<2.1213,2.1212,-3.372>, <2.1213,2.1213,0>, <2.2962,-1.3762,-4.3124>, <2.2962,1.8596,-3.4756>,
<2.2962,1.8596,0>, <2.3098,-0.9567,0>, <2.3098,0.9567,0>, <2.5,0,0>,
<2.6602,-1.3149,-4.5478>, <2.7717,-1.1481,-4.5817>, <2.7717,-1.1481,0>, <2.7717,1.1481,-3.9877>,
<2.7717,1.1481,0>, <3,0,-4.4423>, <3,0,0>, <3.5,-5.691,-13.0376>,
<3.5,-5.3367,-14.4079>, <3.5,-5.0825,-14.9351>, <3.5,-4.6459,-15.3248>, <3.5,-4.0933,-15.5178>,
<3.5,-3.5089,-15.4846>, <3.5,2.119,-14.0291>, <3.5,2.6705,-13.7632>, <3.5,3.9694,-12.3076>,
<3.5,4.6076,-10.3742>, <3.6708,-4.0933,-15.5178>, <3.6787,2.6705,-13.7632>, <3.696,-5.7641,-12.7544>,
<3.6956,4.5906,-10.0763>, <4,-6.1479,-11.2716>, <4,4.502,-8.518>, <4.2426,-4.6969,-15.2792>,
<4.2426,3.122,-13.2571>, <4.5298,-5.0825,-14.9351>, <4.7152,3.9694,-12.3076>, <4.9134,-5.3367,-14.4079>,
<5.5434,-5.5729,-13.4946>, <5.5434,4.4609,-10.9004>, <5.6195,4.6128,-10.4658>, <5.99998,-6.14771,-11.27154>,
<6,4.502,-8.518>
}
normal_vectors {
79,
<-1,0,0>, <-1,0,0>, <-0.980796,-0.048856,0.188818>, <-0.980833,0.048801,-0.188641>,
<-0.947214,0.080295,-0.310385>, <-0.923874,-0.382697,0>, <-0.923873,0.382698,0>, <-0.896542,-0.110904,0.428851>,
<-0.896381,0.111016,-0.429159>, <-0.831539,-0.139689,0.537615>, <-0.831421,-0.555644,0>, <-0.831476,-0.139383,0.537791>,
<-0.830721,0.139384,-0.538957>, <-0.831064,0.139275,-0.538457>, <-0.831356,0.55574,0.000042>, <-0.773679,-0.158936,0.613319>,
<-0.707126,-0.707087,0.000013>, <-0.707133,-0.176986,0.684572>, <-0.707093,0.70712,0>, <-0.555727,-0.208147,0.804887>,
<-0.555614,0.83144,0>, <-0.555379,-0.208219,0.805108>, <-0.382698,-0.923873,0>, <-0.017595,0.511792,0.858929>,
<-0.015693,-0.945722,0.324599>, <-0.011689,0.207668,0.97813>, <-0.01171,0.452415,0.891731>, <-0.008386,-0.990424,0.137805>,
<-0.007953,-0.973257,0.229583>, <-0.005066,-0.897115,0.441768>, <0,-1,-0.000037>, <0.000013,-0.998376,-0.056966>,
<0,-0.865957,0.500118>, <0,-0.746081,0.665855>, <0,-0.601791,0.798654>, <0,-0.434298,0.90077>,
<0,-0.056719,0.99839>, <0,0,-1>, <0,0.139179,0.990267>, <0.000048,0.798635,0.601815>,
<0,0.938967,0.344006>, <-0.000774,0.967434,0.253123>, <0,0.968138,0.250416>, <-0.000941,0.967663,0.252245>,
<-0.00093,0.967511,0.252826>, <0.000774,0.967434,0.253123>, <0.000941,0.967663,0.252245>, <0.00093,0.967511,0.252826>,
<0.005066,-0.897115,0.441768>, <0.008386,-0.990424,0.137805>, <0.007953,-0.973257,0.229583>, <0.011689,0.207668,0.97813>,
<0.01171,0.452415,0.891731>, <0.015693,-0.945722,0.324599>, <0.017595,0.511792,0.858929>, <0.382698,-0.923873,0>,
<0.555378,-0.208219,0.805109>, <0.555553,-0.208183,0.804998>, <0.555614,0.83144,0>, <0.707126,-0.707087,0.000013>,
<0.707093,0.70712,0>, <0.75241,-0.165113,0.637665>, <0.831421,-0.555644,0>, <0.831467,-0.139001,0.537905>,
<0.830721,0.139384,-0.538957>, <0.831064,0.139275,-0.538457>, <0.831356,0.55574,0.000043>, <0.831601,-0.140662,0.537265>,
<0.831583,-0.140144,0.537429>, <0.87206,-0.122964,0.473699>, <0.896381,0.111016,-0.429159>, <0.923874,-0.382697,0>,
<0.923878,-0.09581,0.370499>, <0.923873,0.382698,0>, <0.947214,0.080295,-0.310385>, <0.980796,-0.048856,0.188818>,
<0.980833,0.048801,-0.188641>, <1,0,0>, <1,0,0>
}
face_indices {
156,
<63, 59, 62>, <73, 74, 63>, <73, 63, 62>, <72, 73, 62>,
<77, 78, 74>, <77, 74, 73>, <75, 76, 78>, <75, 78, 77>,
<67, 68, 76>, <67, 76, 75>, <65, 68, 67>, <65, 67, 64>,
<57, 58, 65>, <57, 65, 64>, <53, 54, 58>, <53, 58, 57>,
<39, 45, 40>, <40, 29, 28>, <40, 28, 39>, <39, 28, 32>,
<29, 27, 26>, <29, 26, 28>, <27, 31, 30>, <27, 30, 26>,
<31, 38, 37>, <31, 37, 30>, <37, 38, 42>, <37, 42, 41>,
<42, 47, 46>, <42, 46, 41>, <47, 54, 53>, <47, 53, 46>,
<45, 39, 50>, <59, 50, 62>, <50, 39, 36>, <50, 36, 51>,
<39, 32, 36>, <66, 62, 50>, <66, 50, 51>, <66, 72, 62>,
<50, 48, 45>, <59, 55, 50>, <71, 69, 74>, <71, 74, 78>,
<69, 60, 63>, <69, 63, 74>, <60, 55, 59>, <60, 59, 63>,
<48, 43, 40>, <48, 40, 45>, <43, 34, 29>, <43, 29, 40>,
<34, 33, 27>, <34, 27, 29>, <33, 35, 31>, <33, 31, 27>,
<35, 44, 42>, <35, 42, 31>, <44, 49, 47>, <44, 47, 42>,
<49, 52, 54>, <49, 54, 47>, <52, 56, 58>, <52, 58, 54>,
<56, 61, 65>, <56, 65, 58>, <61, 70, 76>, <61, 76, 65>,
<70, 71, 78>, <70, 78, 76>, <2, 4, 1>, <0, 1, 4>,
<0, 4, 3>, <7, 5, 3>, <7, 3, 8>, <9, 8, 3>,
<9, 3, 4>, <6, 9, 4>, <9, 14, 15>, <9, 15, 8>,
<14, 22, 21>, <14, 21, 15>, <19, 8, 15>, <15, 20, 19>,
<15, 21, 20>, <7, 8, 19>, <7, 19, 18>, <17, 5, 7>,
<17, 7, 18>, <3, 5, 17>, <3, 17, 16>, <10, 0, 3>,
<10, 3, 12>, <16, 12, 3>, <22, 14, 23>, <9, 6, 24>,
<14, 9, 24>, <14, 24, 23>, <25, 2, 13>, <1, 11, 13>,
<1, 13, 2>, <6, 4, 25>, <6, 25, 24>, <2, 25, 4>,
<13, 11, 10>, <13, 10, 12>, <25, 13, 12>, <25, 12, 16>,
<25, 16, 17>, <25, 17, 24>, <23, 24, 22>, <17, 21, 22>,
<17, 22, 24>, <101, 102, 104>, <104, 103, 100>, <104, 100, 101>,
<99, 97, 95>, <99, 95, 100>, <96, 98, 101>, <95, 96, 101>,
<95, 101, 100>, <89, 90, 96>, <89, 96, 95>, <84, 85, 90>,
<84, 90, 89>, <89, 95, 82>, <82, 83, 89>, <84, 89, 83>,
<82, 95, 97>, <82, 97, 81>, <97, 99, 80>, <97, 80, 81>,
<80, 99, 100>, <80, 100, 79>, <100, 103, 93>, <100, 93, 91>,
<91, 79, 100>, <90, 85, 86>, <98, 96, 87>, <87, 96, 90>,
<87, 90, 86>, <102, 88, 92>, <92, 94, 104>, <92, 104, 102>,
<88, 101, 98>, <88, 98, 87>, <88, 102, 101>, <93, 94, 92>,
<93, 92, 91>, <91, 92, 88>, <91, 88, 79>, <80, 79, 88>,
<80, 88, 87>, <87, 86, 85>, <85, 84, 80>, <85, 80, 87>
}
normal_indices {
156,
<18, 20, 18>, <6, 6, 18>, <6, 18, 18>, <14, 6, 18>,
<1, 1, 6>, <1, 6, 6>, <5, 5, 1>, <5, 1, 1>,
<10, 10, 5>, <10, 5, 5>, <16, 10, 10>, <16, 10, 16>,
<22, 22, 16>, <22, 16, 16>, <30, 30, 22>, <30, 22, 22>,
<60, 58, 60>, <60, 73, 73>, <60, 73, 60>, <60, 73, 66>,
<73, 78, 78>, <73, 78, 73>, <78, 71, 71>, <78, 71, 78>,
<71, 62, 62>, <71, 62, 71>, <62, 62, 59>, <62, 59, 59>,
<59, 55, 55>, <59, 55, 59>, <55, 30, 30>, <55, 30, 55>,
<42, 43, 43>, <42, 43, 46>, <43, 43, 44>, <43, 44, 43>,
<43, 41, 44>, <47, 46, 43>, <47, 43, 43>, <47, 45, 46>,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <37, 37, 37>, <37, 37, 37>,
<37, 37, 37>, <37, 37, 37>, <75, 72, 75>, <75, 75, 72>,
<75, 72, 69>, <68, 67, 69>, <68, 69, 61>, <61, 61, 69>,
<61, 69, 72>, <63, 61, 72>, <61, 57, 57>, <61, 57, 61>,
<57, 56, 57>, <57, 57, 57>, <52, 54, 51>, <51, 38, 52>,
<51, 36, 38>, <39, 54, 52>, <39, 52, 39>, <40, 40, 39>,
<40, 39, 39>, <42, 40, 40>, <42, 40, 42>, <42, 42, 42>,
<42, 42, 42>, <42, 42, 42>, <35, 34, 34>, <33, 29, 32>,
<34, 33, 32>, <34, 32, 34>, <28, 27, 31>, <31, 31, 31>,
<31, 31, 27>, <29, 24, 28>, <29, 28, 32>, <27, 28, 24>,
<4, 3, 3>, <4, 3, 8>, <13, 4, 8>, <13, 8, 12>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <7, 2, 2>, <2, 2, 7>, <2, 7, 7>,
<9, 11, 15>, <9, 15, 7>, <17, 11, 7>, <15, 17, 7>,
<15, 7, 7>, <19, 19, 17>, <19, 17, 15>, <19, 21, 19>,
<19, 19, 19>, <25, 23, 26>, <26, 38, 25>, <36, 25, 38>,
<26, 23, 39>, <26, 39, 39>, <39, 40, 40>, <39, 40, 39>,
<40, 40, 42>, <40, 42, 42>, <42, 42, 42>, <42, 42, 42>,
<42, 42, 42>, <34, 35, 34>, <48, 33, 32>, <32, 33, 34>,
<32, 34, 34>, <49, 50, 31>, <31, 31, 31>, <31, 31, 49>,
<50, 53, 48>, <50, 48, 32>, <50, 49, 53>, <76, 76, 74>,
<76, 74, 70>, <70, 74, 65>, <70, 65, 64>, <77, 77, 77>,
<77, 77, 77>, <77, 77, 77>, <77, 77, 77>, <77, 77, 77>
}
}
}
#end
#declare LDX_stud4_dot_dat_in_part = union {
// Stud Tube Open
// Name: stud4.dat
// Author: James Jessiman
// !LDRAW_ORG Primitive UPDATE 2009-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 1999-07-05 [PTadmin] Official Update 1999-05
// !HISTORY 2002-04-04 [sbliss] Modified for BFC compliance
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2009-06-21 [cwdee] Update ring references to 4-4ring
// !HISTORY 2009-09-03 [PTadmin] Official Update 2009-02
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <6,0,0,0,4,0,0,0,6,0,-4,0>
}
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <8,0,0,0,4,0,0,0,8,0,-4,0>
}
object {
LDX_4_dash_4ring3_dot_dat_in_part
matrix <2,0,0,0,1,0,0,0,2,0,-4,0>
}
}
#declare LDX_1_dash_8sphe_dot_dat_in_part = sphere // Sphere .125
{
<0,0,0>,1
clipped_by
{
box
{
<0,0,0>,<2,2,2>
}
}
}
#declare LDX_1_dash_8sphe_dot_dat = sphere // Sphere .125
{
<0,0,0>,1
clipped_by
{
box
{
<0,0,0>,<2,2,2>
}
}
}
#declare LDX_4_dash_8sphe_dot_dat_in_part = union {
// Sphere 0.5
// Name: 4-8sphe.dat
// Author: James Jessiman
// !LDRAW_ORG Primitive UPDATE 2003-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2002-08-31 [izanette] Modified with WINDZ for BFC compliance
// !HISTORY 2003-08-01 [PTadmin] Official Update 2003-02
// !HISTORY 2007-06-24 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
object {
LDX_1_dash_8sphe_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_1_dash_8sphe_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,-1,0,0,0>
}
object {
LDX_1_dash_8sphe_dot_dat_in_part
matrix <-1,0,0,0,1,0,0,0,1,0,0,0>
}
object {
LDX_1_dash_8sphe_dot_dat_in_part
matrix <-1,0,0,0,1,0,0,0,-1,0,0,0>
}
}
#declare LDX_4_dash_4con2_dot_dat_in_part = cone // Cone 1
{
<0,0,0>,3,<0,1,0>,2 open
}
#declare LDX_4_dash_4con2_dot_dat = cone // Cone 1
{
<0,0,0>,3,<0,1,0>,2 open
}
#declare LDX_s_slash_2446s01_dot_dat_in_part = union {
// ~Minifig Helmet Modern Structure
// Name: s\2446s01.dat
// Author: Philippe Hurbain [Philo]
// !LDRAW_ORG Subpart UPDATE 2014-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CCW
// !HISTORY 2014-12-02 [Philo] Subparted from 2446 design
// !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
#if (LDXStuds)
object {
LDX_stud4_dot_dat_in_part
matrix <1,0,0,0,-1,0,0,0,1,0,-4,0>
}
#end // LDXStuds
object {
LDX_4_dash_4disc_dot_dat_in_part
matrix <8.66667,0,0,0,-1,0,0,0,8.66667,0,-4,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyli_dot_dat_in_part
matrix <13,0,0,0,2.5,0,0,0,13,0,3,0>
}
// BFC INVERTNEXT
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <13,0,0,0,15,0,0,0,13,0,5.5,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4cyls_dot_dat_in_part
matrix <0,0,13,0,2,0,-13,0,0,0,20.5,0>
}
// BFC INVERTNEXT
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <13,0,0,0,-3.524,0,0,0,-13,0,20.5,0>
}
// BFC INVERTNEXT
object {
LDX_1_dash_4cyls_dot_dat_in_part
matrix <0,0,-13,0,-5.54,0,-13,0,0,0,16.976,0>
}
// BFC INVERTNEXT
object {
LDX_1_dash_4cyls_dot_dat_in_part
matrix <0,0,-13,0,-5.54,0,13,0,0,0,16.976,0>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,1.5,0,-1,0,0,0,0,1.5,14.5,6.5,0>
}
object {
LDX_4_dash_4ndis_dot_dat_in_part
matrix <0,-1.5,0,1,0,0,0,0,1.5,-14.5,6.5,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_8sphe_dot_dat_in_part
matrix <0,1.5,0,-1,0,0,0,0,1.5,14.5,6.5,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_8sphe_dot_dat_in_part
matrix <0,-1.5,0,1,0,0,0,0,1.5,-14.5,6.5,0>
}
// BFC INVERTNEXT
object {
LDX_4_dash_4con2_dot_dat_in_part
matrix <4.33333,0,0,0,-7,0,0,0,4.33333,0,3,0>
}
}
#declare LDX_2446_dot_dat =
#if (LDXQual = 0)
box {
<-15.8,-9.5,-18.5>,<15.8,25.115421,16>
}
#else
union {
// Minifig Helmet Modern
// Name: 2446.dat
// Author: Chris Dee [cwdee]
// !LDRAW_ORG Part UPDATE 2014-02
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !CATEGORY Minifig Headwear
// !KEYWORDS motorcycle helmet, police helmet, space helmet, full face, crash helmet
// !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
// !HISTORY 2002-04-25 [PTadmin] Official Update 2002-02
// !HISTORY 2003-01-25 [technog] BFC'd, closed gaps, corrected coplanarity
// !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
// !HISTORY 2005-08-29 [DeannaEarley] Removed erroneous BFC Certifys
// !HISTORY 2005-12-28 [PTadmin] Official Update 2005-01
// !HISTORY 2007-05-12 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2012-12-24 [cwdee] Add category
// !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
// !HISTORY 2014-12-02 [Philo] Minor shape improvement, added missing condlines, subparted for patterns
// !HISTORY 2014-12-23 [PTadmin] Official Update 2014-02
object {
LDX_s_slash_2446s01_dot_dat_in_part
matrix <1,0,0,0,1,0,0,0,1,0,0,0>
}
mesh2 {
vertex_vectors {
191,
<-15.8,10.657,1.722>, <-15.7,9.682,3.182>, <-15.6,8.222,4.157>, <-15.5,13.996,-6.01>,
<-15.5,14.017,-6.01>, <-15.4,6.5,4.5>, <-15.1,4.778,4.157>, <-14.783,6.5,6.12>,
<-14.5,0.377,2.5>, <-14.5,4.5,-6>, <-14.5,4.778,4.157>, <-14.5,5,-1.5>,
<-14.5,5,1.5>, <-14.5,5.881,-6.087>, <-14.5,6.5,1.5>, <-14.5,6.5,4.5>,
<-14.5,6.623,-4.975>, <-14.5,6.96,-4.46>, <-14.5,8,-1.5>, <-14.5,8,0>,
<-14.5,8,1.5>, <-14.5,8.222,4.157>, <-14.5,8.59,-3.38>, <-14.5,9.682,3.182>,
<-14.5,10.5,-3>, <-14.5,10.657,1.722>, <-14.5,13.36,-4.5>, <-14.5,22.730801,-1.5>,
<-14.119,12.623,5.848>, <-13.8,5.5,-8>, <-13.656,0.377,5.657>, <-13.566,0.377,-5.9>,
<-13.3966,21.818199,4.4319>, <-13.3966,23.6434,-7.4319>, <-13,5.5,0>, <-13,11.44,0>,
<-13,22.5,0>, <-12.4,10.5,-3>, <-12.324,8.59,-3.38>, <-12.112,6.96,-4.46>,
<-12.112,13.36,-4.5>, <-12.0107,21.7346,4.9751>, <-12.0107,23.2654,-4.9751>, <-12.01,5.5,-4.975>,
<-12.01,6.623,-4.975>, <-12.01,13.568,-4.975>, <-11.7,16.795,-12.6>, <-11.314,-4.814,0>,
<-11.313,6.5,11.313>, <-11.2673,5.881,-6.087>, <-11.031,5.5,-12.2>, <-10.806,12.623,10.806>,
<-10.61,0.377,-11.315>, <-10.532,-4.814,-4.822>, <-10.452,-4.814,4.33>, <-10.452,0.377,10.452>,
<-10.253,21.0446,9.4601>, <-10.253,24.417,-12.4601>, <-9.989,5.5,-8>, <-9.1923,21.0858,9.1923>,
<-9.1923,23.9142,-9.1923>, <-9.191,5.5,-9.191>, <-9.191,15.344,-9.191>, <-8.142,-4.814,-9.2>,
<-8,-4.814,8>, <-6.31,18.663,-16.969999>, <-6.123,-8.282,0>, <-6.12,6.5,14.783>,
<-5.848,12.623,14.119>, <-5.747,5.5,-15.6>, <-5.74,5.5,-15.6>, <-5.657,-8.282,-2.87>,
<-5.657,-8.282,2.343>, <-5.657,0.377,13.656>, <-5.5492,20.5277,12.8204>, <-5.5492,24.933901,-15.8204>,
<-5.357,0.377,-14.695>, <-4.975,5.5,-12.01>, <-4.975,16.549999,-12.01>, <-4.9751,20.652201,12.0107>,
<-4.9751,24.347799,-12.0107>, <-4.35,-4.814,-11.64>, <-4.33,-8.282,-5.3>, <-4.33,-8.282,4.33>,
<-4.33,-4.814,10.452>, <-2.343,-8.282,-6.929>, <-2.343,-8.282,5.657>, <0,-9.5,0>,
<0,-8.282,-7.5>, <0,-8.282,6.123>, <0,-4.814,-12.7>, <0,-4.814,11.313>,
<0,0.377,-16>, <0,0.377,14.781>, <0,5.5,-17>, <0,5.5,-13>,
<0,6.5,16>, <0,12.623,15.282>, <0,16.976,-13>, <0,19.321699,-18.5>,
<0,20.346201,14>, <0,20.5,13>, <0,24.5,-13>, <0,25.1154,-17>,
<2.343,-8.282,-6.929>, <2.343,-8.282,5.657>, <4.33,-8.282,-5.3>, <4.33,-8.282,4.33>,
<4.33,-4.814,10.452>, <4.35,-4.814,-11.64>, <4.975,5.5,-12.01>, <4.975,16.549999,-12.01>,
<4.9751,20.652201,12.0107>, <4.9751,24.347799,-12.0107>, <5.357,0.377,-14.695>, <5.5492,20.5277,12.8204>,
<5.5492,24.933901,-15.8204>, <5.657,-8.282,-2.87>, <5.657,-8.282,2.343>, <5.657,0.377,13.656>,
<5.74,5.5,-15.6>, <5.747,5.5,-15.6>, <5.848,12.623,14.119>, <6.12,6.5,14.783>,
<6.123,-8.282,0>, <6.31,18.663,-16.969999>, <8,-4.814,8>, <8.142,-4.814,-9.2>,
<9.191,5.5,-9.191>, <9.191,15.344,-9.191>, <9.1923,21.0858,9.1923>, <9.1923,23.9142,-9.1923>,
<9.989,5.5,-8>, <10.253,21.0446,9.4601>, <10.253,24.417,-12.4601>, <10.452,-4.814,4.33>,
<10.452,0.377,10.452>, <10.532,-4.814,-4.822>, <10.61,0.377,-11.315>, <10.806,12.623,10.806>,
<11.031,5.5,-12.2>, <11.2673,5.881,-6.087>, <11.313,6.5,11.313>, <11.314,-4.814,0>,
<11.7,16.795,-12.6>, <12.01,5.5,-4.975>, <12.01,6.623,-4.975>, <12.01,13.568,-4.975>,
<12.0107,21.7346,4.9751>, <12.0107,23.2654,-4.9751>, <12.112,6.96,-4.46>, <12.112,13.36,-4.5>,
<12.324,8.59,-3.38>, <12.4,10.5,-3>, <13,5.5,0>, <13,11.44,0>,
<13,22.5,0>, <13.3966,21.818199,4.4319>, <13.3966,23.6434,-7.4319>, <13.566,0.377,-5.9>,
<13.656,0.377,5.657>, <13.8,5.5,-8>, <14.119,12.623,5.848>, <14.5,0.377,2.5>,
<14.5,4.5,-6>, <14.5,4.778,4.157>, <14.5,5,-1.5>, <14.5,5,1.5>,
<14.5,5.881,-6.087>, <14.5,6.5,1.5>, <14.5,6.5,4.5>, <14.5,6.623,-4.975>,
<14.5,6.96,-4.46>, <14.5,8,-1.5>, <14.5,8,0>, <14.5,8,1.5>,
<14.5,8.222,4.157>, <14.5,8.59,-3.38>, <14.5,9.682,3.182>, <14.5,10.5,-3>,
<14.5,10.657,1.722>, <14.5,13.36,-4.5>, <14.5,22.730801,-1.5>, <14.783,6.5,6.12>,
<15.1,4.778,4.157>, <15.4,6.5,4.5>, <15.5,13.996,-6.01>, <15.5,14.017,-6.01>,
<15.6,8.222,4.157>, <15.7,9.682,3.182>, <15.8,10.657,1.722>
}
normal_vectors {
173,
<-1,0,0>, <-0.987843,-0.154074,-0.020688>, <-0.980787,-0.003535,-0.19505>, <-0.980686,-0.001767,-0.195583>,
<-0.980731,0.000608,-0.195361>, <-0.968546,-0.115915,-0.220187>, <-0.968546,0.115915,0.220187>, <-0.968408,-0.144175,0.203468>,
<-0.965729,-0.168173,-0.197699>, <-0.950082,-0.305593,0.062903>, <-0.950082,0.305593,-0.062903>, <-0.940257,-0.021406,-0.339793>,
<-0.940257,0.021406,0.339793>, <-0.926593,-0.224864,-0.301432>, <-0.927134,-0.215414,0.306626>, <-0.927134,0.215414,-0.306626>,
<-0.926187,0.133207,-0.352751>, <-0.923974,-0.000043,-0.382454>, <-0.921518,-0.145121,-0.3602>, <-0.915126,-0.084324,-0.394251>,
<-0.912351,-0.16375,0.375234>, <-0.896051,-0.071412,0.438169>, <-0.896051,0.071412,-0.438169>, <-0.885365,0.157478,0.437412>,
<-0.884022,-0.37506,-0.27899>, <-0.884022,0.37506,0.27899>, <-0.882057,-0.157022,-0.444207>, <-0.882057,0.157022,0.444207>,
<-0.878785,-0.152166,-0.452309>, <-0.860244,-0.351382,0.369473>, <-0.860244,0.351382,-0.369473>, <-0.8315,-0.000492,-0.555524>,
<-0.831539,-0.000246,-0.555466>, <-0.804411,-0.146186,0.575806>, <-0.786983,-0.616902,0.009483>, <-0.786983,0.616902,-0.009483>,
<-0.749235,-0.154671,-0.64399>, <-0.747039,-0.369169,-0.552853>, <-0.747039,0.369169,0.552853>, <-0.706545,-0.039892,0.706543>,
<-0.706545,0.039892,-0.706543>, <-0.704407,-0.176547,0.68749>, <-0.6923,-0.177711,-0.699385>, <-0.6923,0.177711,0.699385>,
<-0.688163,-0.662608,0.295606>, <-0.688163,0.662608,-0.295606>, <-0.678228,-0.697213,-0.232163>, <-0.678228,0.697213,0.232163>,
<-0.6742,-0.140964,-0.724972>, <-0.6742,0.140964,0.724972>, <-0.665391,-0.419242,0.61765>, <-0.665391,0.419242,-0.61765>,
<-0.553267,-0.828146,-0.089834>, <-0.553267,0.828146,0.089834>, <-0.53162,-0.186416,-0.826213>, <-0.53162,0.186416,0.826213>,
<-0.505445,-0.189028,0.841899>, <-0.499676,-0.707593,0.499635>, <-0.499676,0.707593,-0.499635>, <-0.486629,-0.733547,-0.474449>,
<-0.486629,0.733547,0.474449>, <-0.44395,-0.165524,-0.88063>, <-0.387245,-0.188896,-0.902419>, <-0.387245,0.188896,0.902419>,
<-0.382256,-0.92403,0.006929>, <-0.382365,-0.039909,0.923149>, <-0.382365,0.039909,-0.923149>, <-0.382256,0.92403,-0.006929>,
<-0.357718,-0.925829,-0.121976>, <-0.357718,0.925829,0.121976>, <-0.353861,-0.225014,0.907828>, <-0.353135,-0.924075,0.146221>,
<-0.353457,-0.383154,0.853382>, <-0.353457,0.383154,-0.853382>, <-0.353135,0.924075,-0.146221>, <-0.343603,-0.144804,-0.927884>,
<-0.343603,0.144804,0.927884>, <-0.335149,-0.398282,-0.853842>, <-0.335149,0.398282,0.853842>, <-0.284812,-0.692452,-0.662867>,
<-0.284812,0.692452,0.662867>, <-0.282138,-0.930915,-0.23194>, <-0.282138,0.930915,0.23194>, <-0.270241,-0.92409,0.270236>,
<-0.270344,-0.70761,0.652841>, <-0.270344,0.70761,-0.652841>, <-0.270241,0.92409,-0.270236>, <-0.232539,-0.186331,-0.954571>,
<-0.232539,0.186331,0.954571>, <-0.220637,-0.361954,-0.905709>, <-0.220637,0.361954,0.905709>, <-0.190969,-0.914683,-0.356209>,
<-0.190969,0.914683,0.356209>, <-0.146212,-0.924081,0.353124>, <-0.146212,0.924081,-0.353124>, <0,-1,0>,
<0,-0.999932,0.011669>, <0,-0.99786,0.06539>, <0,-0.995173,0.098137>, <-0.000019,-0.988382,-0.151988>,
<0,-0.930989,-0.365046>, <0,-0.924076,0.382209>, <0,-0.923954,0.382504>, <0,-0.834303,0.551306>,
<0,-0.709128,0.70508>, <0,-0.707597,0.706616>, <0,-0.648228,-0.761447>, <0,-0.383204,0.923663>,
<0,-0.380907,0.924613>, <0,-0.352358,0.935865>, <0,-0.274771,0.96151>, <0,-0.250638,0.968081>,
<0,-0.230786,0.973005>, <0,-0.195129,0.980778>, <0,-0.16668,-0.986011>, <0,-0.140152,-0.99013>,
<0,-0.012669,-0.99992>, <0,0,1>, <0,0.012669,0.99992>, <0,0.140152,0.99013>,
<0,0.274771,-0.96151>, <0,0.352358,-0.935865>, <0,0.383204,-0.923663>, <0,0.382687,0.923878>,
<0,0.46447,0.885589>, <0,0.648228,0.761447>, <0,0.707107,0.707107>, <0,0.707597,-0.706616>,
<0,0.877913,0.47882>, <-0.000237,0.891814,0.452402>, <0,0.916024,0.401123>, <-0.000354,0.917162,0.398513>,
<0.000166,0.916691,0.399596>, <-0.000843,0.918053,0.396457>, <-0.00091,0.91851,0.395397>, <-0.001012,0.920387,0.391007>,
<-0.000101,0.919837,0.392302>, <0,0.924076,-0.382209>, <0,0.930989,0.365046>, <0,0.999932,-0.011669>,
<0.000521,0.916536,0.399953>, <0.001265,0.918414,0.395618>, <0.00081,0.917935,0.39673>, <0.000987,0.920381,0.391023>,
<0.00094,0.919905,0.39214>, <0.343603,-0.144804,-0.927884>, <0.353861,-0.225014,0.907828>, <0.44395,-0.165524,-0.88063>,
<0.505445,-0.189028,0.841899>, <0.6742,-0.140964,-0.724972>, <0.704407,-0.176547,0.68749>, <0.749235,-0.154671,-0.64399>,
<0.804411,-0.146186,0.575806>, <0.8315,-0.000492,-0.555524>, <0.831539,-0.000246,-0.555466>, <0.885365,-0.157478,-0.437412>,
<0.896051,0.071412,-0.438169>, <0.896563,-0.000167,-0.442916>, <0.912351,-0.16375,0.375234>, <0.915126,-0.084324,-0.394251>,
<0.921518,-0.145121,-0.3602>, <0.926187,0.133207,-0.352751>, <0.926593,-0.224864,-0.301432>, <0.927134,0.215414,-0.306626>,
<0.947201,0.000354,-0.320639>, <0.965729,-0.168173,-0.197699>, <0.968408,-0.144175,0.203468>, <0.980787,-0.003535,-0.19505>,
<0.980686,-0.001767,-0.195583>, <0.980722,0.000348,-0.195409>, <0.980814,0.001043,-0.194942>, <0.987843,-0.154074,-0.020688>,
<1,0,0>
}
face_indices {
326,
<141, 132, 145>, <145, 146, 141>, <154, 150, 146>, <154, 146, 145>,
<154, 152, 150>, <154, 155, 153>, <154, 153, 152>, <151, 153, 155>,
<49, 43, 58>, <44, 43, 49>, <39, 34, 43>, <39, 43, 44>,
<34, 39, 38>, <35, 34, 38>, <35, 38, 37>, <40, 35, 37>,
<184, 185, 183>, <5, 6, 7>, <189, 190, 162>, <188, 189, 162>,
<185, 188, 183>, <188, 162, 183>, <2, 7, 28>, <2, 5, 7>,
<1, 2, 28>, <0, 1, 28>, <190, 186, 182>, <182, 186, 158>,
<158, 186, 144>, <158, 144, 134>, <134, 144, 125>, <134, 125, 116>,
<116, 125, 99>, <116, 99, 103>, <75, 103, 99>, <65, 75, 99>,
<65, 57, 75>, <46, 57, 65>, <46, 33, 57>, <3, 33, 46>,
<3, 27, 33>, <0, 27, 3>, <32, 27, 0>, <28, 32, 0>,
<56, 32, 28>, <56, 28, 51>, <51, 74, 56>, <68, 74, 51>,
<100, 74, 68>, <100, 68, 97>, <100, 97, 122>, <100, 122, 115>,
<115, 122, 139>, <115, 139, 133>, <133, 139, 162>, <133, 162, 157>,
<157, 162, 190>, <157, 190, 182>, <170, 185, 184>, <170, 184, 165>,
<176, 188, 185>, <176, 185, 170>, <178, 189, 188>, <178, 188, 176>,
<180, 190, 189>, <180, 189, 178>, <181, 187, 190>, <181, 190, 180>,
<4, 26, 25>, <4, 25, 0>, <0, 25, 23>, <0, 23, 1>,
<1, 23, 21>, <1, 21, 2>, <2, 21, 15>, <2, 15, 5>,
<5, 15, 10>, <5, 10, 6>, <181, 180, 174>, <181, 174, 179>,
<179, 174, 173>, <179, 173, 177>, <177, 173, 166>, <177, 166, 172>,
<176, 170, 165>, <176, 165, 169>, <175, 178, 176>, <175, 176, 169>,
<174, 180, 178>, <174, 178, 175>, <20, 23, 25>, <20, 25, 19>,
<14, 21, 23>, <14, 23, 20>, <15, 21, 14>, <15, 14, 10>,
<17, 11, 18>, <17, 18, 22>, <22, 18, 19>, <22, 19, 24>,
<25, 26, 24>, <25, 24, 19>, <132, 141, 168>, <132, 168, 161>,
<141, 146, 171>, <141, 171, 168>, <172, 171, 146>, <172, 146, 150>,
<150, 152, 177>, <150, 177, 172>, <152, 153, 179>, <152, 179, 177>,
<153, 151, 181>, <153, 181, 179>, <29, 13, 49>, <29, 49, 58>,
<13, 16, 44>, <13, 44, 49>, <39, 44, 16>, <39, 16, 17>,
<17, 22, 38>, <17, 38, 39>, <22, 24, 37>, <22, 37, 38>,
<24, 26, 40>, <24, 40, 37>, <151, 147, 187>, <151, 187, 181>,
<147, 129, 144>, <147, 144, 187>, <129, 111, 125>, <129, 125, 144>,
<111, 98, 99>, <111, 99, 125>, <65, 99, 98>, <65, 98, 78>,
<78, 62, 46>, <78, 46, 65>, <62, 45, 4>, <62, 4, 46>,
<26, 4, 45>, <26, 45, 40>, <161, 140, 128>, <161, 128, 132>,
<110, 128, 140>, <110, 140, 120>, <120, 94, 95>, <120, 95, 110>,
<77, 95, 94>, <77, 94, 70>, <61, 77, 70>, <61, 70, 50>,
<58, 61, 50>, <58, 50, 29>, <79, 74, 100>, <79, 100, 101>,
<56, 74, 79>, <56, 79, 59>, <32, 56, 59>, <32, 59, 41>,
<27, 32, 41>, <27, 41, 36>, <33, 27, 36>, <33, 36, 42>,
<57, 33, 42>, <57, 42, 60>, <75, 57, 60>, <75, 60, 80>,
<103, 75, 80>, <103, 80, 102>, <113, 116, 103>, <113, 103, 102>,
<131, 134, 116>, <131, 116, 113>, <149, 158, 134>, <149, 134, 131>,
<156, 182, 158>, <156, 158, 149>, <148, 157, 182>, <148, 182, 156>,
<130, 133, 157>, <130, 157, 148>, <112, 115, 133>, <112, 133, 130>,
<100, 115, 112>, <100, 112, 101>, <118, 87, 124>, <107, 87, 118>,
<105, 87, 107>, <89, 87, 105>, <135, 118, 124>, <135, 124, 143>,
<126, 107, 118>, <126, 118, 135>, <108, 105, 107>, <108, 107, 126>,
<91, 89, 105>, <91, 105, 108>, <163, 160, 135>, <135, 143, 163>,
<136, 126, 135>, <136, 135, 160>, <119, 108, 126>, <119, 126, 136>,
<93, 91, 108>, <93, 108, 119>, <104, 87, 88>, <106, 87, 104>,
<117, 87, 106>, <124, 87, 117>, <109, 104, 88>, <109, 88, 90>,
<127, 104, 109>, <127, 106, 104>, <137, 117, 106>, <137, 106, 127>,
<143, 124, 117>, <143, 117, 137>, <114, 109, 90>, <114, 90, 92>,
<138, 127, 109>, <138, 109, 114>, <159, 137, 127>, <159, 127, 138>,
<137, 159, 143>, <159, 163, 143>, <121, 114, 92>, <121, 92, 94>,
<140, 138, 114>, <140, 114, 121>, <138, 140, 161>, <142, 136, 160>,
<142, 160, 183>, <123, 119, 136>, <123, 136, 142>, <96, 93, 119>,
<96, 119, 123>, <162, 139, 142>, <162, 142, 183>, <139, 122, 123>,
<139, 123, 142>, <122, 97, 96>, <122, 96, 123>, <163, 184, 160>,
<184, 183, 160>, <161, 159, 138>, <161, 164, 159>, <164, 163, 159>,
<164, 161, 168>, <165, 184, 163>, <168, 163, 164>, <168, 172, 166>,
<168, 166, 163>, <166, 167, 163>, <167, 169, 165>, <167, 165, 163>,
<72, 87, 66>, <83, 87, 72>, <86, 87, 83>, <89, 87, 86>,
<54, 72, 66>, <54, 66, 47>, <64, 83, 72>, <64, 72, 54>,
<84, 86, 83>, <84, 83, 64>, <91, 89, 86>, <91, 86, 84>,
<8, 30, 54>, <54, 47, 8>, <55, 64, 54>, <55, 54, 30>,
<73, 84, 64>, <73, 64, 55>, <93, 91, 84>, <93, 84, 73>,
<85, 87, 88>, <82, 87, 85>, <71, 87, 82>, <66, 87, 71>,
<81, 85, 88>, <81, 88, 90>, <63, 85, 81>, <63, 82, 85>,
<53, 71, 82>, <53, 82, 63>, <47, 66, 71>, <47, 71, 53>,
<76, 81, 90>, <76, 90, 92>, <52, 63, 81>, <52, 81, 76>,
<31, 53, 63>, <31, 63, 52>, <53, 31, 47>, <31, 8, 47>,
<69, 76, 92>, <69, 92, 94>, <50, 52, 76>, <50, 76, 69>,
<52, 50, 29>, <48, 55, 30>, <48, 30, 7>, <67, 73, 55>,
<67, 55, 48>, <96, 93, 73>, <96, 73, 67>, <28, 51, 48>,
<28, 48, 7>, <51, 68, 67>, <51, 67, 48>, <68, 97, 96>,
<68, 96, 67>, <8, 6, 30>, <6, 7, 30>, <29, 31, 52>,
<29, 9, 31>, <9, 8, 31>, <9, 29, 13>, <10, 6, 8>,
<13, 8, 9>, <13, 17, 11>, <13, 11, 8>, <11, 12, 8>,
<12, 14, 10>, <12, 10, 8>
}
normal_indices {
326,
<154, 153, 157>, <157, 164, 154>, <169, 170, 164>, <169, 164, 157>,
<169, 170, 170>, <169, 168, 168>, <169, 168, 170>, <167, 168, 168>,
<32, 17, 31>, <17, 17, 32>, <4, 4, 17>, <4, 17, 17>,
<4, 4, 4>, <3, 4, 4>, <3, 4, 3>, <2, 3, 3>,
<15, 16, 22>, <161, 163, 156>, <13, 8, 28>, <19, 13, 28>,
<16, 19, 22>, <19, 28, 22>, <159, 156, 155>, <159, 161, 156>,
<162, 159, 155>, <165, 162, 155>, <8, 7, 1>, <1, 7, 20>,
<20, 7, 33>, <20, 33, 41>, <41, 33, 56>, <41, 56, 70>,
<70, 56, 112>, <70, 112, 111>, <146, 111, 112>, <148, 146, 112>,
<148, 150, 146>, <152, 150, 148>, <152, 158, 150>, <166, 158, 152>,
<166, 171, 158>, <165, 171, 166>, <160, 171, 165>, <155, 160, 165>,
<151, 160, 155>, <151, 155, 149>, <149, 147, 151>, <145, 147, 149>,
<114, 147, 145>, <114, 145, 115>, <114, 115, 75>, <114, 75, 61>,
<61, 75, 48>, <61, 48, 36>, <36, 48, 28>, <36, 28, 18>,
<18, 28, 8>, <18, 8, 1>, <117, 117, 110>, <117, 110, 110>,
<123, 123, 117>, <123, 117, 117>, <126, 126, 123>, <126, 123, 123>,
<128, 129, 126>, <128, 126, 126>, <131, 133, 129>, <131, 129, 128>,
<141, 132, 129>, <141, 129, 128>, <128, 129, 126>, <128, 126, 126>,
<126, 126, 123>, <126, 123, 123>, <123, 123, 117>, <123, 117, 117>,
<117, 117, 110>, <117, 110, 110>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <172, 172, 172>, <172, 172, 172>,
<172, 172, 172>, <172, 172, 172>, <172, 172, 172>, <172, 172, 172>,
<172, 172, 172>, <172, 172, 172>, <172, 172, 172>, <172, 172, 172>,
<172, 172, 172>, <172, 172, 172>, <98, 102, 102>, <98, 102, 98>,
<102, 103, 103>, <102, 103, 102>, <104, 103, 103>, <104, 103, 104>,
<104, 108, 108>, <104, 108, 104>, <108, 113, 113>, <108, 113, 108>,
<124, 124, 124>, <124, 124, 124>, <98, 102, 102>, <98, 102, 97>,
<102, 103, 103>, <102, 103, 102>, <104, 103, 103>, <104, 103, 104>,
<104, 108, 108>, <104, 108, 104>, <108, 113, 113>, <108, 113, 108>,
<124, 124, 124>, <124, 124, 124>, <140, 134, 133>, <140, 133, 131>,
<134, 135, 135>, <134, 135, 133>, <135, 144, 144>, <135, 144, 135>,
<144, 136, 136>, <144, 136, 144>, <136, 136, 136>, <136, 136, 136>,
<136, 143, 143>, <136, 143, 136>, <143, 142, 141>, <143, 141, 143>,
<132, 141, 142>, <132, 142, 130>, <98, 95, 95>, <98, 95, 98>,
<95, 95, 95>, <95, 95, 95>, <95, 95, 95>, <95, 95, 95>,
<95, 95, 95>, <95, 95, 95>, <95, 95, 95>, <95, 95, 95>,
<97, 95, 95>, <97, 95, 98>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <99, 99, 99>, <99, 99, 99>,
<99, 99, 99>, <99, 99, 99>, <74, 139, 67>, <86, 139, 74>,
<94, 139, 86>, <137, 139, 94>, <45, 74, 67>, <45, 67, 35>,
<58, 86, 74>, <58, 74, 45>, <85, 94, 86>, <85, 86, 58>,
<127, 137, 94>, <127, 94, 85>, <10, 30, 45>, <45, 35, 10>,
<51, 58, 45>, <51, 45, 30>, <73, 85, 58>, <73, 58, 51>,
<122, 127, 85>, <122, 85, 73>, <92, 139, 138>, <82, 139, 92>,
<69, 139, 82>, <67, 139, 69>, <80, 92, 138>, <80, 138, 125>,
<60, 92, 80>, <60, 82, 92>, <47, 69, 82>, <47, 82, 60>,
<53, 67, 69>, <53, 69, 47>, <78, 80, 125>, <78, 125, 90>,
<38, 60, 80>, <38, 80, 78>, <25, 47, 60>, <25, 60, 38>,
<47, 25, 35>, <25, 10, 35>, <63, 78, 90>, <63, 90, 88>,
<43, 55, 78>, <43, 78, 63>, <38, 43, 27>, <40, 51, 30>,
<40, 30, 22>, <66, 73, 51>, <66, 51, 40>, <116, 122, 73>,
<116, 73, 66>, <28, 48, 40>, <28, 40, 22>, <48, 75, 66>,
<48, 66, 40>, <75, 115, 116>, <75, 116, 66>, <10, 15, 30>,
<15, 22, 30>, <27, 25, 38>, <27, 6, 25>, <6, 10, 25>,
<6, 27, 12>, <110, 110, 109>, <0, 10, 6>, <0, 0, 0>,
<0, 0, 10>, <0, 0, 10>, <0, 0, 0>, <0, 0, 0>,
<71, 96, 64>, <83, 96, 71>, <93, 96, 83>, <101, 96, 93>,
<44, 71, 64>, <44, 64, 34>, <57, 83, 71>, <57, 71, 44>,
<84, 93, 83>, <84, 83, 57>, <105, 101, 93>, <105, 93, 84>,
<9, 29, 44>, <44, 34, 9>, <50, 57, 44>, <50, 44, 29>,
<72, 84, 57>, <72, 57, 50>, <107, 105, 84>, <107, 84, 72>,
<91, 96, 100>, <81, 96, 91>, <68, 96, 81>, <64, 96, 68>,
<79, 91, 100>, <79, 100, 106>, <59, 91, 79>, <59, 81, 91>,
<46, 68, 81>, <46, 81, 59>, <52, 64, 68>, <52, 68, 46>,
<77, 79, 106>, <77, 106, 89>, <37, 59, 79>, <37, 79, 77>,
<24, 46, 59>, <24, 59, 37>, <46, 24, 34>, <24, 9, 34>,
<62, 77, 89>, <62, 89, 87>, <42, 54, 77>, <42, 77, 62>,
<37, 42, 26>, <39, 50, 29>, <39, 29, 21>, <65, 72, 50>,
<65, 50, 39>, <118, 107, 72>, <118, 72, 65>, <23, 49, 39>,
<23, 39, 21>, <49, 76, 65>, <49, 65, 39>, <76, 119, 118>,
<76, 118, 65>, <9, 14, 29>, <14, 21, 29>, <26, 24, 37>,
<26, 5, 24>, <5, 9, 24>, <5, 26, 11>, <120, 120, 121>,
<0, 9, 5>, <0, 0, 0>, <0, 0, 9>, <0, 0, 9>,
<0, 0, 0>, <0, 0, 0>
}
}
}
#end
#declare LDX_1_dash_8disc_dot_dat_in_part = disc // Disc 0.125
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.70710678118654746172,0,0.70710678118654757274>,0
}
}
}
#declare LDX_1_dash_8disc_dot_dat = disc // Disc 0.125
{
<0,0,0>,<0,1,0>,1
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.70710678118654746172,0,0.70710678118654757274>,0
}
}
}
#declare LDX_1_dash_4rin15_dot_dat_in_part = disc // Ring 0.25
{
<0,0,0>,<0,1,0>,16,15
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4rin15_dot_dat = disc // Ring 0.25
{
<0,0,0>,<0,1,0>,16,15
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4rin16_dot_dat_in_part = disc // Ring 0.25
{
<0,0,0>,<0,1,0>,17,16
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4rin16_dot_dat = disc // Ring 0.25
{
<0,0,0>,<0,1,0>,17,16
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-1,0,0>,0
}
}
}
#declare LDX_1_dash_4cyls2_dot_dat_in_part = cylinder // Sloped Cylinder2 0.25
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<1,0,0>,0
}
plane
{
<0,0,-1>,0
}
plane
{
<1,1,0>,0
}
}
}
#declare LDX_1_dash_4cyls2_dot_dat = cylinder // Sloped Cylinder2 0.25
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<1,0,0>,0
}
plane
{
<0,0,-1>,0
}
plane
{
<1,1,0>,0
}
}
}
#declare LDX_3_dash_16cyli_dot_dat_in_part = cylinder // Cylinder 0.1875
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.92387953251128673848,0,0.38268343236508983729>,0
}
}
}
#declare LDX_3_dash_16cyli_dot_dat = cylinder // Cylinder 0.1875
{
<0,0,0>,<0,1,0>,1 open
clipped_by
{
plane
{
<0,0,-1>,0
}
plane
{
<-0.92387953251128673848,0,0.38268343236508983729>,0
}
}
}
#declare LDX_2447_dot_dat =
#if (LDXQual = 0)
box {
<-17,2.5,-20>,<17,19.5,4>
}
#else
union {
// Minifig Helmet Visor
// Name: 2447.dat
// Author: Chris Dee [cwdee]
// !LDRAW_ORG Part UPDATE 2012-03
// !LICENSE Redistributable under CCAL version 2.0 : see CAreadme.txt
// BFC CERTIFY CW
// !CATEGORY Minifig Headwear
// !HISTORY 1998-10-15 [PTadmin] Official Update 1998-09
// !HISTORY 2000-08-30 [sbliss] Replaced polygons in lower section of visor with 2-4cyls2 and rings.
// !HISTORY 2000-09-30 [PTadmin] Official Update 2000-02
// !HISTORY 2002-06-11 [PTadmin] Official Update 2002-03
// !HISTORY 2003-02-01 [technog] BFC'd, repositioned to match helmet
// !HISTORY 2004-03-02 [PTadmin] Official Update 2004-01
// !HISTORY 2007-05-12 [PTadmin] Header formatted for Contributor Agreement
// !HISTORY 2008-07-01 [PTadmin] Official Update 2008-01
// !HISTORY 2008-07-07 [DeannaEarley] Removed erroneous BFC Certifies (2005-11-13)
// !HISTORY 2009-05-02 [PTadmin] Official Update 2009-01
// !HISTORY 2012-12-24 [cwdee] Add category
// !HISTORY 2012-12-28 [PTadmin] Official Update 2012-03
object {
LDX_1_dash_4disc_dot_dat_in_part
matrix <0,-4,0,-1,0,0,0,0,4,-15,6.5,0>
}
object {
LDX_1_dash_8disc_dot_dat_in_part
matrix <0,0,4,-1,0,0,0,4,0,-15,6.5,0>
}
object {
LDX_1_dash_4disc_dot_dat_in_part
matrix <0,-4,0,1,0,0,0,0,4,15,6.5,0>
}
object {
LDX_1_dash_8disc_dot_dat_in_part
matrix <0,0,4,1,0,0,0,4,0,15,6.5,0>
}
object {
LDX_1_dash_4disc_dot_dat_in_part
matrix <0,-4,0,1,0,0,0,0,4,-17,6.5,0>
}
object {
LDX_1_dash_8disc_dot_dat_in_part
matrix <0,0,4,1,0,0,0,4,0,-17,6.5,0>
}
object {
LDX_1_dash_4disc_dot_dat_in_part
matrix <0,-4,0,-1,0,0,0,0,4,17,6.5,0>
}
object {
LDX_1_dash_8disc_dot_dat_in_part
matrix <0,0,4,-1,0,0,0,4,0,17,6.5,0>
}
object {
LDX_1_dash_4rin15_dot_dat_in_part
matrix <0,0,-1,0,1,0,1,0,0,0,2.5,-3>
}
object {
LDX_1_dash_4rin16_dot_dat_in_part
matrix <0,0,-1,0,1,0,1,0,0,0,2.5,-3>
}
object {
LDX_1_dash_4rin15_dot_dat_in_part
matrix <-1,0,0,0,1,0,0,0,-1,0,2.5,-3>
}
object {
LDX_1_dash_4rin16_dot_dat_in_part
matrix <-1,0,0,0,1,0,0,0,-1,0,2.5,-3>
}
object {
LDX_1_dash_4rin15_dot_dat_in_part
matrix <0,0.44,-1,0,-1,0,1,0,0,0,12.005,-3>
}
object {
LDX_1_dash_4rin16_dot_dat_in_part
matrix <0,0.44,-1,0,-1,0,1,0,0,0,12.005,-3>
}
object {
LDX_1_dash_4rin15_dot_dat_in_part
matrix <-1,0,0,0,-1,0,0,0.44,-1,0,12.005,-3>
}
object {
LDX_1_dash_4rin16_dot_dat_in_part
matrix <-1,0,0,0,-1,0,0,0.44,-1,0,12.005,-3>
}
// BFC INVERTNEXT
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <15,0,0,0,9.505,0,0,0,-15,0,2.5,-3>
}
// BFC INVERTNEXT
object {
LDX_1_dash_4cyls2_dot_dat_in_part
matrix <0,0,15,0,6.613,0,15,0,0,0,12.005,-3>
}
// BFC INVERTNEXT
object {
LDX_1_dash_4cyls2_dot_dat_in_part
matrix <0,0,15,0,6.613,0,-15,0,0,0,12.005,-3>
}
object {
LDX_2_dash_4cyli_dot_dat_in_part
matrix <17,0,0,0,9.505,0,0,0,-17,0,2.5,-3>
}
object {
LDX_1_dash_4cyls2_dot_dat_in_part
matrix <0,0,17,0,7.495,0,17,0,0,0,12.005,-3>
}
object {
LDX_1_dash_4cyls2_dot_dat_in_part
matrix <0,0,17,0,7.495,0,-17,0,0,0,12.005,-3>
}
object {
LDX_1_dash_4cyli_dot_dat_in_part
matrix <0,-4,0,-2,0,0,0,0,4,17,6.5,0>
}
object {
LDX_3_dash_16cyli_dot_dat_in_part
matrix <0,0,4,-2,0,0,0,4,0,17,6.5,0>
}
object {
LDX_3_dash_16cyli_dot_dat_in_part
matrix <0,0,4,-2,0,0,0,4,0,-15,6.5,0>
}
object {
LDX_1_dash_4cyli_dot_dat_in_part
matrix <0,-4,0,-2,0,0,0,0,4,-15,6.5,0>
}
object {
LDX_4_dash_8sphe_dot_dat_in_part
matrix <0,1.5,0,-1,0,0,0,0,1.5,15,6.5,0>
}
object {
LDX_4_dash_8sphe_dot_dat_in_part
matrix <0,-1.5,0,1,0,0,0,0,1.5,-15,6.5,0>
}
mesh2 {
vertex_vectors {
32,
<-17,2.5,-3>, <-17,2.5,0>, <-17,6.5,0>, <-17,9.328,2.828>,
<-17,10.195,1.531>, <-17,10.8,0>, <-17,12.002,-3>, <-17,12.005,-2.999>,
<-15,2.5,-3>, <-15,2.5,0>, <-15,6.5,0>, <-15,9.328,2.828>,
<-15,10.195,1.531>, <-15,10.8,0>, <-15,12.005,-3>, <-15,12.005,-2.999>,
<15,2.5,-3>, <15,2.5,0>, <15,6.5,0>, <15,9.328,2.828>,
<15,10.195,1.531>, <15,10.8,0>, <15,12.002,-3>, <15,12.005,-2.999>,
<17,2.5,-3>, <17,2.5,0>, <17,6.5,0>, <17,9.328,2.828>,
<17,10.195,1.531>, <17,10.8,0>, <17,12.005,-3>, <17,12.005,-2.999>
}
normal_vectors {
5,
<-1,0,0>, <0,-1,0>, <0,-0.928618,-0.371037>, <1,0,0>,
<1,0,0>
}
face_indices {
24,
<10, 11, 12>, <10, 12, 13>, <8, 9, 13>, <8, 13, 14>,
<19, 18, 21>, <19, 21, 20>, <17, 16, 22>, <17, 22, 21>,
<3, 2, 5>, <3, 5, 4>, <1, 0, 6>, <1, 6, 5>,
<26, 27, 28>, <26, 28, 29>, <24, 25, 29>, <24, 29, 30>,
<24, 16, 17>, <24, 17, 25>, <8, 0, 1>, <8, 1, 9>,
<31, 23, 20>, <31, 20, 28>, <15, 7, 4>, <15, 4, 12>
}
normal_indices {
24,
<3, 3, 3>, <3, 3, 3>, <3, 3, 3>, <3, 3, 4>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<0, 0, 0>, <0, 0, 0>, <0, 0, 0>, <0, 0, 0>,
<3, 3, 3>, <3, 3, 3>, <3, 3, 3>, <3, 3, 4>,
<1, 1, 1>, <1, 1, 1>, <1, 1, 1>, <1, 1, 1>,
<2, 2, 2>, <2, 2, 2>, <2, 2, 2>, <2, 2, 2>
}
}
}
#end
#declare LDX_Driver_dot_ldr = union {
// Ice Planet minifigure
// Name: Driver
// Author: Allen Smith
object {
LDX_3817_dot_dat
LDXSeamMatrix(18, 37, 20, 10.5, 9.5, -1)
matrix <1,0,0,0,0,-1,0,1,0,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor15 }
}
object {
LDX_3816_dot_dat
LDXSeamMatrix(18, 37, 20, -10.5, 9.5, -1)
matrix <1,0,0,0,0,-1,0,1,0,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor15 }
}
object {
LDX_3815_dot_dat
LDXSeamMatrix(36, 32.000195, 20, 0, 5.000097, 0)
matrix <1,0,0,0,1,0,0,0,1,0,-12,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_973p68_dot_dat
LDXSeamMatrix(38, 44, 20, 0, 10, 0)
matrix <1,0,0,0,1,0,0,0,1,0,-44,0>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_3838
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(28, 36, 34, 0, 7.5, 7)
matrix <1,0,0,0,1,0,0,0,1,0,-46,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3626bp01
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(26.000647, 28, 26.000324, 0, 10, 0.000162)
matrix <1,0,0,0,1,0,0,0,1,0,-72,0>
#if (version >= 3.1) material #else texture #end { LDXColor14 }
}
object {
LDX_3819_dot_dat
LDXSeamMatrix(17, 28.935999, 19.943001, 1.5, 7.967999, -3.4645)
matrix <0.984807,-0.173648,0,0.122788,0.696364,-0.707107,0.122788,0.696364,0.707106,16,-35,0>
#if (version >= 3.1) material #else texture #end { LDXColor15 }
}
object {
LDX_3818_dot_dat
LDXSeamMatrix(17, 28.935999, 19.943001, -1.5, 7.967999, -3.4645)
matrix <0.984807,0.173648,0,-0.122788,0.696363,-0.707107,-0.122788,0.696364,0.707106,-16,-35,0>
#if (version >= 3.1) material #else texture #end { LDXColor15 }
}
object {
LDX_3820_dot_dat
LDXSeamMatrix(12, 12.263, 28.517838, 0, -1.5187, -1.258918)
matrix <0.999999,0,0,0,0.999999,0,0,0,1,-22,-30,-20>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_3820_dot_dat
LDXSeamMatrix(12, 12.263, 28.517838, 0, -1.5187, -1.258918)
matrix <0.999999,0,0,0,0.999999,0,0,0,1,22,-30,-20>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_2446_dot_dat
LDXSeamMatrix(31.6, 34.615421, 34.5, 0, 7.807711, -1.25)
matrix <1,0,0,0,1,0,0,0,1,0,-72,0>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_2447_dot_dat
LDXSeamMatrix(34, 17, 24, 0, 11, -8)
matrix <1,0,0,0,1,0,0,0,1,0,-71.5,0.5>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
// NOFILE
}
#include "lg_2466.inc" // Panel 3 x 2 x 6
#declare LDX_Cockpit_dot_ldr = union {
// untitled model
// Name: Cockpit
// Author: Allen Smith
object {
lg_3937
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 22, 20, 0, 13, 0)
matrix <-1,0,0,0,1,0,0,0,-1,0,0,0>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_3938
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 20, 20, 0, 6, 0)
matrix <1,0,0,0,0.34202,-0.939692,0,0.939692,0.34202,0,5.91988,8.702381>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_2466_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 144, 60, 0, 64, -20)
matrix <1,0,0,0,0.34202,-0.939692,0,0.939692,0.34202,0,-41.08012,136.481842>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
// STEP
object {
lg_2412b_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <1,0,0,0,0.34202,-0.939692,0,0.939692,0.34202,0,-45.080112,143.410034>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
// STEP
// NOFILE
}
#declare LDX_Photon_space_Chaser_dot_ldr = union {
// FILE Photon Chaser.ldr
// Speedy M:Tron racer
// Name: Photon Chaser
// Author: Allen Smith
object {
lg_3032
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(120, 12, 80, 0, 2, 0)
matrix <0,0,-1,0,1,0,1,0,0,0,0,40>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_3023
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 20, 0, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,0,0,110>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
object {
lg_3933
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(78.709999, 12, 160, -0.645, 2, 0)
matrix <0,0,-1,0,1,0,1,0,0,-100,-8,20>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3934
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(78.709999, 12, 160, 0.645, 2, 0)
matrix <0,0,1,0,1,0,-1,0,0,100,-8,20>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3936
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(77, 12, 80, -1.5, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,-40,-8,100>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3935
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(77, 12, 80, 1.5, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,40,-8,100>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3024
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 12, 20, 0, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,-30,-8,-10>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3024
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 12, 20, 0, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,30,-8,-10>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3023
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 20, 0, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,0,-8,50>
#if (version >= 3.1) material #else texture #end { LDXColor7 }
}
object {
lg_3069b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <-1,0,0,0,1,0,0,0,-1,0,-8,30>
#if (version >= 3.1) material #else texture #end { LDXColor7 }
}
// STEP
object {
LDX_2336p68_dot_dat
LDXSeamMatrix(48, 48, 124, 0, 0, -2)
matrix <1,0,0,0,1,0,0,0,1,0,-16,-40>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
LDX_3794a_dot_dat
LDXSeamMatrix(40, 12, 20, 0, 2, 0)
matrix <0,0,1,0,1,0,-1,0,0,-50,-16,60>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
LDX_3794a_dot_dat
LDXSeamMatrix(40, 12, 20, 0, 2, 0)
matrix <0,0,1,0,1,0,-1,0,0,50,-16,60>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
object {
lg_4592c01
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(16, 44.810429, 20.772427, 0, -14.405214, 2.386213)
matrix <0.866025,0,0.5,0,1,0,-0.5,0,0.866025,30,-16,-10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_4592c01
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(16, 44.810429, 20.772427, 0, -14.405214, 2.386213)
matrix <0.5,0,-0.866025,0,1,0,0.866025,0,0.5,-30,-16,-10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2420
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 10, 2, 10)
matrix <0,0,-1,0,1,0,1,0,0,-30,-16,70>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2420
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 10, 2, 10)
matrix <-1,0,0,0,1,0,0,0,-1,30,-16,70>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_3937
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 22, 20, 0, 13, 0)
matrix <-1,0,0,0,0,1,0,1,0,0,-6,-124>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_3938
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 20, 20, 0, 6, 0)
matrix <-1,0,0,0,1,0,0,0,-1,0,-16,-114>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
object {
lg_2420
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 10, 2, 10)
matrix <1,0,0,0,1,0,0,0,1,-30,-16,10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2420
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 10, 2, 10)
matrix <0,0,1,0,1,0,-1,0,0,30,-16,10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2412b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <0,0,1,0,1,0,-1,0,0,110,-16,40>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2412b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <0,0,1,0,1,0,-1,0,0,-110,-16,40>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2412b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <0,0,1,-1,0,0,0,-1,0,28,-6,-60>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_2412b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <0,0,-1,1,0,0,0,-1,0,-28,-6,-60>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3023
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 20, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,0,-16,-10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_2434
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(80, 52, 48, 0, 22, 0)
matrix <0,0,1,0,1,0,-1,0,0,0,-56,120>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_6019
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 16, 34, 0, 2, -7)
matrix <0,0,1,0,1,0,-1,0,0,50,-24,60>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_6019
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 16, 34, 0, 2, -7)
matrix <0,0,-1,0,1,0,1,0,0,-50,-24,60>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_3839a
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(60.000202, 12.000101, 44, 0, 2.000051, -12)
matrix <1,0,0,0,1,0,0,0,1,0,-24,-114>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3829c01
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 46.720001, 20.240002, 0, -15.360001, -0.12)
matrix <1,0,0,0,1,0,0,0,1,0,-24,10>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_4286
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 28, 60, 0, 10, -20)
matrix <1,0,0,0,1,0,0,0,1,-30,-40,70>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_4286_slope
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 28, 60, 0, 10, -20)
matrix <1,0,0,0,1,0,0,0,1,-30,-40,70>
#if (version >= 3.1) material #else texture #end { LDXColor4_slope }
}
object {
lg_4286
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 28, 60, 0, 10, -20)
matrix <1,0,0,0,1,0,0,0,1,30,-40,70>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_4286_slope
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 28, 60, 0, 10, -20)
matrix <1,0,0,0,1,0,0,0,1,30,-40,70>
#if (version >= 3.1) material #else texture #end { LDXColor4_slope }
}
object {
lg_2569_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(16, 192, 16, 0, -88, 0)
matrix <1,0,0,0,0,1,0,-1,0,-70,-22,64>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
object {
lg_2569_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(16, 192, 16, 0, -88, 0)
matrix <1,0,0,0,0,1,0,-1,0,70,-22,64>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
object {
lg_4740_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 0, 2, 0)
matrix <1,0,0,0,0,-1,0,1,0,-26,-20,-136>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
object {
lg_4740_clear
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 0, 2, 0)
matrix <1,0,0,0,0,-1,0,1,0,26,-20,-136>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
object {
lg_3956
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 48, 52, 0, -16, -6)
matrix <-1,0,0,0,0,1,0,1,0,0,-36,160>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3039
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 28, 40, 0, 10, -10)
matrix <-1,0,0,0,1,0,0,0,-1,0,-88,130>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_3039_slope
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 28, 40, 0, 10, -10)
matrix <-1,0,0,0,1,0,0,0,-1,0,-88,130>
#if (version >= 3.1) material #else texture #end { LDXColor4_slope }
}
object {
LDX_Starboard_space_Wing_dot_ldr
matrix <0,1,0,1,0,0,0,0,-1,-140,-36,80>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3022
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 0, 2, 0)
matrix <-1,0,0,0,1,0,0,0,-1,0,-64,100>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
LDX_Port_space_Wing_dot_ldr
matrix <0,-1,0,-1,0,0,0,0,-1,140,-36,80>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
lg_3022
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,70,0,30>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
object {
lg_3022
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 12, 40, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,-70,0,30>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
object {
LDX_4032a_dot_dat
LDXSeamMatrix(40.001053, 12, 40.001053, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,70,8,30>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_4032a_dot_dat
LDXSeamMatrix(40.001053, 12, 40.001053, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,0,8,-20>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_4032a_dot_dat
LDXSeamMatrix(40.001053, 12, 40.001053, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,0,8,100>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_4073
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 12, 20, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,0,8,40>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
lg_4073
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(20, 12, 20, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,0,8,-80>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_4032a_dot_dat
LDXSeamMatrix(40.001053, 12, 40.001053, 0, 2, 0)
matrix <1,0,0,0,1,0,0,0,1,-70,8,30>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
// STEP
object {
LDX_Engine_dot_ldr
matrix <-1,0,0,0,0,1,0,1,0,0,-36,168>
#if (version >= 3.1) material #else texture #end { LDXColor42 }
hollow on
interior { media { emission rgb <1.0, 0.7, 0.2>*0.05 } }
}
object {
lg_2412b
matrix <0,0,-25,-25,0,0,0,-25,0,0,0,0>
LDXSeamMatrix(40, 8, 20, 0, 4, 0)
matrix <-1,0,0,0,1,0,0,0,-1,0,-96,130>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_Driver_dot_ldr
matrix <1,0,0,0,1,0,0,0,1,0,-16,49>
#if (version >= 3.1) material #else texture #end { LDXColor0 }
}
object {
LDX_Cockpit_dot_ldr
matrix <1,0,0,0,1,0,0,0,1,0,-40,-30>
#if (version >= 3.1) material #else texture #end { LDXColor4 }
}
// STEP
// NOFILE
#if (LDXRefls = 0)
no_reflection
#end
#if (LDXShads = 0)
no_shadow
#end
}
// Photon Chaser.ldr
object {
LDX_Photon_space_Chaser_dot_ldr
#if (version >= 3.1) material #else texture #end { LDXColor7 }
}
// Floor
#if (LDXFloor != 0)
object {
plane { LDXFloorAxis, LDXFloorLoc hollow }
texture {
pigment { color rgbt <LDXFloorR,LDXFloorG,LDXFloorB,0.5>*0.2 }
finish { reflection { 0.5 } ambient 0.4 diffuse 0.4 }
}
}
#end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment