add vertical bus bricks; delete redundant diode bricks

This commit is contained in:
Redo0 2021-05-22 17:58:13 -05:00
parent de586ff608
commit ce07ef3263
1041 changed files with 965928 additions and 1235 deletions

View File

@ -1,7 +1,7 @@
datablock fxDTSBrickData(LogicGate_Diode_Data) datablock fxDTSBrickData(LogicGate_Diode_Data)
{ {
category = "Logic Bricks"; category = "Logic Bricks";
subCategory = "Gates"; subCategory = "Diode";
uiName = "1x1f Diode"; uiName = "1x1f Diode";
iconName = $LuaLogic::Path @ "icons/1x1f Diode"; iconName = $LuaLogic::Path @ "icons/1x1f Diode";
brickFile = $LuaLogic::Path @ "bricks/blb/1x1f_1i_1o.blb"; brickFile = $LuaLogic::Path @ "bricks/blb/1x1f_1i_1o.blb";

View File

@ -2,7 +2,7 @@ datablock fxDTSBrickData(LogicGate_DiodeUp_Data)
{ {
brickFile = $LuaLogic::Path @ "bricks/blb/1x1fU_1i_1o.blb"; brickFile = $LuaLogic::Path @ "bricks/blb/1x1fU_1i_1o.blb";
category = "Logic Bricks"; category = "Logic Bricks";
subCategory = "Gates"; subCategory = "Diode";
uiName = "Diode Up"; uiName = "Diode Up";
iconName = $LuaLogic::Path @ "icons/Diode Up"; iconName = $LuaLogic::Path @ "icons/Diode Up";
hasPrint = 1; hasPrint = 1;
@ -44,13 +44,14 @@ datablock fxDTSBrickData(LogicGate_DiodeDown_Data : LogicGate_DiodeUp_Data)
logicUIName = "Diode Down"; logicUIName = "Diode Down";
logicForceColor = "GREEN";
logicForcePrint = "DOWNARROW"; logicForcePrint = "DOWNARROW";
logicUpdate = "return function(gate) Gate.setportstate(gate, 2, Gate.getportstate(gate, 1)) end";
logicPortDir[0] = 4; logicPortDir[0] = 4;
logicPortDir[1] = 5; logicPortDir[1] = 5;
}; };
lualogic_registergatedefinition("LogicGate_DiodeDown_Data"); lualogic_registergatedefinition("LogicGate_DiodeDown_Data");
$ND::ManualSymmetryZ["Diode Up" ] = "Diode Down"; $ND::ManualSymmetryZDB["Diode Up" ] = "Diode Down";
$ND::ManualSymmetryZ["Diode Down"] = "Diode Up" ; $ND::ManualSymmetryZDB["Diode Down"] = "Diode Up" ;

View File

@ -31,5 +31,5 @@ datablock fxDTSBrickData(LogicGate_NotDown_Data : LogicGate_DiodeDown_Data)
}; };
lualogic_registergatedefinition("LogicGate_NotDown_Data"); lualogic_registergatedefinition("LogicGate_NotDown_Data");
$ND::ManualSymmetryZ["Not Up" ] = "Not Down"; $ND::ManualSymmetryZDB["Not Up" ] = "Not Down";
$ND::ManualSymmetryZ["Not Down"] = "Not Up" ; $ND::ManualSymmetryZDB["Not Down"] = "Not Up" ;

View File

