add vertical bus bricks; delete redundant diode bricks
This commit is contained in:
parent
de586ff608
commit
ce07ef3263
@ -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";
|
||||||
|
@ -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" ;
|
||||||
|
@ -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" ;
|
||||||
|
@ -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");
|
||||||
|
@ -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
|
||||||
|
|
@ -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
|
||||||
|
|
2493
bricks/gen/newbricks/Buffer 10 Bit Down.blb
Normal file
2493
bricks/gen/newbricks/Buffer 10 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2493
bricks/gen/newbricks/Buffer 10 Bit Up.blb
Normal file
2493
bricks/gen/newbricks/Buffer 10 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2713
bricks/gen/newbricks/Buffer 11 Bit Down.blb
Normal file
2713
bricks/gen/newbricks/Buffer 11 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2713
bricks/gen/newbricks/Buffer 11 Bit Up.blb
Normal file
2713
bricks/gen/newbricks/Buffer 11 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2933
bricks/gen/newbricks/Buffer 12 Bit Down.blb
Normal file
2933
bricks/gen/newbricks/Buffer 12 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2933
bricks/gen/newbricks/Buffer 12 Bit Up.blb
Normal file
2933
bricks/gen/newbricks/Buffer 12 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3153
bricks/gen/newbricks/Buffer 13 Bit Down.blb
Normal file
3153
bricks/gen/newbricks/Buffer 13 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3153
bricks/gen/newbricks/Buffer 13 Bit Up.blb
Normal file
3153
bricks/gen/newbricks/Buffer 13 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3373
bricks/gen/newbricks/Buffer 14 Bit Down.blb
Normal file
3373
bricks/gen/newbricks/Buffer 14 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3373
bricks/gen/newbricks/Buffer 14 Bit Up.blb
Normal file
3373
bricks/gen/newbricks/Buffer 14 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3593
bricks/gen/newbricks/Buffer 15 Bit Down.blb
Normal file
3593
bricks/gen/newbricks/Buffer 15 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3593
bricks/gen/newbricks/Buffer 15 Bit Up.blb
Normal file
3593
bricks/gen/newbricks/Buffer 15 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3813
bricks/gen/newbricks/Buffer 16 Bit Down.blb
Normal file
3813
bricks/gen/newbricks/Buffer 16 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3813
bricks/gen/newbricks/Buffer 16 Bit Up.blb
Normal file
3813
bricks/gen/newbricks/Buffer 16 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
733
bricks/gen/newbricks/Buffer 2 Bit Down.blb
Normal file
733
bricks/gen/newbricks/Buffer 2 Bit Down.blb
Normal 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
|
733
bricks/gen/newbricks/Buffer 2 Bit Up.blb
Normal file
733
bricks/gen/newbricks/Buffer 2 Bit Up.blb
Normal 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
|
5573
bricks/gen/newbricks/Buffer 24 Bit Down.blb
Normal file
5573
bricks/gen/newbricks/Buffer 24 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
5573
bricks/gen/newbricks/Buffer 24 Bit Up.blb
Normal file
5573
bricks/gen/newbricks/Buffer 24 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
953
bricks/gen/newbricks/Buffer 3 Bit Down.blb
Normal file
953
bricks/gen/newbricks/Buffer 3 Bit Down.blb
Normal 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
|
953
bricks/gen/newbricks/Buffer 3 Bit Up.blb
Normal file
953
bricks/gen/newbricks/Buffer 3 Bit Up.blb
Normal 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
|
7333
bricks/gen/newbricks/Buffer 32 Bit Down.blb
Normal file
7333
bricks/gen/newbricks/Buffer 32 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
7333
bricks/gen/newbricks/Buffer 32 Bit Up.blb
Normal file
7333
bricks/gen/newbricks/Buffer 32 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1173
bricks/gen/newbricks/Buffer 4 Bit Down.blb
Normal file
1173
bricks/gen/newbricks/Buffer 4 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1173
bricks/gen/newbricks/Buffer 4 Bit Up.blb
Normal file
1173
bricks/gen/newbricks/Buffer 4 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
10853
bricks/gen/newbricks/Buffer 48 Bit Down.blb
Normal file
10853
bricks/gen/newbricks/Buffer 48 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
10853
bricks/gen/newbricks/Buffer 48 Bit Up.blb
Normal file
10853
bricks/gen/newbricks/Buffer 48 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1393
bricks/gen/newbricks/Buffer 5 Bit Down.blb
Normal file
1393
bricks/gen/newbricks/Buffer 5 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1393
bricks/gen/newbricks/Buffer 5 Bit Up.blb
Normal file
1393
bricks/gen/newbricks/Buffer 5 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1613
bricks/gen/newbricks/Buffer 6 Bit Down.blb
Normal file
1613
bricks/gen/newbricks/Buffer 6 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1613
bricks/gen/newbricks/Buffer 6 Bit Up.blb
Normal file
1613
bricks/gen/newbricks/Buffer 6 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
14373
bricks/gen/newbricks/Buffer 64 Bit Down.blb
Normal file
14373
bricks/gen/newbricks/Buffer 64 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
14373
bricks/gen/newbricks/Buffer 64 Bit Up.blb
Normal file
14373
bricks/gen/newbricks/Buffer 64 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1833
bricks/gen/newbricks/Buffer 7 Bit Down.blb
Normal file
1833
bricks/gen/newbricks/Buffer 7 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1833
bricks/gen/newbricks/Buffer 7 Bit Up.blb
Normal file
1833
bricks/gen/newbricks/Buffer 7 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2053
bricks/gen/newbricks/Buffer 8 Bit Down.blb
Normal file
2053
bricks/gen/newbricks/Buffer 8 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2053
bricks/gen/newbricks/Buffer 8 Bit Up.blb
Normal file
2053
bricks/gen/newbricks/Buffer 8 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2273
bricks/gen/newbricks/Buffer 9 Bit Down.blb
Normal file
2273
bricks/gen/newbricks/Buffer 9 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2273
bricks/gen/newbricks/Buffer 9 Bit Up.blb
Normal file
2273
bricks/gen/newbricks/Buffer 9 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
@ -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
|
||||||
|
|
@ -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
|
||||||
|
|
2493
bricks/gen/newbricks/Buffer Active Low 10 Bit Down.blb
Normal file
2493
bricks/gen/newbricks/Buffer Active Low 10 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2493
bricks/gen/newbricks/Buffer Active Low 10 Bit Up.blb
Normal file
2493
bricks/gen/newbricks/Buffer Active Low 10 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2713
bricks/gen/newbricks/Buffer Active Low 11 Bit Down.blb
Normal file
2713
bricks/gen/newbricks/Buffer Active Low 11 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2713
bricks/gen/newbricks/Buffer Active Low 11 Bit Up.blb
Normal file
2713
bricks/gen/newbricks/Buffer Active Low 11 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2933
bricks/gen/newbricks/Buffer Active Low 12 Bit Down.blb
Normal file
2933
bricks/gen/newbricks/Buffer Active Low 12 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2933
bricks/gen/newbricks/Buffer Active Low 12 Bit Up.blb
Normal file
2933
bricks/gen/newbricks/Buffer Active Low 12 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3153
bricks/gen/newbricks/Buffer Active Low 13 Bit Down.blb
Normal file
3153
bricks/gen/newbricks/Buffer Active Low 13 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3153
bricks/gen/newbricks/Buffer Active Low 13 Bit Up.blb
Normal file
3153
bricks/gen/newbricks/Buffer Active Low 13 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3373
bricks/gen/newbricks/Buffer Active Low 14 Bit Down.blb
Normal file
3373
bricks/gen/newbricks/Buffer Active Low 14 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3373
bricks/gen/newbricks/Buffer Active Low 14 Bit Up.blb
Normal file
3373
bricks/gen/newbricks/Buffer Active Low 14 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3593
bricks/gen/newbricks/Buffer Active Low 15 Bit Down.blb
Normal file
3593
bricks/gen/newbricks/Buffer Active Low 15 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3593
bricks/gen/newbricks/Buffer Active Low 15 Bit Up.blb
Normal file
3593
bricks/gen/newbricks/Buffer Active Low 15 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3813
bricks/gen/newbricks/Buffer Active Low 16 Bit Down.blb
Normal file
3813
bricks/gen/newbricks/Buffer Active Low 16 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3813
bricks/gen/newbricks/Buffer Active Low 16 Bit Up.blb
Normal file
3813
bricks/gen/newbricks/Buffer Active Low 16 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
733
bricks/gen/newbricks/Buffer Active Low 2 Bit Down.blb
Normal file
733
bricks/gen/newbricks/Buffer Active Low 2 Bit Down.blb
Normal 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
|
733
bricks/gen/newbricks/Buffer Active Low 2 Bit Up.blb
Normal file
733
bricks/gen/newbricks/Buffer Active Low 2 Bit Up.blb
Normal 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
|
5573
bricks/gen/newbricks/Buffer Active Low 24 Bit Down.blb
Normal file
5573
bricks/gen/newbricks/Buffer Active Low 24 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
5573
bricks/gen/newbricks/Buffer Active Low 24 Bit Up.blb
Normal file
5573
bricks/gen/newbricks/Buffer Active Low 24 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
953
bricks/gen/newbricks/Buffer Active Low 3 Bit Down.blb
Normal file
953
bricks/gen/newbricks/Buffer Active Low 3 Bit Down.blb
Normal 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
|
953
bricks/gen/newbricks/Buffer Active Low 3 Bit Up.blb
Normal file
953
bricks/gen/newbricks/Buffer Active Low 3 Bit Up.blb
Normal 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
|
7333
bricks/gen/newbricks/Buffer Active Low 32 Bit Down.blb
Normal file
7333
bricks/gen/newbricks/Buffer Active Low 32 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
7333
bricks/gen/newbricks/Buffer Active Low 32 Bit Up.blb
Normal file
7333
bricks/gen/newbricks/Buffer Active Low 32 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1173
bricks/gen/newbricks/Buffer Active Low 4 Bit Down.blb
Normal file
1173
bricks/gen/newbricks/Buffer Active Low 4 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1173
bricks/gen/newbricks/Buffer Active Low 4 Bit Up.blb
Normal file
1173
bricks/gen/newbricks/Buffer Active Low 4 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
10853
bricks/gen/newbricks/Buffer Active Low 48 Bit Down.blb
Normal file
10853
bricks/gen/newbricks/Buffer Active Low 48 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
10853
bricks/gen/newbricks/Buffer Active Low 48 Bit Up.blb
Normal file
10853
bricks/gen/newbricks/Buffer Active Low 48 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1393
bricks/gen/newbricks/Buffer Active Low 5 Bit Down.blb
Normal file
1393
bricks/gen/newbricks/Buffer Active Low 5 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1393
bricks/gen/newbricks/Buffer Active Low 5 Bit Up.blb
Normal file
1393
bricks/gen/newbricks/Buffer Active Low 5 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1613
bricks/gen/newbricks/Buffer Active Low 6 Bit Down.blb
Normal file
1613
bricks/gen/newbricks/Buffer Active Low 6 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1613
bricks/gen/newbricks/Buffer Active Low 6 Bit Up.blb
Normal file
1613
bricks/gen/newbricks/Buffer Active Low 6 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
14373
bricks/gen/newbricks/Buffer Active Low 64 Bit Down.blb
Normal file
14373
bricks/gen/newbricks/Buffer Active Low 64 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
14373
bricks/gen/newbricks/Buffer Active Low 64 Bit Up.blb
Normal file
14373
bricks/gen/newbricks/Buffer Active Low 64 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
1833
bricks/gen/newbricks/Buffer Active Low 7 Bit Down.blb
Normal file
1833
bricks/gen/newbricks/Buffer Active Low 7 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
1833
bricks/gen/newbricks/Buffer Active Low 7 Bit Up.blb
Normal file
1833
bricks/gen/newbricks/Buffer Active Low 7 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2053
bricks/gen/newbricks/Buffer Active Low 8 Bit Down.blb
Normal file
2053
bricks/gen/newbricks/Buffer Active Low 8 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2053
bricks/gen/newbricks/Buffer Active Low 8 Bit Up.blb
Normal file
2053
bricks/gen/newbricks/Buffer Active Low 8 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2273
bricks/gen/newbricks/Buffer Active Low 9 Bit Down.blb
Normal file
2273
bricks/gen/newbricks/Buffer Active Low 9 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2273
bricks/gen/newbricks/Buffer Active Low 9 Bit Up.blb
Normal file
2273
bricks/gen/newbricks/Buffer Active Low 9 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
513
bricks/gen/newbricks/D FlipFlop 1 Bit Down.blb
Normal file
513
bricks/gen/newbricks/D FlipFlop 1 Bit Down.blb
Normal 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
|
513
bricks/gen/newbricks/D FlipFlop 1 Bit Up.blb
Normal file
513
bricks/gen/newbricks/D FlipFlop 1 Bit Up.blb
Normal 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
|
2493
bricks/gen/newbricks/D FlipFlop 10 Bit Down.blb
Normal file
2493
bricks/gen/newbricks/D FlipFlop 10 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2493
bricks/gen/newbricks/D FlipFlop 10 Bit Up.blb
Normal file
2493
bricks/gen/newbricks/D FlipFlop 10 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2713
bricks/gen/newbricks/D FlipFlop 11 Bit Down.blb
Normal file
2713
bricks/gen/newbricks/D FlipFlop 11 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2713
bricks/gen/newbricks/D FlipFlop 11 Bit Up.blb
Normal file
2713
bricks/gen/newbricks/D FlipFlop 11 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
2933
bricks/gen/newbricks/D FlipFlop 12 Bit Down.blb
Normal file
2933
bricks/gen/newbricks/D FlipFlop 12 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
2933
bricks/gen/newbricks/D FlipFlop 12 Bit Up.blb
Normal file
2933
bricks/gen/newbricks/D FlipFlop 12 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3153
bricks/gen/newbricks/D FlipFlop 13 Bit Down.blb
Normal file
3153
bricks/gen/newbricks/D FlipFlop 13 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3153
bricks/gen/newbricks/D FlipFlop 13 Bit Up.blb
Normal file
3153
bricks/gen/newbricks/D FlipFlop 13 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3373
bricks/gen/newbricks/D FlipFlop 14 Bit Down.blb
Normal file
3373
bricks/gen/newbricks/D FlipFlop 14 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3373
bricks/gen/newbricks/D FlipFlop 14 Bit Up.blb
Normal file
3373
bricks/gen/newbricks/D FlipFlop 14 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3593
bricks/gen/newbricks/D FlipFlop 15 Bit Down.blb
Normal file
3593
bricks/gen/newbricks/D FlipFlop 15 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3593
bricks/gen/newbricks/D FlipFlop 15 Bit Up.blb
Normal file
3593
bricks/gen/newbricks/D FlipFlop 15 Bit Up.blb
Normal file
File diff suppressed because it is too large
Load Diff
3813
bricks/gen/newbricks/D FlipFlop 16 Bit Down.blb
Normal file
3813
bricks/gen/newbricks/D FlipFlop 16 Bit Down.blb
Normal file
File diff suppressed because it is too large
Load Diff
3813
bricks/gen/newbricks/D FlipFlop 16 Bit Up.blb
Normal file
3813
bricks/gen/newbricks/D FlipFlop 16 Bit Up.blb
Normal file
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
Loading…
x
Reference in New Issue
Block a user