@ -91,12 +91,6 @@ exec("./newcode/Wire 1x2x5f.cs");
exec("./newcode/Wire 64x64f.cs"); exec("./newcode/Wire 64x64f.cs");
exec("./newcode/Wire 2x2f.cs"); exec("./newcode/Wire 2x2f.cs");
exec("./newcode/Wire 4x4f.cs"); exec("./newcode/Wire 4x4f.cs");
exec("./newcode/Diode Flat.cs");
exec("./newcode/Inverter Flat.cs");
exec("./newcode/Diode Up.cs");
exec("./newcode/Inverter Up.cs");
exec("./newcode/Diode Down.cs");
exec("./newcode/Inverter Down.cs");
exec("./newcode/AND 2 Bit.cs"); exec("./newcode/AND 2 Bit.cs");
exec("./newcode/OR 2 Bit.cs"); exec("./newcode/OR 2 Bit.cs");
exec("./newcode/XOR 2 Bit.cs"); exec("./newcode/XOR 2 Bit.cs");
@ -140,135 +134,387 @@ exec("./newcode/NAND 8 Bit.cs");
exec("./newcode/NOR 8 Bit.cs"); exec("./newcode/NOR 8 Bit.cs");
exec("./newcode/XNOR 8 Bit.cs"); exec("./newcode/XNOR 8 Bit.cs");
exec("./newcode/D FlipFlop 1 Bit.cs"); exec("./newcode/D FlipFlop 1 Bit.cs");
exec("./newcode/D FlipFlop 1 Bit Up.cs");
exec("./newcode/D FlipFlop 1 Bit Down.cs");
exec("./newcode/D FlipFlop 2 Bit.cs"); exec("./newcode/D FlipFlop 2 Bit.cs");
exec("./newcode/D FlipFlop 2 Bit Up.cs");
exec("./newcode/D FlipFlop 2 Bit Down.cs");
exec("./newcode/D FlipFlop 3 Bit.cs"); exec("./newcode/D FlipFlop 3 Bit.cs");
exec("./newcode/D FlipFlop 3 Bit Up.cs");
exec("./newcode/D FlipFlop 3 Bit Down.cs");
exec("./newcode/D FlipFlop 4 Bit.cs"); exec("./newcode/D FlipFlop 4 Bit.cs");
exec("./newcode/D FlipFlop 4 Bit Up.cs");
exec("./newcode/D FlipFlop 4 Bit Down.cs");
exec("./newcode/D FlipFlop 5 Bit.cs"); exec("./newcode/D FlipFlop 5 Bit.cs");
exec("./newcode/D FlipFlop 5 Bit Up.cs");
exec("./newcode/D FlipFlop 5 Bit Down.cs");
exec("./newcode/D FlipFlop 6 Bit.cs"); exec("./newcode/D FlipFlop 6 Bit.cs");
exec("./newcode/D FlipFlop 6 Bit Up.cs");
exec("./newcode/D FlipFlop 6 Bit Down.cs");
exec("./newcode/D FlipFlop 7 Bit.cs"); exec("./newcode/D FlipFlop 7 Bit.cs");
exec("./newcode/D FlipFlop 7 Bit Up.cs");
exec("./newcode/D FlipFlop 7 Bit Down.cs");
exec("./newcode/D FlipFlop 8 Bit.cs"); exec("./newcode/D FlipFlop 8 Bit.cs");
exec("./newcode/D FlipFlop 8 Bit Up.cs");
exec("./newcode/D FlipFlop 8 Bit Down.cs");
exec("./newcode/D FlipFlop 9 Bit.cs"); exec("./newcode/D FlipFlop 9 Bit.cs");
exec("./newcode/D FlipFlop 9 Bit Up.cs");
exec("./newcode/D FlipFlop 9 Bit Down.cs");
exec("./newcode/D FlipFlop 10 Bit.cs"); exec("./newcode/D FlipFlop 10 Bit.cs");
exec("./newcode/D FlipFlop 10 Bit Up.cs");
exec("./newcode/D FlipFlop 10 Bit Down.cs");
exec("./newcode/D FlipFlop 11 Bit.cs"); exec("./newcode/D FlipFlop 11 Bit.cs");
exec("./newcode/D FlipFlop 11 Bit Up.cs");
exec("./newcode/D FlipFlop 11 Bit Down.cs");
exec("./newcode/D FlipFlop 12 Bit.cs"); exec("./newcode/D FlipFlop 12 Bit.cs");
exec("./newcode/D FlipFlop 12 Bit Up.cs");
exec("./newcode/D FlipFlop 12 Bit Down.cs");
exec("./newcode/D FlipFlop 13 Bit.cs"); exec("./newcode/D FlipFlop 13 Bit.cs");
exec("./newcode/D FlipFlop 13 Bit Up.cs");
exec("./newcode/D FlipFlop 13 Bit Down.cs");
exec("./newcode/D FlipFlop 14 Bit.cs"); exec("./newcode/D FlipFlop 14 Bit.cs");
exec("./newcode/D FlipFlop 14 Bit Up.cs");
exec("./newcode/D FlipFlop 14 Bit Down.cs");
exec("./newcode/D FlipFlop 15 Bit.cs"); exec("./newcode/D FlipFlop 15 Bit.cs");
exec("./newcode/D FlipFlop 15 Bit Up.cs");
exec("./newcode/D FlipFlop 15 Bit Down.cs");
exec("./newcode/D FlipFlop 16 Bit.cs"); exec("./newcode/D FlipFlop 16 Bit.cs");
exec("./newcode/D FlipFlop 16 Bit Up.cs");
exec("./newcode/D FlipFlop 16 Bit Down.cs");
exec("./newcode/D FlipFlop 24 Bit.cs"); exec("./newcode/D FlipFlop 24 Bit.cs");
exec("./newcode/D FlipFlop 24 Bit Up.cs");
exec("./newcode/D FlipFlop 24 Bit Down.cs");
exec("./newcode/D FlipFlop 32 Bit.cs"); exec("./newcode/D FlipFlop 32 Bit.cs");
exec("./newcode/D FlipFlop 32 Bit Up.cs");
exec("./newcode/D FlipFlop 32 Bit Down.cs");
exec("./newcode/D FlipFlop 48 Bit.cs"); exec("./newcode/D FlipFlop 48 Bit.cs");
exec("./newcode/D FlipFlop 48 Bit Up.cs");
exec("./newcode/D FlipFlop 48 Bit Down.cs");
exec("./newcode/D FlipFlop 64 Bit.cs"); exec("./newcode/D FlipFlop 64 Bit.cs");
exec("./newcode/D FlipFlop 64 Bit Up.cs");
exec("./newcode/D FlipFlop 64 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 1 Bit.cs"); exec("./newcode/D FlipFlop Active Low 1 Bit.cs");
exec("./newcode/D FlipFlop Active Low 1 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 1 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 2 Bit.cs"); exec("./newcode/D FlipFlop Active Low 2 Bit.cs");
exec("./newcode/D FlipFlop Active Low 2 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 2 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 3 Bit.cs"); exec("./newcode/D FlipFlop Active Low 3 Bit.cs");
exec("./newcode/D FlipFlop Active Low 3 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 3 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 4 Bit.cs"); exec("./newcode/D FlipFlop Active Low 4 Bit.cs");
exec("./newcode/D FlipFlop Active Low 4 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 4 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 5 Bit.cs"); exec("./newcode/D FlipFlop Active Low 5 Bit.cs");
exec("./newcode/D FlipFlop Active Low 5 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 5 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 6 Bit.cs"); exec("./newcode/D FlipFlop Active Low 6 Bit.cs");
exec("./newcode/D FlipFlop Active Low 6 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 6 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 7 Bit.cs"); exec("./newcode/D FlipFlop Active Low 7 Bit.cs");
exec("./newcode/D FlipFlop Active Low 7 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 7 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 8 Bit.cs"); exec("./newcode/D FlipFlop Active Low 8 Bit.cs");
exec("./newcode/D FlipFlop Active Low 8 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 8 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 9 Bit.cs"); exec("./newcode/D FlipFlop Active Low 9 Bit.cs");
exec("./newcode/D FlipFlop Active Low 9 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 9 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 10 Bit.cs"); exec("./newcode/D FlipFlop Active Low 10 Bit.cs");
exec("./newcode/D FlipFlop Active Low 10 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 10 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 11 Bit.cs"); exec("./newcode/D FlipFlop Active Low 11 Bit.cs");
exec("./newcode/D FlipFlop Active Low 11 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 11 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 12 Bit.cs"); exec("./newcode/D FlipFlop Active Low 12 Bit.cs");
exec("./newcode/D FlipFlop Active Low 12 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 12 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 13 Bit.cs"); exec("./newcode/D FlipFlop Active Low 13 Bit.cs");
exec("./newcode/D FlipFlop Active Low 13 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 13 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 14 Bit.cs"); exec("./newcode/D FlipFlop Active Low 14 Bit.cs");
exec("./newcode/D FlipFlop Active Low 14 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 14 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 15 Bit.cs"); exec("./newcode/D FlipFlop Active Low 15 Bit.cs");
exec("./newcode/D FlipFlop Active Low 15 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 15 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 16 Bit.cs"); exec("./newcode/D FlipFlop Active Low 16 Bit.cs");
exec("./newcode/D FlipFlop Active Low 16 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 16 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 24 Bit.cs"); exec("./newcode/D FlipFlop Active Low 24 Bit.cs");
exec("./newcode/D FlipFlop Active Low 24 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 24 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 32 Bit.cs"); exec("./newcode/D FlipFlop Active Low 32 Bit.cs");
exec("./newcode/D FlipFlop Active Low 32 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 32 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 48 Bit.cs"); exec("./newcode/D FlipFlop Active Low 48 Bit.cs");
exec("./newcode/D FlipFlop Active Low 48 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 48 Bit Down.cs");
exec("./newcode/D FlipFlop Active Low 64 Bit.cs"); exec("./newcode/D FlipFlop Active Low 64 Bit.cs");
exec("./newcode/D FlipFlop Active Low 64 Bit Up.cs");
exec("./newcode/D FlipFlop Active Low 64 Bit Down.cs");
exec("./newcode/Buffer 1 Bit.cs"); exec("./newcode/Buffer 1 Bit.cs");
exec("./newcode/Buffer 1 Bit Up.cs");
exec("./newcode/Buffer 1 Bit Down.cs");
exec("./newcode/Buffer 2 Bit.cs"); exec("./newcode/Buffer 2 Bit.cs");
exec("./newcode/Buffer 2 Bit Up.cs");
exec("./newcode/Buffer 2 Bit Down.cs");
exec("./newcode/Buffer 3 Bit.cs"); exec("./newcode/Buffer 3 Bit.cs");
exec("./newcode/Buffer 3 Bit Up.cs");
exec("./newcode/Buffer 3 Bit Down.cs");
exec("./newcode/Buffer 4 Bit.cs"); exec("./newcode/Buffer 4 Bit.cs");
exec("./newcode/Buffer 4 Bit Up.cs");
exec("./newcode/Buffer 4 Bit Down.cs");
exec("./newcode/Buffer 5 Bit.cs"); exec("./newcode/Buffer 5 Bit.cs");
exec("./newcode/Buffer 5 Bit Up.cs");
exec("./newcode/Buffer 5 Bit Down.cs");
exec("./newcode/Buffer 6 Bit.cs"); exec("./newcode/Buffer 6 Bit.cs");
exec("./newcode/Buffer 6 Bit Up.cs");
exec("./newcode/Buffer 6 Bit Down.cs");
exec("./newcode/Buffer 7 Bit.cs"); exec("./newcode/Buffer 7 Bit.cs");
exec("./newcode/Buffer 7 Bit Up.cs");
exec("./newcode/Buffer 7 Bit Down.cs");
exec("./newcode/Buffer 8 Bit.cs"); exec("./newcode/Buffer 8 Bit.cs");
exec("./newcode/Buffer 8 Bit Up.cs");
exec("./newcode/Buffer 8 Bit Down.cs");
exec("./newcode/Buffer 9 Bit.cs"); exec("./newcode/Buffer 9 Bit.cs");
exec("./newcode/Buffer 9 Bit Up.cs");
exec("./newcode/Buffer 9 Bit Down.cs");
exec("./newcode/Buffer 10 Bit.cs"); exec("./newcode/Buffer 10 Bit.cs");
exec("./newcode/Buffer 10 Bit Up.cs");
exec("./newcode/Buffer 10 Bit Down.cs");
exec("./newcode/Buffer 11 Bit.cs"); exec("./newcode/Buffer 11 Bit.cs");
exec("./newcode/Buffer 11 Bit Up.cs");
exec("./newcode/Buffer 11 Bit Down.cs");
exec("./newcode/Buffer 12 Bit.cs"); exec("./newcode/Buffer 12 Bit.cs");
exec("./newcode/Buffer 12 Bit Up.cs");
exec("./newcode/Buffer 12 Bit Down.cs");
exec("./newcode/Buffer 13 Bit.cs"); exec("./newcode/Buffer 13 Bit.cs");
exec("./newcode/Buffer 13 Bit Up.cs");
exec("./newcode/Buffer 13 Bit Down.cs");
exec("./newcode/Buffer 14 Bit.cs"); exec("./newcode/Buffer 14 Bit.cs");
exec("./newcode/Buffer 14 Bit Up.cs");
exec("./newcode/Buffer 14 Bit Down.cs");
exec("./newcode/Buffer 15 Bit.cs"); exec("./newcode/Buffer 15 Bit.cs");
exec("./newcode/Buffer 15 Bit Up.cs");
exec("./newcode/Buffer 15 Bit Down.cs");
exec("./newcode/Buffer 16 Bit.cs"); exec("./newcode/Buffer 16 Bit.cs");
exec("./newcode/Buffer 16 Bit Up.cs");
exec("./newcode/Buffer 16 Bit Down.cs");
exec("./newcode/Buffer 24 Bit.cs"); exec("./newcode/Buffer 24 Bit.cs");
exec("./newcode/Buffer 24 Bit Up.cs");
exec("./newcode/Buffer 24 Bit Down.cs");
exec("./newcode/Buffer 32 Bit.cs"); exec("./newcode/Buffer 32 Bit.cs");
exec("./newcode/Buffer 32 Bit Up.cs");
exec("./newcode/Buffer 32 Bit Down.cs");
exec("./newcode/Buffer 48 Bit.cs"); exec("./newcode/Buffer 48 Bit.cs");
exec("./newcode/Buffer 48 Bit Up.cs");
exec("./newcode/Buffer 48 Bit Down.cs");
exec("./newcode/Buffer 64 Bit.cs"); exec("./newcode/Buffer 64 Bit.cs");
exec("./newcode/Buffer 64 Bit Up.cs");
exec("./newcode/Buffer 64 Bit Down.cs");
exec("./newcode/Buffer Active Low 1 Bit.cs"); exec("./newcode/Buffer Active Low 1 Bit.cs");
exec("./newcode/Buffer Active Low 1 Bit Up.cs");
exec("./newcode/Buffer Active Low 1 Bit Down.cs");
exec("./newcode/Buffer Active Low 2 Bit.cs"); exec("./newcode/Buffer Active Low 2 Bit.cs");
exec("./newcode/Buffer Active Low 2 Bit Up.cs");
exec("./newcode/Buffer Active Low 2 Bit Down.cs");
exec("./newcode/Buffer Active Low 3 Bit.cs"); exec("./newcode/Buffer Active Low 3 Bit.cs");
exec("./newcode/Buffer Active Low 3 Bit Up.cs");
exec("./newcode/Buffer Active Low 3 Bit Down.cs");
exec("./newcode/Buffer Active Low 4 Bit.cs"); exec("./newcode/Buffer Active Low 4 Bit.cs");
exec("./newcode/Buffer Active Low 4 Bit Up.cs");
exec("./newcode/Buffer Active Low 4 Bit Down.cs");
exec("./newcode/Buffer Active Low 5 Bit.cs"); exec("./newcode/Buffer Active Low 5 Bit.cs");
exec("./newcode/Buffer Active Low 5 Bit Up.cs");
exec("./newcode/Buffer Active Low 5 Bit Down.cs");
exec("./newcode/Buffer Active Low 6 Bit.cs"); exec("./newcode/Buffer Active Low 6 Bit.cs");
exec("./newcode/Buffer Active Low 6 Bit Up.cs");
exec("./newcode/Buffer Active Low 6 Bit Down.cs");
exec("./newcode/Buffer Active Low 7 Bit.cs"); exec("./newcode/Buffer Active Low 7 Bit.cs");
exec("./newcode/Buffer Active Low 7 Bit Up.cs");
exec("./newcode/Buffer Active Low 7 Bit Down.cs");
exec("./newcode/Buffer Active Low 8 Bit.cs"); exec("./newcode/Buffer Active Low 8 Bit.cs");
exec("./newcode/Buffer Active Low 8 Bit Up.cs");
exec("./newcode/Buffer Active Low 8 Bit Down.cs");
exec("./newcode/Buffer Active Low 9 Bit.cs"); exec("./newcode/Buffer Active Low 9 Bit.cs");
exec("./newcode/Buffer Active Low 9 Bit Up.cs");
exec("./newcode/Buffer Active Low 9 Bit Down.cs");
exec("./newcode/Buffer Active Low 10 Bit.cs"); exec("./newcode/Buffer Active Low 10 Bit.cs");
exec("./newcode/Buffer Active Low 10 Bit Up.cs");
exec("./newcode/Buffer Active Low 10 Bit Down.cs");
exec("./newcode/Buffer Active Low 11 Bit.cs"); exec("./newcode/Buffer Active Low 11 Bit.cs");
exec("./newcode/Buffer Active Low 11 Bit Up.cs");
exec("./newcode/Buffer Active Low 11 Bit Down.cs");
exec("./newcode/Buffer Active Low 12 Bit.cs"); exec("./newcode/Buffer Active Low 12 Bit.cs");
exec("./newcode/Buffer Active Low 12 Bit Up.cs");
exec("./newcode/Buffer Active Low 12 Bit Down.cs");
exec("./newcode/Buffer Active Low 13 Bit.cs"); exec("./newcode/Buffer Active Low 13 Bit.cs");
exec("./newcode/Buffer Active Low 13 Bit Up.cs");
exec("./newcode/Buffer Active Low 13 Bit Down.cs");
exec("./newcode/Buffer Active Low 14 Bit.cs"); exec("./newcode/Buffer Active Low 14 Bit.cs");
exec("./newcode/Buffer Active Low 14 Bit Up.cs");
exec("./newcode/Buffer Active Low 14 Bit Down.cs");
exec("./newcode/Buffer Active Low 15 Bit.cs"); exec("./newcode/Buffer Active Low 15 Bit.cs");
exec("./newcode/Buffer Active Low 15 Bit Up.cs");
exec("./newcode/Buffer Active Low 15 Bit Down.cs");
exec("./newcode/Buffer Active Low 16 Bit.cs"); exec("./newcode/Buffer Active Low 16 Bit.cs");
exec("./newcode/Buffer Active Low 16 Bit Up.cs");
exec("./newcode/Buffer Active Low 16 Bit Down.cs");
exec("./newcode/Buffer Active Low 24 Bit.cs"); exec("./newcode/Buffer Active Low 24 Bit.cs");
exec("./newcode/Buffer Active Low 24 Bit Up.cs");
exec("./newcode/Buffer Active Low 24 Bit Down.cs");
exec("./newcode/Buffer Active Low 32 Bit.cs"); exec("./newcode/Buffer Active Low 32 Bit.cs");
exec("./newcode/Buffer Active Low 32 Bit Up.cs");
exec("./newcode/Buffer Active Low 32 Bit Down.cs");
exec("./newcode/Buffer Active Low 48 Bit.cs"); exec("./newcode/Buffer Active Low 48 Bit.cs");
exec("./newcode/Buffer Active Low 48 Bit Up.cs");
exec("./newcode/Buffer Active Low 48 Bit Down.cs");
exec("./newcode/Buffer Active Low 64 Bit.cs"); exec("./newcode/Buffer Active Low 64 Bit.cs");
exec("./newcode/Buffer Active Low 64 Bit Up.cs");
exec("./newcode/Buffer Active Low 64 Bit Down.cs");
exec("./newcode/Enabler 1 Bit.cs"); exec("./newcode/Enabler 1 Bit.cs");
exec("./newcode/Enabler 1 Bit Up.cs");
exec("./newcode/Enabler 1 Bit Down.cs");
exec("./newcode/Enabler 2 Bit.cs"); exec("./newcode/Enabler 2 Bit.cs");
exec("./newcode/Enabler 2 Bit Up.cs");
exec("./newcode/Enabler 2 Bit Down.cs");
exec("./newcode/Enabler 3 Bit.cs"); exec("./newcode/Enabler 3 Bit.cs");
exec("./newcode/Enabler 3 Bit Up.cs");
exec("./newcode/Enabler 3 Bit Down.cs");
exec("./newcode/Enabler 4 Bit.cs"); exec("./newcode/Enabler 4 Bit.cs");
exec("./newcode/Enabler 4 Bit Up.cs");
exec("./newcode/Enabler 4 Bit Down.cs");
exec("./newcode/Enabler 5 Bit.cs"); exec("./newcode/Enabler 5 Bit.cs");
exec("./newcode/Enabler 5 Bit Up.cs");
exec("./newcode/Enabler 5 Bit Down.cs");
exec("./newcode/Enabler 6 Bit.cs"); exec("./newcode/Enabler 6 Bit.cs");
exec("./newcode/Enabler 6 Bit Up.cs");
exec("./newcode/Enabler 6 Bit Down.cs");
exec("./newcode/Enabler 7 Bit.cs"); exec("./newcode/Enabler 7 Bit.cs");
exec("./newcode/Enabler 7 Bit Up.cs");
exec("./newcode/Enabler 7 Bit Down.cs");
exec("./newcode/Enabler 8 Bit.cs"); exec("./newcode/Enabler 8 Bit.cs");
exec("./newcode/Enabler 8 Bit Up.cs");
exec("./newcode/Enabler 8 Bit Down.cs");
exec("./newcode/Enabler 9 Bit.cs"); exec("./newcode/Enabler 9 Bit.cs");
exec("./newcode/Enabler 9 Bit Up.cs");
exec("./newcode/Enabler 9 Bit Down.cs");
exec("./newcode/Enabler 10 Bit.cs"); exec("./newcode/Enabler 10 Bit.cs");
exec("./newcode/Enabler 10 Bit Up.cs");
exec("./newcode/Enabler 10 Bit Down.cs");
exec("./newcode/Enabler 11 Bit.cs"); exec("./newcode/Enabler 11 Bit.cs");
exec("./newcode/Enabler 11 Bit Up.cs");
exec("./newcode/Enabler 11 Bit Down.cs");
exec("./newcode/Enabler 12 Bit.cs"); exec("./newcode/Enabler 12 Bit.cs");
exec("./newcode/Enabler 12 Bit Up.cs");
exec("./newcode/Enabler 12 Bit Down.cs");
exec("./newcode/Enabler 13 Bit.cs"); exec("./newcode/Enabler 13 Bit.cs");
exec("./newcode/Enabler 13 Bit Up.cs");
exec("./newcode/Enabler 13 Bit Down.cs");
exec("./newcode/Enabler 14 Bit.cs"); exec("./newcode/Enabler 14 Bit.cs");
exec("./newcode/Enabler 14 Bit Up.cs");
exec("./newcode/Enabler 14 Bit Down.cs");
exec("./newcode/Enabler 15 Bit.cs"); exec("./newcode/Enabler 15 Bit.cs");
exec("./newcode/Enabler 15 Bit Up.cs");
exec("./newcode/Enabler 15 Bit Down.cs");
exec("./newcode/Enabler 16 Bit.cs"); exec("./newcode/Enabler 16 Bit.cs");
exec("./newcode/Enabler 16 Bit Up.cs");
exec("./newcode/Enabler 16 Bit Down.cs");
exec("./newcode/Enabler 24 Bit.cs"); exec("./newcode/Enabler 24 Bit.cs");
exec("./newcode/Enabler 24 Bit Up.cs");
exec("./newcode/Enabler 24 Bit Down.cs");
exec("./newcode/Enabler 32 Bit.cs"); exec("./newcode/Enabler 32 Bit.cs");
exec("./newcode/Enabler 32 Bit Up.cs");
exec("./newcode/Enabler 32 Bit Down.cs");
exec("./newcode/Enabler 48 Bit.cs"); exec("./newcode/Enabler 48 Bit.cs");
exec("./newcode/Enabler 48 Bit Up.cs");
exec("./newcode/Enabler 48 Bit Down.cs");
exec("./newcode/Enabler 64 Bit.cs"); exec("./newcode/Enabler 64 Bit.cs");
exec("./newcode/Enabler 64 Bit Up.cs");
exec("./newcode/Enabler 64 Bit Down.cs");
exec("./newcode/Enabler Active Low 1 Bit.cs"); exec("./newcode/Enabler Active Low 1 Bit.cs");
exec("./newcode/Enabler Active Low 1 Bit Up.cs");
exec("./newcode/Enabler Active Low 1 Bit Down.cs");
exec("./newcode/Enabler Active Low 2 Bit.cs"); exec("./newcode/Enabler Active Low 2 Bit.cs");
exec("./newcode/Enabler Active Low 2 Bit Up.cs");
exec("./newcode/Enabler Active Low 2 Bit Down.cs");
exec("./newcode/Enabler Active Low 3 Bit.cs"); exec("./newcode/Enabler Active Low 3 Bit.cs");
exec("./newcode/Enabler Active Low 3 Bit Up.cs");
exec("./newcode/Enabler Active Low 3 Bit Down.cs");
exec("./newcode/Enabler Active Low 4 Bit.cs"); exec("./newcode/Enabler Active Low 4 Bit.cs");
exec("./newcode/Enabler Active Low 4 Bit Up.cs");
exec("./newcode/Enabler Active Low 4 Bit Down.cs");
exec("./newcode/Enabler Active Low 5 Bit.cs"); exec("./newcode/Enabler Active Low 5 Bit.cs");
exec("./newcode/Enabler Active Low 5 Bit Up.cs");
exec("./newcode/Enabler Active Low 5 Bit Down.cs");
exec("./newcode/Enabler Active Low 6 Bit.cs"); exec("./newcode/Enabler Active Low 6 Bit.cs");
exec("./newcode/Enabler Active Low 6 Bit Up.cs");
exec("./newcode/Enabler Active Low 6 Bit Down.cs");
exec("./newcode/Enabler Active Low 7 Bit.cs"); exec("./newcode/Enabler Active Low 7 Bit.cs");
exec("./newcode/Enabler Active Low 7 Bit Up.cs");
exec("./newcode/Enabler Active Low 7 Bit Down.cs");
exec("./newcode/Enabler Active Low 8 Bit.cs"); exec("./newcode/Enabler Active Low 8 Bit.cs");
exec("./newcode/Enabler Active Low 8 Bit Up.cs");
exec("./newcode/Enabler Active Low 8 Bit Down.cs");
exec("./newcode/Enabler Active Low 9 Bit.cs"); exec("./newcode/Enabler Active Low 9 Bit.cs");
exec("./newcode/Enabler Active Low 9 Bit Up.cs");
exec("./newcode/Enabler Active Low 9 Bit Down.cs");
exec("./newcode/Enabler Active Low 10 Bit.cs"); exec("./newcode/Enabler Active Low 10 Bit.cs");
exec("./newcode/Enabler Active Low 10 Bit Up.cs");
exec("./newcode/Enabler Active Low 10 Bit Down.cs");
exec("./newcode/Enabler Active Low 11 Bit.cs"); exec("./newcode/Enabler Active Low 11 Bit.cs");
exec("./newcode/Enabler Active Low 11 Bit Up.cs");
exec("./newcode/Enabler Active Low 11 Bit Down.cs");
exec("./newcode/Enabler Active Low 12 Bit.cs"); exec("./newcode/Enabler Active Low 12 Bit.cs");
exec("./newcode/Enabler Active Low 12 Bit Up.cs");
exec("./newcode/Enabler Active Low 12 Bit Down.cs");
exec("./newcode/Enabler Active Low 13 Bit.cs"); exec("./newcode/Enabler Active Low 13 Bit.cs");
exec("./newcode/Enabler Active Low 13 Bit Up.cs");
exec("./newcode/Enabler Active Low 13 Bit Down.cs");
exec("./newcode/Enabler Active Low 14 Bit.cs"); exec("./newcode/Enabler Active Low 14 Bit.cs");
exec("./newcode/Enabler Active Low 14 Bit Up.cs");
exec("./newcode/Enabler Active Low 14 Bit Down.cs");
exec("./newcode/Enabler Active Low 15 Bit.cs"); exec("./newcode/Enabler Active Low 15 Bit.cs");
exec("./newcode/Enabler Active Low 15 Bit Up.cs");
exec("./newcode/Enabler Active Low 15 Bit Down.cs");
exec("./newcode/Enabler Active Low 16 Bit.cs"); exec("./newcode/Enabler Active Low 16 Bit.cs");
exec("./newcode/Enabler Active Low 16 Bit Up.cs");
exec("./newcode/Enabler Active Low 16 Bit Down.cs");
exec("./newcode/Enabler Active Low 24 Bit.cs"); exec("./newcode/Enabler Active Low 24 Bit.cs");
exec("./newcode/Enabler Active Low 24 Bit Up.cs");
exec("./newcode/Enabler Active Low 24 Bit Down.cs");
exec("./newcode/Enabler Active Low 32 Bit.cs"); exec("./newcode/Enabler Active Low 32 Bit.cs");
exec("./newcode/Enabler Active Low 32 Bit Up.cs");
exec("./newcode/Enabler Active Low 32 Bit Down.cs");
exec("./newcode/Enabler Active Low 48 Bit.cs"); exec("./newcode/Enabler Active Low 48 Bit.cs");
exec("./newcode/Enabler Active Low 48 Bit Up.cs");
exec("./newcode/Enabler Active Low 48 Bit Down.cs");
exec("./newcode/Enabler Active Low 64 Bit.cs"); exec("./newcode/Enabler Active Low 64 Bit.cs");
exec("./newcode/Enabler Active Low 64 Bit Up.cs");
exec("./newcode/Enabler Active Low 64 Bit Down.cs");
exec("./newcode/Demux 1 Bit.cs"); exec("./newcode/Demux 1 Bit.cs");
exec("./newcode/Demux 1 Bit Vertical.cs"); exec("./newcode/Demux 1 Bit Vertical.cs");
exec("./newcode/Mux 1 Bit.cs");
exec("./newcode/Mux 1 Bit Vertical.cs");
exec("./newcode/Demux 2 Bit.cs"); exec("./newcode/Demux 2 Bit.cs");
exec("./newcode/Demux 2 Bit Vertical.cs"); exec("./newcode/Demux 2 Bit Vertical.cs");
exec("./newcode/Mux 2 Bit.cs");
exec("./newcode/Mux 2 Bit Vertical.cs");
exec("./newcode/Demux 3 Bit.cs"); exec("./newcode/Demux 3 Bit.cs");
exec("./newcode/Demux 3 Bit Vertical.cs"); exec("./newcode/Demux 3 Bit Vertical.cs");
exec("./newcode/Mux 3 Bit.cs");
exec("./newcode/Mux 3 Bit Vertical.cs");
exec("./newcode/Demux 4 Bit.cs"); exec("./newcode/Demux 4 Bit.cs");
exec("./newcode/Demux 4 Bit Vertical.cs"); exec("./newcode/Demux 4 Bit Vertical.cs");
exec("./newcode/Mux 4 Bit.cs");
exec("./newcode/Mux 4 Bit Vertical.cs");
exec("./newcode/Demux 5 Bit.cs"); exec("./newcode/Demux 5 Bit.cs");
exec("./newcode/Demux 5 Bit Vertical.cs"); exec("./newcode/Demux 5 Bit Vertical.cs");
exec("./newcode/Mux 5 Bit.cs");
exec("./newcode/Mux 5 Bit Vertical.cs");
exec("./newcode/Demux 6 Bit.cs"); exec("./newcode/Demux 6 Bit.cs");
exec("./newcode/Demux 6 Bit Vertical.cs"); exec("./newcode/Demux 6 Bit Vertical.cs");
exec("./newcode/Mux 6 Bit.cs");
exec("./newcode/Mux 6 Bit Vertical.cs");
exec("./newcode/ROM 16x16.cs"); exec("./newcode/ROM 16x16.cs");

View File

@ -343,7 +343,7 @@ NORMALS:
0 1 0 0 1 0
0 1 0 0 1 0
----------------east quads: ----------------east quads:
1 6
TEX:SIDE TEX:SIDE
POSITION: POSITION:
@ -361,6 +361,116 @@ NORMALS:
1 0 0 1 0 0
1 0 0 1 0 0
1 0 0 1 0 0
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 0.4 -0.3
0.5 0.4 -0.3
0.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 -0.4 0.3
0.64 0.4 0.3
0.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 0.4 0.3
0.64 -0.4 0.3
0.5 -0.4 0.3
0.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.64 0.4 -0.3
0.64 0.4 0.3
0.5 0.4 0.3
0.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.64 -0.4 0.3
0.64 -0.4 -0.3
0.5 -0.4 -0.3
0.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads: ----------------south quads:
1 1

View File

@ -343,7 +343,7 @@ NORMALS:
0 1 0 0 1 0
0 1 0 0 1 0
----------------east quads: ----------------east quads:
1 6
TEX:SIDE TEX:SIDE
POSITION: POSITION:
@ -361,6 +361,116 @@ NORMALS:
1 0 0 1 0 0
1 0 0 1 0 0
1 0 0 1 0 0
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 0.4 -0.3
0.5 0.4 -0.3
0.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 -0.4 0.3
0.64 0.4 0.3
0.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 0.4 0.3
0.64 -0.4 0.3
0.5 -0.4 0.3
0.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.64 0.4 -0.3
0.64 0.4 0.3
0.5 0.4 0.3
0.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.64 -0.4 0.3
0.64 -0.4 -0.3
0.5 -0.4 -0.3
0.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads: ----------------south quads:
1 1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,733 @@
2 1 1
SPECIAL
bb
1
0 0 0
2 1 1
COVERAGE:
1 : 2
1 : 2
1 : 2
1 : 1
1 : 2
1 : 1
----------------top quads:
11
TEX:PRINT
POSITION:
1 0.5 0.5
1 -0.5 0.5
-1 -0.5 0.5
-1 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.1 -0.4 0.75
0.9 -0.4 0.75
0.9 -0.4 0.5
0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.1 -0.4 0.75
0.1 0.4 0.75
0.9 0.4 0.75
0.9 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.9 0.4 0.75
0.1 0.4 0.75
0.1 0.4 0.5
0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.1 0.4 0.75
0.1 -0.4 0.75
0.1 -0.4 0.5
0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
0.9 -0.4 0.75
0.9 0.4 0.75
0.9 0.4 0.5
0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.9 -0.4 0.75
-0.1 -0.4 0.75
-0.1 -0.4 0.5
-0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.9 -0.4 0.75
-0.9 0.4 0.75
-0.1 0.4 0.75
-0.1 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.1 0.4 0.75
-0.9 0.4 0.75
-0.9 0.4 0.5
-0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.9 0.4 0.75
-0.9 -0.4 0.75
-0.9 -0.4 0.5
-0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
-0.1 -0.4 0.75
-0.1 0.4 0.75
-0.1 0.4 0.5
-0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
----------------bottom quads:
14
TEX:BOTTOMEDGE
POSITION:
-1 -0.5 -0.5
1 -0.5 -0.5
0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 0.5 -0.5
-1 0.5 -0.5
-0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 -0.5 -0.5
1 0.5 -0.5
0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1 0.5 -0.5
-1 -0.5 -0.5
-0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.82 -0.32 -0.875
0.18 -0.32 -0.875
0.1 -0.4 -0.5
0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
0.82 -0.32 -0.875
0.82 0.32 -0.875
0.18 0.32 -0.875
0.18 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.18 0.32 -0.875
0.82 0.32 -0.875
0.9 0.4 -0.5
0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
0.82 0.32 -0.875
0.82 -0.32 -0.875
0.9 -0.4 -0.5
0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
0.18 -0.32 -0.875
0.18 0.32 -0.875
0.1 0.4 -0.5
0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
TEX:SIDE
POSITION:
-0.18 -0.32 -0.875
-0.82 -0.32 -0.875
-0.9 -0.4 -0.5
-0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
-0.18 -0.32 -0.875
-0.18 0.32 -0.875
-0.82 0.32 -0.875
-0.82 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.82 0.32 -0.875
-0.18 0.32 -0.875
-0.1 0.4 -0.5
-0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
-0.18 0.32 -0.875
-0.18 -0.32 -0.875
-0.1 -0.4 -0.5
-0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
-0.82 -0.32 -0.875
-0.82 0.32 -0.875
-0.9 0.4 -0.5
-0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
----------------north quads:
1
TEX:SIDE
POSITION:
-1 0.5 0.5
-1 0.5 -0.5
1 0.5 -0.5
1 0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1 -0.5 0.5
1 0.5 0.5
1 0.5 -0.5
1 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 0.4 -0.3
1 0.4 -0.3
1 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 -0.4 0.3
1.14 0.4 0.3
1.14 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 0.4 0.3
1.14 -0.4 0.3
1 -0.4 0.3
1 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.14 0.4 -0.3
1.14 0.4 0.3
1 0.4 0.3
1 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.14 -0.4 0.3
1.14 -0.4 -0.3
1 -0.4 -0.3
1 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1 -0.5 0.5
1 -0.5 -0.5
-1 -0.5 -0.5
-1 -0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1 -0.5 -0.5
-1 0.5 -0.5
-1 0.5 0.5
-1 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

View File

@ -0,0 +1,733 @@
2 1 1
SPECIAL
bb
1
0 0 0
2 1 1
COVERAGE:
1 : 2
1 : 2
1 : 2
1 : 1
1 : 2
1 : 1
----------------top quads:
11
TEX:PRINT
POSITION:
1 0.5 0.5
1 -0.5 0.5
-1 -0.5 0.5
-1 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.18 -0.32 0.875
0.82 -0.32 0.875
0.9 -0.4 0.5
0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
0.18 -0.32 0.875
0.18 0.32 0.875
0.82 0.32 0.875
0.82 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.82 0.32 0.875
0.18 0.32 0.875
0.1 0.4 0.5
0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
0.18 0.32 0.875
0.18 -0.32 0.875
0.1 -0.4 0.5
0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
0.82 -0.32 0.875
0.82 0.32 0.875
0.9 0.4 0.5
0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.82 -0.32 0.875
-0.18 -0.32 0.875
-0.1 -0.4 0.5
-0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
-0.82 -0.32 0.875
-0.82 0.32 0.875
-0.18 0.32 0.875
-0.18 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.18 0.32 0.875
-0.82 0.32 0.875
-0.9 0.4 0.5
-0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
-0.82 0.32 0.875
-0.82 -0.32 0.875
-0.9 -0.4 0.5
-0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.18 -0.32 0.875
-0.18 0.32 0.875
-0.1 0.4 0.5
-0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
----------------bottom quads:
14
TEX:BOTTOMEDGE
POSITION:
-1 -0.5 -0.5
1 -0.5 -0.5
0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 0.5 -0.5
-1 0.5 -0.5
-0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 -0.5 -0.5
1 0.5 -0.5
0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1 0.5 -0.5
-1 -0.5 -0.5
-0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.9 -0.4 -0.75
0.1 -0.4 -0.75
0.1 -0.4 -0.5
0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.9 -0.4 -0.75
0.9 0.4 -0.75
0.1 0.4 -0.75
0.1 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.1 0.4 -0.75
0.9 0.4 -0.75
0.9 0.4 -0.5
0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.9 0.4 -0.75
0.9 -0.4 -0.75
0.9 -0.4 -0.5
0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.1 -0.4 -0.75
0.1 0.4 -0.75
0.1 0.4 -0.5
0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
TEX:SIDE
POSITION:
-0.1 -0.4 -0.75
-0.9 -0.4 -0.75
-0.9 -0.4 -0.5
-0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.1 -0.4 -0.75
-0.1 0.4 -0.75
-0.9 0.4 -0.75
-0.9 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.9 0.4 -0.75
-0.1 0.4 -0.75
-0.1 0.4 -0.5
-0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.1 0.4 -0.75
-0.1 -0.4 -0.75
-0.1 -0.4 -0.5
-0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.9 -0.4 -0.75
-0.9 0.4 -0.75
-0.9 0.4 -0.5
-0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
----------------north quads:
1
TEX:SIDE
POSITION:
-1 0.5 0.5
-1 0.5 -0.5
1 0.5 -0.5
1 0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1 -0.5 0.5
1 0.5 0.5
1 0.5 -0.5
1 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 0.4 -0.3
1 0.4 -0.3
1 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 -0.4 0.3
1.14 0.4 0.3
1.14 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 0.4 0.3
1.14 -0.4 0.3
1 -0.4 0.3
1 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.14 0.4 -0.3
1.14 0.4 0.3
1 0.4 0.3
1 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.14 -0.4 0.3
1.14 -0.4 -0.3
1 -0.4 -0.3
1 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1 -0.5 0.5
1 -0.5 -0.5
-1 -0.5 -0.5
-1 -0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1 -0.5 -0.5
-1 0.5 -0.5
-1 0.5 0.5
-1 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,953 @@
3 1 1
SPECIAL
bbb
1
0 0 0
3 1 1
COVERAGE:
1 : 3
1 : 3
1 : 3
1 : 1
1 : 3
1 : 1
----------------top quads:
16
TEX:PRINT
POSITION:
1.5 0.5 0.5
1.5 -0.5 0.5
-1.5 -0.5 0.5
-1.5 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.6 -0.4 0.75
1.4 -0.4 0.75
1.4 -0.4 0.5
0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.6 -0.4 0.75
0.6 0.4 0.75
1.4 0.4 0.75
1.4 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.4 0.4 0.75
0.6 0.4 0.75
0.6 0.4 0.5
1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.6 0.4 0.75
0.6 -0.4 0.75
0.6 -0.4 0.5
0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
1.4 -0.4 0.75
1.4 0.4 0.75
1.4 0.4 0.5
1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.4 -0.4 0.75
0.4 -0.4 0.75
0.4 -0.4 0.5
-0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.4 -0.4 0.75
-0.4 0.4 0.75
0.4 0.4 0.75
0.4 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.4 0.4 0.75
-0.4 0.4 0.75
-0.4 0.4 0.5
0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.4 0.4 0.75
-0.4 -0.4 0.75
-0.4 -0.4 0.5
-0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
0.4 -0.4 0.75
0.4 0.4 0.75
0.4 0.4 0.5
0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-1.4 -0.4 0.75
-0.6 -0.4 0.75
-0.6 -0.4 0.5
-1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-1.4 -0.4 0.75
-1.4 0.4 0.75
-0.6 0.4 0.75
-0.6 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.6 0.4 0.75
-1.4 0.4 0.75
-1.4 0.4 0.5
-0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-1.4 0.4 0.75
-1.4 -0.4 0.75
-1.4 -0.4 0.5
-1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
-0.6 -0.4 0.75
-0.6 0.4 0.75
-0.6 0.4 0.5
-0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
----------------bottom quads:
19
TEX:BOTTOMEDGE
POSITION:
-1.5 -0.5 -0.5
1.5 -0.5 -0.5
1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 0.5 -0.5
-1.5 0.5 -0.5
-1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 -0.5 -0.5
1.5 0.5 -0.5
1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1.5 0.5 -0.5
-1.5 -0.5 -0.5
-1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.32 -0.32 -0.875
0.68 -0.32 -0.875
0.6 -0.4 -0.5
1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
1.32 -0.32 -0.875
1.32 0.32 -0.875
0.68 0.32 -0.875
0.68 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.68 0.32 -0.875
1.32 0.32 -0.875
1.4 0.4 -0.5
0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
1.32 0.32 -0.875
1.32 -0.32 -0.875
1.4 -0.4 -0.5
1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
0.68 -0.32 -0.875
0.68 0.32 -0.875
0.6 0.4 -0.5
0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
TEX:SIDE
POSITION:
0.32 -0.32 -0.875
-0.32 -0.32 -0.875
-0.4 -0.4 -0.5
0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
0.32 -0.32 -0.875
0.32 0.32 -0.875
-0.32 0.32 -0.875
-0.32 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.32 0.32 -0.875
0.32 0.32 -0.875
0.4 0.4 -0.5
-0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
0.32 0.32 -0.875
0.32 -0.32 -0.875
0.4 -0.4 -0.5
0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 -0.875
-0.32 0.32 -0.875
-0.4 0.4 -0.5
-0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
TEX:SIDE
POSITION:
-0.68 -0.32 -0.875
-1.32 -0.32 -0.875
-1.4 -0.4 -0.5
-0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
-0.68 -0.32 -0.875
-0.68 0.32 -0.875
-1.32 0.32 -0.875
-1.32 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-1.32 0.32 -0.875
-0.68 0.32 -0.875
-0.6 0.4 -0.5
-1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
-0.68 0.32 -0.875
-0.68 -0.32 -0.875
-0.6 -0.4 -0.5
-0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
-1.32 -0.32 -0.875
-1.32 0.32 -0.875
-1.4 0.4 -0.5
-1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
----------------north quads:
1
TEX:SIDE
POSITION:
-1.5 0.5 0.5
-1.5 0.5 -0.5
1.5 0.5 -0.5
1.5 0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 0.5 0.5
1.5 0.5 -0.5
1.5 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 0.4 -0.3
1.5 0.4 -0.3
1.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 -0.4 0.3
1.64 0.4 0.3
1.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 0.4 0.3
1.64 -0.4 0.3
1.5 -0.4 0.3
1.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.64 0.4 -0.3
1.64 0.4 0.3
1.5 0.4 0.3
1.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.64 -0.4 0.3
1.64 -0.4 -0.3
1.5 -0.4 -0.3
1.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 -0.5 -0.5
-1.5 -0.5 -0.5
-1.5 -0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1.5 -0.5 -0.5
-1.5 0.5 -0.5
-1.5 0.5 0.5
-1.5 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

View File

@ -0,0 +1,953 @@
3 1 1
SPECIAL
bbb
1
0 0 0
3 1 1
COVERAGE:
1 : 3
1 : 3
1 : 3
1 : 1
1 : 3
1 : 1
----------------top quads:
16
TEX:PRINT
POSITION:
1.5 0.5 0.5
1.5 -0.5 0.5
-1.5 -0.5 0.5
-1.5 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.68 -0.32 0.875
1.32 -0.32 0.875
1.4 -0.4 0.5
0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
0.68 -0.32 0.875
0.68 0.32 0.875
1.32 0.32 0.875
1.32 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.32 0.32 0.875
0.68 0.32 0.875
0.6 0.4 0.5
1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
0.68 0.32 0.875
0.68 -0.32 0.875
0.6 -0.4 0.5
0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
1.32 -0.32 0.875
1.32 0.32 0.875
1.4 0.4 0.5
1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 0.875
0.32 -0.32 0.875
0.4 -0.4 0.5
-0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 0.875
-0.32 0.32 0.875
0.32 0.32 0.875
0.32 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.32 0.32 0.875
-0.32 0.32 0.875
-0.4 0.4 0.5
0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
-0.32 0.32 0.875
-0.32 -0.32 0.875
-0.4 -0.4 0.5
-0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
0.32 -0.32 0.875
0.32 0.32 0.875
0.4 0.4 0.5
0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
TEX:SIDE
POSITION:
-1.32 -0.32 0.875
-0.68 -0.32 0.875
-0.6 -0.4 0.5
-1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
-1.32 -0.32 0.875
-1.32 0.32 0.875
-0.68 0.32 0.875
-0.68 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.68 0.32 0.875
-1.32 0.32 0.875
-1.4 0.4 0.5
-0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
-1.32 0.32 0.875
-1.32 -0.32 0.875
-1.4 -0.4 0.5
-1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.68 -0.32 0.875
-0.68 0.32 0.875
-0.6 0.4 0.5
-0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
----------------bottom quads:
19
TEX:BOTTOMEDGE
POSITION:
-1.5 -0.5 -0.5
1.5 -0.5 -0.5
1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 0.5 -0.5
-1.5 0.5 -0.5
-1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 -0.5 -0.5
1.5 0.5 -0.5
1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1.5 0.5 -0.5
-1.5 -0.5 -0.5
-1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.4 -0.4 -0.75
0.6 -0.4 -0.75
0.6 -0.4 -0.5
1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
1.4 -0.4 -0.75
1.4 0.4 -0.75
0.6 0.4 -0.75
0.6 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.6 0.4 -0.75
1.4 0.4 -0.75
1.4 0.4 -0.5
0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.4 0.4 -0.75
1.4 -0.4 -0.75
1.4 -0.4 -0.5
1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.6 -0.4 -0.75
0.6 0.4 -0.75
0.6 0.4 -0.5
0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
TEX:SIDE
POSITION:
0.4 -0.4 -0.75
-0.4 -0.4 -0.75
-0.4 -0.4 -0.5
0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.4 -0.4 -0.75
0.4 0.4 -0.75
-0.4 0.4 -0.75
-0.4 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.4 0.4 -0.75
0.4 0.4 -0.75
0.4 0.4 -0.5
-0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.4 0.4 -0.75
0.4 -0.4 -0.75
0.4 -0.4 -0.5
0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.4 -0.4 -0.75
-0.4 0.4 -0.75
-0.4 0.4 -0.5
-0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
TEX:SIDE
POSITION:
-0.6 -0.4 -0.75
-1.4 -0.4 -0.75
-1.4 -0.4 -0.5
-0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.6 -0.4 -0.75
-0.6 0.4 -0.75
-1.4 0.4 -0.75
-1.4 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-1.4 0.4 -0.75
-0.6 0.4 -0.75
-0.6 0.4 -0.5
-1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.6 0.4 -0.75
-0.6 -0.4 -0.75
-0.6 -0.4 -0.5
-0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-1.4 -0.4 -0.75
-1.4 0.4 -0.75
-1.4 0.4 -0.5
-1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
----------------north quads:
1
TEX:SIDE
POSITION:
-1.5 0.5 0.5
-1.5 0.5 -0.5
1.5 0.5 -0.5
1.5 0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 0.5 0.5
1.5 0.5 -0.5
1.5 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 0.4 -0.3
1.5 0.4 -0.3
1.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 -0.4 0.3
1.64 0.4 0.3
1.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 0.4 0.3
1.64 -0.4 0.3
1.5 -0.4 0.3
1.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.64 0.4 -0.3
1.64 0.4 0.3
1.5 0.4 0.3
1.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.64 -0.4 0.3
1.64 -0.4 -0.3
1.5 -0.4 -0.3
1.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 -0.5 -0.5
-1.5 -0.5 -0.5
-1.5 -0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1.5 -0.5 -0.5
-1.5 0.5 -0.5
-1.5 0.5 0.5
-1.5 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -343,7 +343,7 @@ NORMALS:
0 1 0 0 1 0
0 1 0 0 1 0
----------------east quads: ----------------east quads:
1 6
TEX:SIDE TEX:SIDE
POSITION: POSITION:
@ -361,6 +361,116 @@ NORMALS:
1 0 0 1 0 0
1 0 0 1 0 0
1 0 0 1 0 0
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 0.4 -0.3
0.5 0.4 -0.3
0.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 -0.4 0.3
0.64 0.4 0.3
0.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 0.4 0.3
0.64 -0.4 0.3
0.5 -0.4 0.3
0.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.64 0.4 -0.3
0.64 0.4 0.3
0.5 0.4 0.3
0.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.64 -0.4 0.3
0.64 -0.4 -0.3
0.5 -0.4 -0.3
0.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads: ----------------south quads:
1 1

View File

@ -343,7 +343,7 @@ NORMALS:
0 1 0 0 1 0
0 1 0 0 1 0
----------------east quads: ----------------east quads:
1 6
TEX:SIDE TEX:SIDE
POSITION: POSITION:
@ -361,6 +361,116 @@ NORMALS:
1 0 0 1 0 0
1 0 0 1 0 0
1 0 0 1 0 0
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 0.4 -0.3
0.5 0.4 -0.3
0.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 -0.4 0.3
0.64 0.4 0.3
0.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 0.4 0.3
0.64 -0.4 0.3
0.5 -0.4 0.3
0.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.64 0.4 -0.3
0.64 0.4 0.3
0.5 0.4 0.3
0.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.64 -0.4 0.3
0.64 -0.4 -0.3
0.5 -0.4 -0.3
0.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads: ----------------south quads:
1 1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,733 @@
2 1 1
SPECIAL
bb
1
0 0 0
2 1 1
COVERAGE:
1 : 2
1 : 2
1 : 2
1 : 1
1 : 2
1 : 1
----------------top quads:
11
TEX:PRINT
POSITION:
1 0.5 0.5
1 -0.5 0.5
-1 -0.5 0.5
-1 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.1 -0.4 0.75
0.9 -0.4 0.75
0.9 -0.4 0.5
0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.1 -0.4 0.75
0.1 0.4 0.75
0.9 0.4 0.75
0.9 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.9 0.4 0.75
0.1 0.4 0.75
0.1 0.4 0.5
0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.1 0.4 0.75
0.1 -0.4 0.75
0.1 -0.4 0.5
0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
0.9 -0.4 0.75
0.9 0.4 0.75
0.9 0.4 0.5
0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.9 -0.4 0.75
-0.1 -0.4 0.75
-0.1 -0.4 0.5
-0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.9 -0.4 0.75
-0.9 0.4 0.75
-0.1 0.4 0.75
-0.1 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.1 0.4 0.75
-0.9 0.4 0.75
-0.9 0.4 0.5
-0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.9 0.4 0.75
-0.9 -0.4 0.75
-0.9 -0.4 0.5
-0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
-0.1 -0.4 0.75
-0.1 0.4 0.75
-0.1 0.4 0.5
-0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
----------------bottom quads:
14
TEX:BOTTOMEDGE
POSITION:
-1 -0.5 -0.5
1 -0.5 -0.5
0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 0.5 -0.5
-1 0.5 -0.5
-0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 -0.5 -0.5
1 0.5 -0.5
0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1 0.5 -0.5
-1 -0.5 -0.5
-0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.82 -0.32 -0.875
0.18 -0.32 -0.875
0.1 -0.4 -0.5
0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
0.82 -0.32 -0.875
0.82 0.32 -0.875
0.18 0.32 -0.875
0.18 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.18 0.32 -0.875
0.82 0.32 -0.875
0.9 0.4 -0.5
0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
0.82 0.32 -0.875
0.82 -0.32 -0.875
0.9 -0.4 -0.5
0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
0.18 -0.32 -0.875
0.18 0.32 -0.875
0.1 0.4 -0.5
0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
TEX:SIDE
POSITION:
-0.18 -0.32 -0.875
-0.82 -0.32 -0.875
-0.9 -0.4 -0.5
-0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
-0.18 -0.32 -0.875
-0.18 0.32 -0.875
-0.82 0.32 -0.875
-0.82 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.82 0.32 -0.875
-0.18 0.32 -0.875
-0.1 0.4 -0.5
-0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
-0.18 0.32 -0.875
-0.18 -0.32 -0.875
-0.1 -0.4 -0.5
-0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
-0.82 -0.32 -0.875
-0.82 0.32 -0.875
-0.9 0.4 -0.5
-0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
----------------north quads:
1
TEX:SIDE
POSITION:
-1 0.5 0.5
-1 0.5 -0.5
1 0.5 -0.5
1 0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1 -0.5 0.5
1 0.5 0.5
1 0.5 -0.5
1 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 0.4 -0.3
1 0.4 -0.3
1 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 -0.4 0.3
1.14 0.4 0.3
1.14 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 0.4 0.3
1.14 -0.4 0.3
1 -0.4 0.3
1 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.14 0.4 -0.3
1.14 0.4 0.3
1 0.4 0.3
1 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.14 -0.4 0.3
1.14 -0.4 -0.3
1 -0.4 -0.3
1 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1 -0.5 0.5
1 -0.5 -0.5
-1 -0.5 -0.5
-1 -0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1 -0.5 -0.5
-1 0.5 -0.5
-1 0.5 0.5
-1 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

View File

@ -0,0 +1,733 @@
2 1 1
SPECIAL
bb
1
0 0 0
2 1 1
COVERAGE:
1 : 2
1 : 2
1 : 2
1 : 1
1 : 2
1 : 1
----------------top quads:
11
TEX:PRINT
POSITION:
1 0.5 0.5
1 -0.5 0.5
-1 -0.5 0.5
-1 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.18 -0.32 0.875
0.82 -0.32 0.875
0.9 -0.4 0.5
0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
0.18 -0.32 0.875
0.18 0.32 0.875
0.82 0.32 0.875
0.82 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.82 0.32 0.875
0.18 0.32 0.875
0.1 0.4 0.5
0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
0.18 0.32 0.875
0.18 -0.32 0.875
0.1 -0.4 0.5
0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
0.82 -0.32 0.875
0.82 0.32 0.875
0.9 0.4 0.5
0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.82 -0.32 0.875
-0.18 -0.32 0.875
-0.1 -0.4 0.5
-0.9 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
-0.82 -0.32 0.875
-0.82 0.32 0.875
-0.18 0.32 0.875
-0.18 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.18 0.32 0.875
-0.82 0.32 0.875
-0.9 0.4 0.5
-0.1 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
-0.82 0.32 0.875
-0.82 -0.32 0.875
-0.9 -0.4 0.5
-0.9 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.18 -0.32 0.875
-0.18 0.32 0.875
-0.1 0.4 0.5
-0.1 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
----------------bottom quads:
14
TEX:BOTTOMEDGE
POSITION:
-1 -0.5 -0.5
1 -0.5 -0.5
0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 0.5 -0.5
-1 0.5 -0.5
-0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
1.5 0
1 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1 -0.5 -0.5
1 0.5 -0.5
0.5 0 -0.5
0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1 0.5 -0.5
-1 -0.5 -0.5
-0.5 0 -0.5
-0.5 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.9 -0.4 -0.75
0.1 -0.4 -0.75
0.1 -0.4 -0.5
0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.9 -0.4 -0.75
0.9 0.4 -0.75
0.1 0.4 -0.75
0.1 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.1 0.4 -0.75
0.9 0.4 -0.75
0.9 0.4 -0.5
0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.9 0.4 -0.75
0.9 -0.4 -0.75
0.9 -0.4 -0.5
0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.1 -0.4 -0.75
0.1 0.4 -0.75
0.1 0.4 -0.5
0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
TEX:SIDE
POSITION:
-0.1 -0.4 -0.75
-0.9 -0.4 -0.75
-0.9 -0.4 -0.5
-0.1 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.1 -0.4 -0.75
-0.1 0.4 -0.75
-0.9 0.4 -0.75
-0.9 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.9 0.4 -0.75
-0.1 0.4 -0.75
-0.1 0.4 -0.5
-0.9 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.1 0.4 -0.75
-0.1 -0.4 -0.75
-0.1 -0.4 -0.5
-0.1 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.9 -0.4 -0.75
-0.9 0.4 -0.75
-0.9 0.4 -0.5
-0.9 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
----------------north quads:
1
TEX:SIDE
POSITION:
-1 0.5 0.5
-1 0.5 -0.5
1 0.5 -0.5
1 0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1 -0.5 0.5
1 0.5 0.5
1 0.5 -0.5
1 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 0.4 -0.3
1 0.4 -0.3
1 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.14 -0.4 -0.3
1.14 -0.4 0.3
1.14 0.4 0.3
1.14 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.14 0.4 0.3
1.14 -0.4 0.3
1 -0.4 0.3
1 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.14 0.4 -0.3
1.14 0.4 0.3
1 0.4 0.3
1 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.14 -0.4 0.3
1.14 -0.4 -0.3
1 -0.4 -0.3
1 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1 -0.5 0.5
1 -0.5 -0.5
-1 -0.5 -0.5
-1 -0.5 0.5
UV COORDS:
1 -0.0859375
1 1.0859375
0 1.0859375
0 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1 -0.5 -0.5
-1 0.5 -0.5
-1 0.5 0.5
-1 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,953 @@
3 1 1
SPECIAL
bbb
1
0 0 0
3 1 1
COVERAGE:
1 : 3
1 : 3
1 : 3
1 : 1
1 : 3
1 : 1
----------------top quads:
16
TEX:PRINT
POSITION:
1.5 0.5 0.5
1.5 -0.5 0.5
-1.5 -0.5 0.5
-1.5 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.6 -0.4 0.75
1.4 -0.4 0.75
1.4 -0.4 0.5
0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.6 -0.4 0.75
0.6 0.4 0.75
1.4 0.4 0.75
1.4 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.4 0.4 0.75
0.6 0.4 0.75
0.6 0.4 0.5
1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.6 0.4 0.75
0.6 -0.4 0.75
0.6 -0.4 0.5
0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
1.4 -0.4 0.75
1.4 0.4 0.75
1.4 0.4 0.5
1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.4 -0.4 0.75
0.4 -0.4 0.75
0.4 -0.4 0.5
-0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.4 -0.4 0.75
-0.4 0.4 0.75
0.4 0.4 0.75
0.4 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.4 0.4 0.75
-0.4 0.4 0.75
-0.4 0.4 0.5
0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.4 0.4 0.75
-0.4 -0.4 0.75
-0.4 -0.4 0.5
-0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
0.4 -0.4 0.75
0.4 0.4 0.75
0.4 0.4 0.5
0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-1.4 -0.4 0.75
-0.6 -0.4 0.75
-0.6 -0.4 0.5
-1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-1.4 -0.4 0.75
-1.4 0.4 0.75
-0.6 0.4 0.75
-0.6 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.6 0.4 0.75
-1.4 0.4 0.75
-1.4 0.4 0.5
-0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-1.4 0.4 0.75
-1.4 -0.4 0.75
-1.4 -0.4 0.5
-1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
-0.6 -0.4 0.75
-0.6 0.4 0.75
-0.6 0.4 0.5
-0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
----------------bottom quads:
19
TEX:BOTTOMEDGE
POSITION:
-1.5 -0.5 -0.5
1.5 -0.5 -0.5
1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 0.5 -0.5
-1.5 0.5 -0.5
-1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 -0.5 -0.5
1.5 0.5 -0.5
1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1.5 0.5 -0.5
-1.5 -0.5 -0.5
-1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.32 -0.32 -0.875
0.68 -0.32 -0.875
0.6 -0.4 -0.5
1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
1.32 -0.32 -0.875
1.32 0.32 -0.875
0.68 0.32 -0.875
0.68 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.68 0.32 -0.875
1.32 0.32 -0.875
1.4 0.4 -0.5
0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
1.32 0.32 -0.875
1.32 -0.32 -0.875
1.4 -0.4 -0.5
1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
0.68 -0.32 -0.875
0.68 0.32 -0.875
0.6 0.4 -0.5
0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
TEX:SIDE
POSITION:
0.32 -0.32 -0.875
-0.32 -0.32 -0.875
-0.4 -0.4 -0.5
0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
0.32 -0.32 -0.875
0.32 0.32 -0.875
-0.32 0.32 -0.875
-0.32 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.32 0.32 -0.875
0.32 0.32 -0.875
0.4 0.4 -0.5
-0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
0.32 0.32 -0.875
0.32 -0.32 -0.875
0.4 -0.4 -0.5
0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 -0.875
-0.32 0.32 -0.875
-0.4 0.4 -0.5
-0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
TEX:SIDE
POSITION:
-0.68 -0.32 -0.875
-1.32 -0.32 -0.875
-1.4 -0.4 -0.5
-0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
-0.68 -0.32 -0.875
-0.68 0.32 -0.875
-1.32 0.32 -0.875
-1.32 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-1.32 0.32 -0.875
-0.68 0.32 -0.875
-0.6 0.4 -0.5
-1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
-0.68 0.32 -0.875
-0.68 -0.32 -0.875
-0.6 -0.4 -0.5
-0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
-1.32 -0.32 -0.875
-1.32 0.32 -0.875
-1.4 0.4 -0.5
-1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
----------------north quads:
1
TEX:SIDE
POSITION:
-1.5 0.5 0.5
-1.5 0.5 -0.5
1.5 0.5 -0.5
1.5 0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 0.5 0.5
1.5 0.5 -0.5
1.5 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 0.4 -0.3
1.5 0.4 -0.3
1.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 -0.4 0.3
1.64 0.4 0.3
1.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 0.4 0.3
1.64 -0.4 0.3
1.5 -0.4 0.3
1.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.64 0.4 -0.3
1.64 0.4 0.3
1.5 0.4 0.3
1.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.64 -0.4 0.3
1.64 -0.4 -0.3
1.5 -0.4 -0.3
1.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 -0.5 -0.5
-1.5 -0.5 -0.5
-1.5 -0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1.5 -0.5 -0.5
-1.5 0.5 -0.5
-1.5 0.5 0.5
-1.5 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

View File

@ -0,0 +1,953 @@
3 1 1
SPECIAL
bbb
1
0 0 0
3 1 1
COVERAGE:
1 : 3
1 : 3
1 : 3
1 : 1
1 : 3
1 : 1
----------------top quads:
16
TEX:PRINT
POSITION:
1.5 0.5 0.5
1.5 -0.5 0.5
-1.5 -0.5 0.5
-1.5 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.68 -0.32 0.875
1.32 -0.32 0.875
1.4 -0.4 0.5
0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
0.68 -0.32 0.875
0.68 0.32 0.875
1.32 0.32 0.875
1.32 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.32 0.32 0.875
0.68 0.32 0.875
0.6 0.4 0.5
1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
0.68 0.32 0.875
0.68 -0.32 0.875
0.6 -0.4 0.5
0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
1.32 -0.32 0.875
1.32 0.32 0.875
1.4 0.4 0.5
1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 0.875
0.32 -0.32 0.875
0.4 -0.4 0.5
-0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 0.875
-0.32 0.32 0.875
0.32 0.32 0.875
0.32 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.32 0.32 0.875
-0.32 0.32 0.875
-0.4 0.4 0.5
0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
-0.32 0.32 0.875
-0.32 -0.32 0.875
-0.4 -0.4 0.5
-0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
0.32 -0.32 0.875
0.32 0.32 0.875
0.4 0.4 0.5
0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
TEX:SIDE
POSITION:
-1.32 -0.32 0.875
-0.68 -0.32 0.875
-0.6 -0.4 0.5
-1.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
-1.32 -0.32 0.875
-1.32 0.32 0.875
-0.68 0.32 0.875
-0.68 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.68 0.32 0.875
-1.32 0.32 0.875
-1.4 0.4 0.5
-0.6 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
-1.32 0.32 0.875
-1.32 -0.32 0.875
-1.4 -0.4 0.5
-1.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
-0.68 -0.32 0.875
-0.68 0.32 0.875
-0.6 0.4 0.5
-0.6 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
----------------bottom quads:
19
TEX:BOTTOMEDGE
POSITION:
-1.5 -0.5 -0.5
1.5 -0.5 -0.5
1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 0.5 -0.5
-1.5 0.5 -0.5
-1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
2.5 0
2 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
1.5 -0.5 -0.5
1.5 0.5 -0.5
1 0 -0.5
1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-1.5 0.5 -0.5
-1.5 -0.5 -0.5
-1 0 -0.5
-1 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.4 -0.4 -0.75
0.6 -0.4 -0.75
0.6 -0.4 -0.5
1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
1.4 -0.4 -0.75
1.4 0.4 -0.75
0.6 0.4 -0.75
0.6 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.6 0.4 -0.75
1.4 0.4 -0.75
1.4 0.4 -0.5
0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.4 0.4 -0.75
1.4 -0.4 -0.75
1.4 -0.4 -0.5
1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.6 -0.4 -0.75
0.6 0.4 -0.75
0.6 0.4 -0.5
0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
TEX:SIDE
POSITION:
0.4 -0.4 -0.75
-0.4 -0.4 -0.75
-0.4 -0.4 -0.5
0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.4 -0.4 -0.75
0.4 0.4 -0.75
-0.4 0.4 -0.75
-0.4 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.4 0.4 -0.75
0.4 0.4 -0.75
0.4 0.4 -0.5
-0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.4 0.4 -0.75
0.4 -0.4 -0.75
0.4 -0.4 -0.5
0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.4 -0.4 -0.75
-0.4 0.4 -0.75
-0.4 0.4 -0.5
-0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
TEX:SIDE
POSITION:
-0.6 -0.4 -0.75
-1.4 -0.4 -0.75
-1.4 -0.4 -0.5
-0.6 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.6 -0.4 -0.75
-0.6 0.4 -0.75
-1.4 0.4 -0.75
-1.4 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-1.4 0.4 -0.75
-0.6 0.4 -0.75
-0.6 0.4 -0.5
-1.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.6 0.4 -0.75
-0.6 -0.4 -0.75
-0.6 -0.4 -0.5
-0.6 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-1.4 -0.4 -0.75
-1.4 0.4 -0.75
-1.4 0.4 -0.5
-1.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
----------------north quads:
1
TEX:SIDE
POSITION:
-1.5 0.5 0.5
-1.5 0.5 -0.5
1.5 0.5 -0.5
1.5 0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 0.5 0.5
1.5 0.5 -0.5
1.5 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 0.4 -0.3
1.5 0.4 -0.3
1.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
1.64 -0.4 -0.3
1.64 -0.4 0.3
1.64 0.4 0.3
1.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
1.64 0.4 0.3
1.64 -0.4 0.3
1.5 -0.4 0.3
1.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
1.64 0.4 -0.3
1.64 0.4 0.3
1.5 0.4 0.3
1.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
1.64 -0.4 0.3
1.64 -0.4 -0.3
1.5 -0.4 -0.3
1.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
1.5 -0.5 0.5
1.5 -0.5 -0.5
-1.5 -0.5 -0.5
-1.5 -0.5 0.5
UV COORDS:
0.99283854166667 -0.0859375
0.99283854166667 1.0859375
0.0071614583333333 1.0859375
0.0071614583333333 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-1.5 -0.5 -0.5
-1.5 0.5 -0.5
-1.5 0.5 0.5
-1.5 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,513 @@
1 1 1
SPECIAL
b
1
0 0 0
1 1 1
COVERAGE:
1 : 1
1 : 1
1 : 1
1 : 1
1 : 1
1 : 1
----------------top quads:
6
TEX:PRINT
POSITION:
0.5 0.5 0.5
0.5 -0.5 0.5
-0.5 -0.5 0.5
-0.5 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.4 -0.4 0.75
0.4 -0.4 0.75
0.4 -0.4 0.5
-0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
-0.4 -0.4 0.75
-0.4 0.4 0.75
0.4 0.4 0.75
0.4 -0.4 0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.4 0.4 0.75
-0.4 0.4 0.75
-0.4 0.4 0.5
0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
-0.4 0.4 0.75
-0.4 -0.4 0.75
-0.4 -0.4 0.5
-0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
TEX:SIDE
POSITION:
0.4 -0.4 0.75
0.4 0.4 0.75
0.4 0.4 0.5
0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
----------------bottom quads:
9
TEX:BOTTOMEDGE
POSITION:
-0.5 -0.5 -0.5
0.5 -0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
0.5 0.5 -0.5
-0.5 0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
0.5 -0.5 -0.5
0.5 0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-0.5 0.5 -0.5
-0.5 -0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.32 -0.32 -0.875
-0.32 -0.32 -0.875
-0.4 -0.4 -0.5
0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
0 -0.882353 -0.470588
TEX:SIDE
POSITION:
0.32 -0.32 -0.875
0.32 0.32 -0.875
-0.32 0.32 -0.875
-0.32 -0.32 -0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.32 0.32 -0.875
0.32 0.32 -0.875
0.4 0.4 -0.5
-0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
0 0.882353 -0.470588
TEX:SIDE
POSITION:
0.32 0.32 -0.875
0.32 -0.32 -0.875
0.4 -0.4 -0.5
0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
0.882353 0 -0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 -0.875
-0.32 0.32 -0.875
-0.4 0.4 -0.5
-0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
-0.882353 0 -0.470589
----------------north quads:
1
TEX:SIDE
POSITION:
-0.5 0.5 0.5
-0.5 0.5 -0.5
0.5 0.5 -0.5
0.5 0.5 0.5
UV COORDS:
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
0.5 -0.5 0.5
0.5 0.5 0.5
0.5 0.5 -0.5
0.5 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 0.4 -0.3
0.5 0.4 -0.3
0.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 -0.4 0.3
0.64 0.4 0.3
0.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 0.4 0.3
0.64 -0.4 0.3
0.5 -0.4 0.3
0.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.64 0.4 -0.3
0.64 0.4 0.3
0.5 0.4 0.3
0.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.64 -0.4 0.3
0.64 -0.4 -0.3
0.5 -0.4 -0.3
0.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
0.5 -0.5 0.5
0.5 -0.5 -0.5
-0.5 -0.5 -0.5
-0.5 -0.5 0.5
UV COORDS:
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-0.5 -0.5 -0.5
-0.5 0.5 -0.5
-0.5 0.5 0.5
-0.5 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

View File

@ -0,0 +1,513 @@
1 1 1
SPECIAL
b
1
0 0 0
1 1 1
COVERAGE:
1 : 1
1 : 1
1 : 1
1 : 1
1 : 1
1 : 1
----------------top quads:
6
TEX:PRINT
POSITION:
0.5 0.5 0.5
0.5 -0.5 0.5
-0.5 -0.5 0.5
-0.5 0.5 0.5
UV COORDS:
1 0
1 1
0 1
0 0
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
-0.32 -0.32 0.875
0.32 -0.32 0.875
0.4 -0.4 0.5
-0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
0 -0.882353 0.470588
TEX:SIDE
POSITION:
-0.32 -0.32 0.875
-0.32 0.32 0.875
0.32 0.32 0.875
0.32 -0.32 0.875
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.32 0.32 0.875
-0.32 0.32 0.875
-0.4 0.4 0.5
0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
0 0.882353 0.470588
TEX:SIDE
POSITION:
-0.32 0.32 0.875
-0.32 -0.32 0.875
-0.4 -0.4 0.5
-0.4 0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
-0.882353 0 0.470588
TEX:SIDE
POSITION:
0.32 -0.32 0.875
0.32 0.32 0.875
0.4 0.4 0.5
0.4 -0.4 0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
0.882353 0 0.470588
----------------bottom quads:
9
TEX:BOTTOMEDGE
POSITION:
-0.5 -0.5 -0.5
0.5 -0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
0.5 0.5 -0.5
-0.5 0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
0.5 -0.5 -0.5
0.5 0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:BOTTOMEDGE
POSITION:
-0.5 0.5 -0.5
-0.5 -0.5 -0.5
0 0 -0.5
0 0 -0.5
UV COORDS:
-0.5 0
0.5 0
0 0.5
0 0.5
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.4 -0.4 -0.75
-0.4 -0.4 -0.75
-0.4 -0.4 -0.5
0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
TEX:SIDE
POSITION:
0.4 -0.4 -0.75
0.4 0.4 -0.75
-0.4 0.4 -0.75
-0.4 -0.4 -0.75
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
-0.4 0.4 -0.75
0.4 0.4 -0.75
0.4 0.4 -0.5
-0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.4 0.4 -0.75
0.4 -0.4 -0.75
0.4 -0.4 -0.5
0.4 0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
-0.4 -0.4 -0.75
-0.4 0.4 -0.75
-0.4 0.4 -0.5
-0.4 -0.4 -0.5
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
-1 0 -0
-1 0 -0
-1 0 -0
-1 0 -0
----------------north quads:
1
TEX:SIDE
POSITION:
-0.5 0.5 0.5
-0.5 0.5 -0.5
0.5 0.5 -0.5
0.5 0.5 0.5
UV COORDS:
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
----------------east quads:
6
TEX:SIDE
POSITION:
0.5 -0.5 0.5
0.5 0.5 0.5
0.5 0.5 -0.5
0.5 -0.5 -0.5
UV COORDS:
-0.021484375 -0.0859375
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 0.4 -0.3
0.5 0.4 -0.3
0.5 -0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
TEX:SIDE
POSITION:
0.64 -0.4 -0.3
0.64 -0.4 0.3
0.64 0.4 0.3
0.64 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
1 0 0
1 0 0
1 0 0
1 0 0
TEX:SIDE
POSITION:
0.64 0.4 0.3
0.64 -0.4 0.3
0.5 -0.4 0.3
0.5 0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 0 1
0 0 1
0 0 1
0 0 1
TEX:SIDE
POSITION:
0.64 0.4 -0.3
0.64 0.4 0.3
0.5 0.4 0.3
0.5 0.4 -0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 1 0
0 1 0
0 1 0
0 1 0
TEX:SIDE
POSITION:
0.64 -0.4 0.3
0.64 -0.4 -0.3
0.5 -0.4 -0.3
0.5 -0.4 0.3
UV COORDS:
0.5 0.5
0.5 0.5
0.5 0.5
0.5 0.5
COLORS:
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------south quads:
1
TEX:SIDE
POSITION:
0.5 -0.5 0.5
0.5 -0.5 -0.5
-0.5 -0.5 -0.5
-0.5 -0.5 0.5
UV COORDS:
1.021484375 -0.0859375
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
NORMALS:
0 -1 0
0 -1 0
0 -1 0
0 -1 0
----------------west quads:
1
TEX:SIDE
POSITION:
-0.5 -0.5 -0.5
-0.5 0.5 -0.5
-0.5 0.5 0.5
-0.5 -0.5 0.5
UV COORDS:
1.021484375 1.0859375
-0.021484375 1.0859375
-0.021484375 -0.0859375
1.021484375 -0.0859375
NORMALS:
-1 0 0
-1 0 0
-1 0 0
-1 0 0
----------------omni quads:
0

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More