you know how we do it

This commit is contained in:
Bob 2025-01-13 00:24:50 +01:00
parent f39a5b1556
commit 401005c3d8
38 changed files with 9676 additions and 3 deletions

View File

@ -11,4 +11,5 @@
* Fixed T45 helmet not protecting against carbon monoxide
* Fixed general issues regarding the rotary furnace
* Fixed corrupted broadcaster noise having infinite range
* Fixed packet issues for explosive charges and custom machines
* Fixed packet issues for explosive charges and custom machines
* Fixed one of the rotary furnace's visual connections now properly showing up

View File

@ -7,6 +7,12 @@ import com.hbm.blocks.gas.*;
import com.hbm.blocks.generic.*;
import com.hbm.blocks.generic.BlockHazard.ExtDisplayEffect;
import com.hbm.blocks.machine.*;
import com.hbm.blocks.machine.albion.BlockPABeamline;
import com.hbm.blocks.machine.albion.BlockPADetector;
import com.hbm.blocks.machine.albion.BlockPADipole;
import com.hbm.blocks.machine.albion.BlockPAQuadrupole;
import com.hbm.blocks.machine.albion.BlockPARFC;
import com.hbm.blocks.machine.albion.BlockPASource;
import com.hbm.blocks.machine.pile.*;
import com.hbm.blocks.machine.rbmk.*;
import com.hbm.blocks.network.*;
@ -724,6 +730,13 @@ public class ModBlocks {
public static Block hadron_core;
public static Block hadron_cooler;
public static Block pa_source;
public static Block pa_beamline;
public static Block pa_rfc;
public static Block pa_quadrupole;
public static Block pa_dipole;
public static Block pa_detector;
public static Block machine_electric_furnace_off;
public static Block machine_electric_furnace_on;
@ -1816,6 +1829,13 @@ public class ModBlocks {
hadron_core = new BlockHadronCore(Material.iron).setStepSound(Block.soundTypeMetal).setBlockName("hadron_core").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":hadron_core");
hadron_cooler = new BlockHadronCooler(Material.iron).setBlockName("hadron_cooler").setCreativeTab(MainRegistry.blockTab).setHardness(5.0F).setResistance(10.0F);
pa_source = new BlockPASource().setStepSound(Block.soundTypeMetal).setBlockName("pa_source").setHardness(5.0F).setResistance(10.0F);
pa_beamline = new BlockPABeamline().setStepSound(Block.soundTypeMetal).setBlockName("pa_beamline").setHardness(5.0F).setResistance(10.0F);
pa_rfc = new BlockPARFC().setStepSound(Block.soundTypeMetal).setBlockName("pa_rfc").setHardness(5.0F).setResistance(10.0F);
pa_quadrupole = new BlockPAQuadrupole().setStepSound(Block.soundTypeMetal).setBlockName("pa_quadrupole").setHardness(5.0F).setResistance(10.0F);
pa_dipole = new BlockPADipole().setStepSound(Block.soundTypeMetal).setBlockName("pa_dipole").setHardness(5.0F).setResistance(10.0F);
pa_detector = new BlockPADetector().setStepSound(Block.soundTypeMetal).setBlockName("pa_detector").setHardness(5.0F).setResistance(10.0F);
machine_electric_furnace_off = new MachineElectricFurnace(false).setBlockName("machine_electric_furnace_off").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab);
machine_electric_furnace_on = new MachineElectricFurnace(true).setBlockName("machine_electric_furnace_on").setHardness(5.0F).setLightLevel(1.0F).setResistance(10.0F);
machine_arc_furnace_off = new MachineArcFurnace(false).setBlockName("machine_arc_furnace_off").setHardness(5.0F).setResistance(10.0F);
@ -3065,6 +3085,13 @@ public class ModBlocks {
GameRegistry.registerBlock(hadron_core, hadron_core.getUnlocalizedName());
register(hadron_cooler);
register(pa_source);
register(pa_beamline);
register(pa_rfc);
register(pa_quadrupole);
register(pa_dipole);
register(pa_detector);
GameRegistry.registerBlock(rbmk_rod, rbmk_rod.getUnlocalizedName());
GameRegistry.registerBlock(rbmk_rod_mod, rbmk_rod_mod.getUnlocalizedName());
GameRegistry.registerBlock(rbmk_rod_reasim, rbmk_rod_reasim.getUnlocalizedName());

View File

@ -50,7 +50,7 @@ public class MachineRotaryFurnace extends BlockDummyable {
this.makeExtra(world, x - dir.offsetX + rot.offsetX * i, y, z - dir.offsetZ + rot.offsetZ * i);
}
//side fluid
this.makeExtra(world, x + dir.offsetX - rot.offsetX * 2, y, z + dir.offsetZ - rot.offsetZ * 2);
this.makeExtra(world, x + dir.offsetX + rot.offsetX * 2, y, z + dir.offsetZ + rot.offsetZ * 2);
//exhaust
this.makeExtra(world, x + rot.offsetX, y + 4, z + rot.offsetZ);
//solid fuel

View File

@ -0,0 +1,28 @@
package com.hbm.blocks.machine.albion;
import com.hbm.blocks.BlockDummyable;
import com.hbm.lib.RefStrings;
import com.hbm.main.MainRegistry;
import com.hbm.tileentity.machine.albion.TileEntityPABeamline;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockPABeamline extends BlockDummyable {
public BlockPABeamline() {
super(Material.iron);
this.setCreativeTab(MainRegistry.machineTab);
this.setBlockTextureName(RefStrings.MODID + ":block_steel");
}
@Override
public TileEntity createNewTileEntity(World world, int meta) {
if(meta >= 12) return new TileEntityPABeamline();
return null;
}
@Override public int[] getDimensions() { return new int[] {0, 0, 0, 0, 1, 1}; }
@Override public int getOffset() { return 0; }
}

View File

@ -0,0 +1,29 @@
package com.hbm.blocks.machine.albion;
import com.hbm.blocks.BlockDummyable;
import com.hbm.lib.RefStrings;
import com.hbm.main.MainRegistry;
import com.hbm.tileentity.machine.albion.TileEntityPADetector;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockPADetector extends BlockDummyable {
public BlockPADetector() {
super(Material.iron);
this.setCreativeTab(MainRegistry.machineTab);
this.setBlockTextureName(RefStrings.MODID + ":block_steel");
}
@Override
public TileEntity createNewTileEntity(World world, int meta) {
if(meta >= 12) return new TileEntityPADetector();
return null;
}
@Override public int[] getDimensions() { return new int[] {2, 2, 2, 2, 4, 4}; }
@Override public int getOffset() { return 0; }
@Override public int getHeightOffset() { return 2; }
}

View File

@ -0,0 +1,29 @@
package com.hbm.blocks.machine.albion;
import com.hbm.blocks.BlockDummyable;
import com.hbm.lib.RefStrings;
import com.hbm.main.MainRegistry;
import com.hbm.tileentity.machine.albion.TileEntityPADipole;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockPADipole extends BlockDummyable {
public BlockPADipole() {
super(Material.iron);
this.setCreativeTab(MainRegistry.machineTab);
this.setBlockTextureName(RefStrings.MODID + ":block_steel");
}
@Override
public TileEntity createNewTileEntity(World world, int meta) {
if(meta >= 12) return new TileEntityPADipole();
return null;
}
@Override public int[] getDimensions() { return new int[] {1, 1, 1, 1, 1, 1}; }
@Override public int getOffset() { return 0; }
@Override public int getHeightOffset() { return 1; }
}

View File

@ -0,0 +1,29 @@
package com.hbm.blocks.machine.albion;
import com.hbm.blocks.BlockDummyable;
import com.hbm.lib.RefStrings;
import com.hbm.main.MainRegistry;
import com.hbm.tileentity.machine.albion.TileEntityPAQuadrupole;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockPAQuadrupole extends BlockDummyable {
public BlockPAQuadrupole() {
super(Material.iron);
this.setCreativeTab(MainRegistry.machineTab);
this.setBlockTextureName(RefStrings.MODID + ":block_steel");
}
@Override
public TileEntity createNewTileEntity(World world, int meta) {
if(meta >= 12) return new TileEntityPAQuadrupole();
return null;
}
@Override public int[] getDimensions() { return new int[] {1, 1, 1, 1, 1, 1}; }
@Override public int getOffset() { return 0; }
@Override public int getHeightOffset() { return 1; }
}

View File

@ -0,0 +1,29 @@
package com.hbm.blocks.machine.albion;
import com.hbm.blocks.BlockDummyable;
import com.hbm.lib.RefStrings;
import com.hbm.main.MainRegistry;
import com.hbm.tileentity.machine.albion.TileEntityPARFC;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockPARFC extends BlockDummyable {
public BlockPARFC() {
super(Material.iron);
this.setCreativeTab(MainRegistry.machineTab);
this.setBlockTextureName(RefStrings.MODID + ":block_steel");
}
@Override
public TileEntity createNewTileEntity(World world, int meta) {
if(meta >= 12) return new TileEntityPARFC();
return null;
}
@Override public int[] getDimensions() { return new int[] {1, 1, 1, 1, 4, 4}; }
@Override public int getOffset() { return 0; }
@Override public int getHeightOffset() { return 1; }
}

View File

@ -0,0 +1,29 @@
package com.hbm.blocks.machine.albion;
import com.hbm.blocks.BlockDummyable;
import com.hbm.lib.RefStrings;
import com.hbm.main.MainRegistry;
import com.hbm.tileentity.machine.albion.TileEntityPASource;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class BlockPASource extends BlockDummyable {
public BlockPASource() {
super(Material.iron);
this.setCreativeTab(MainRegistry.machineTab);
this.setBlockTextureName(RefStrings.MODID + ":block_steel");
}
@Override
public TileEntity createNewTileEntity(World world, int meta) {
if(meta >= 12) return new TileEntityPASource();
return null;
}
@Override public int[] getDimensions() { return new int[] {1, 1, 1, 1, 4, 4}; }
@Override public int getOffset() { return 0; }
@Override public int getHeightOffset() { return 1; }
}

View File

@ -80,7 +80,8 @@
import com.hbm.tileentity.bomb.*;
import com.hbm.tileentity.deco.*;
import com.hbm.tileentity.machine.*;
import com.hbm.tileentity.machine.oil.*;
import com.hbm.tileentity.machine.albion.*;
import com.hbm.tileentity.machine.oil.*;
import com.hbm.tileentity.machine.rbmk.*;
import com.hbm.tileentity.machine.storage.*;
import com.hbm.tileentity.network.*;
@ -243,6 +244,12 @@ public class ClientProxy extends ServerProxy {
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachinePuF6Tank.class, new RenderPuF6Tank());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineIGenerator.class, new RenderIGenerator());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineCyclotron.class, new RenderCyclotron());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityPASource.class, new RenderPASource());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityPABeamline.class, new RenderPABeamline());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityPARFC.class, new RenderPARFC());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityPAQuadrupole.class, new RenderPAQuadrupole());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityPADipole.class, new RenderPADipole());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityPADetector.class, new RenderPADetector());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineExposureChamber.class, new RenderExposureChamber());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineOilWell.class, new RenderDerrick());
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineGasFlare.class, new RenderGasFlare());

View File

@ -185,6 +185,14 @@ public class ResourceManager {
//Cyclotron
public static final IModelCustom cyclotron = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/cyclotron.obj")).asVBO();
//Albion Particle Accelerator
public static final IModelCustom pa_source = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/particleaccelerator/source.obj")).asVBO();
public static final IModelCustom pa_beamline = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/particleaccelerator/beamline.obj")).asVBO();
public static final IModelCustom pa_rfc = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/particleaccelerator/rfc.obj")).asVBO();
public static final IModelCustom pa_quadrupole = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/particleaccelerator/quadrupole.obj")).asVBO();
public static final IModelCustom pa_dipole = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/particleaccelerator/dipole.obj")).asVBO();
public static final IModelCustom pa_detector = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/particleaccelerator/detector.obj")).asVBO();
//Exposure Chamber
public static final IModelCustom exposure_chamber = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/exposure_chamber.obj")).asVBO();
@ -606,6 +614,14 @@ public class ResourceManager {
public static final ResourceLocation cyclotron_coin = new ResourceLocation(RefStrings.MODID, "textures/models/machines/cyclotron_coin.png");
public static final ResourceLocation cyclotron_coin_filled = new ResourceLocation(RefStrings.MODID, "textures/models/machines/cyclotron_coin_filled.png");
//Albion Particle Accelerator
public static final ResourceLocation pa_source_tex = new ResourceLocation(RefStrings.MODID, "textures/models/particleaccelerator/source.png");
public static final ResourceLocation pa_beamline_tex = new ResourceLocation(RefStrings.MODID, "textures/models/particleaccelerator/beamline.png");
public static final ResourceLocation pa_rfc_tex = new ResourceLocation(RefStrings.MODID, "textures/models/particleaccelerator/rfc.png");
public static final ResourceLocation pa_quadrupole_tex = new ResourceLocation(RefStrings.MODID, "textures/models/particleaccelerator/quadrupole.png");
public static final ResourceLocation pa_dipole_tex = new ResourceLocation(RefStrings.MODID, "textures/models/particleaccelerator/dipole.png");
public static final ResourceLocation pa_detector_tex = new ResourceLocation(RefStrings.MODID, "textures/models/particleaccelerator/detector.png");
//Exposure Chamber
public static final ResourceLocation exposure_chamber_tex = new ResourceLocation(RefStrings.MODID, "textures/models/machines/exposure_chamber.png");

View File

@ -0,0 +1,60 @@
package com.hbm.render.tileentity;
import org.lwjgl.opengl.GL11;
import com.hbm.blocks.BlockDummyable;
import com.hbm.blocks.ModBlocks;
import com.hbm.main.ResourceManager;
import com.hbm.render.item.ItemRenderBase;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.client.IItemRenderer;
public class RenderPABeamline extends TileEntitySpecialRenderer implements IItemRendererProvider {
@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glEnable(GL11.GL_CULL_FACE);
switch(tile.getBlockMetadata() - BlockDummyable.offset) {
case 4: GL11.glRotatef(180, 0F, 1F, 0F); break;
case 3: GL11.glRotatef(270, 0F, 1F, 0F); break;
case 5: GL11.glRotatef(0, 0F, 1F, 0F); break;
case 2: GL11.glRotatef(90, 0F, 1F, 0F); break;
}
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_beamline_tex);
ResourceManager.pa_beamline.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
GL11.glPopMatrix();
}
@Override
public Item getItemForRenderer() {
return Item.getItemFromBlock(ModBlocks.pa_beamline);
}
@Override
public IItemRenderer getRenderer() {
return new ItemRenderBase() {
public void renderInventory() {
double scale = 4;
GL11.glScaled(scale, scale, scale);
}
public void renderCommon() {
GL11.glRotated(90, 0, 1, 0);
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_beamline_tex);
ResourceManager.pa_beamline.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
}};
}
}

View File

@ -0,0 +1,63 @@
package com.hbm.render.tileentity;
import org.lwjgl.opengl.GL11;
import com.hbm.blocks.BlockDummyable;
import com.hbm.blocks.ModBlocks;
import com.hbm.main.ResourceManager;
import com.hbm.render.item.ItemRenderBase;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.client.IItemRenderer;
public class RenderPADetector extends TileEntitySpecialRenderer implements IItemRendererProvider {
@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y - 2D, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glEnable(GL11.GL_CULL_FACE);
switch(tile.getBlockMetadata() - BlockDummyable.offset) {
case 4: GL11.glRotatef(180, 0F, 1F, 0F); break;
case 3: GL11.glRotatef(270, 0F, 1F, 0F); break;
case 5: GL11.glRotatef(0, 0F, 1F, 0F); break;
case 2: GL11.glRotatef(90, 0F, 1F, 0F); break;
}
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_detector_tex);
ResourceManager.pa_detector.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
GL11.glPopMatrix();
}
@Override
public Item getItemForRenderer() {
return Item.getItemFromBlock(ModBlocks.pa_detector);
}
@Override
public IItemRenderer getRenderer() {
return new ItemRenderBase() {
public void renderInventory() {
GL11.glTranslated(0, -1, 0);
double scale = 3;
GL11.glScaled(scale, scale, scale);
}
public void renderCommon() {
double scale = 0.5;
GL11.glScaled(scale, scale, scale);
GL11.glRotated(90, 0, 1, 0);
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_detector_tex);
ResourceManager.pa_detector.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
}};
}
}

View File

@ -0,0 +1,52 @@
package com.hbm.render.tileentity;
import org.lwjgl.opengl.GL11;
import com.hbm.blocks.ModBlocks;
import com.hbm.main.ResourceManager;
import com.hbm.render.item.ItemRenderBase;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.client.IItemRenderer;
public class RenderPADipole extends TileEntitySpecialRenderer implements IItemRendererProvider {
@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y - 1D, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glEnable(GL11.GL_CULL_FACE);
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_dipole_tex);
ResourceManager.pa_dipole.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
GL11.glPopMatrix();
}
@Override
public Item getItemForRenderer() {
return Item.getItemFromBlock(ModBlocks.pa_dipole);
}
@Override
public IItemRenderer getRenderer() {
return new ItemRenderBase() {
public void renderInventory() {
GL11.glTranslated(0, -3, 0);
double scale = 3.5;
GL11.glScaled(scale, scale, scale);
}
public void renderCommon() {
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_dipole_tex);
ResourceManager.pa_dipole.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
}};
}
}

View File

@ -0,0 +1,61 @@
package com.hbm.render.tileentity;
import org.lwjgl.opengl.GL11;
import com.hbm.blocks.BlockDummyable;
import com.hbm.blocks.ModBlocks;
import com.hbm.main.ResourceManager;
import com.hbm.render.item.ItemRenderBase;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.client.IItemRenderer;
public class RenderPAQuadrupole extends TileEntitySpecialRenderer implements IItemRendererProvider {
@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y - 1D, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glEnable(GL11.GL_CULL_FACE);
switch(tile.getBlockMetadata() - BlockDummyable.offset) {
case 4: GL11.glRotatef(180, 0F, 1F, 0F); break;
case 3: GL11.glRotatef(270, 0F, 1F, 0F); break;
case 5: GL11.glRotatef(0, 0F, 1F, 0F); break;
case 2: GL11.glRotatef(90, 0F, 1F, 0F); break;
}
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_quadrupole_tex);
ResourceManager.pa_quadrupole.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
GL11.glPopMatrix();
}
@Override
public Item getItemForRenderer() {
return Item.getItemFromBlock(ModBlocks.pa_quadrupole);
}
@Override
public IItemRenderer getRenderer() {
return new ItemRenderBase() {
public void renderInventory() {
GL11.glTranslated(0, -3.5, 0);
double scale = 4;
GL11.glScaled(scale, scale, scale);
}
public void renderCommon() {
GL11.glRotated(90, 0, 1, 0);
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_quadrupole_tex);
ResourceManager.pa_quadrupole.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
}};
}
}

View File

@ -0,0 +1,63 @@
package com.hbm.render.tileentity;
import org.lwjgl.opengl.GL11;
import com.hbm.blocks.BlockDummyable;
import com.hbm.blocks.ModBlocks;
import com.hbm.main.ResourceManager;
import com.hbm.render.item.ItemRenderBase;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.client.IItemRenderer;
public class RenderPARFC extends TileEntitySpecialRenderer implements IItemRendererProvider {
@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y - 1D, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glEnable(GL11.GL_CULL_FACE);
switch(tile.getBlockMetadata() - BlockDummyable.offset) {
case 4: GL11.glRotatef(180, 0F, 1F, 0F); break;
case 3: GL11.glRotatef(270, 0F, 1F, 0F); break;
case 5: GL11.glRotatef(0, 0F, 1F, 0F); break;
case 2: GL11.glRotatef(90, 0F, 1F, 0F); break;
}
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_rfc_tex);
ResourceManager.pa_rfc.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
GL11.glPopMatrix();
}
@Override
public Item getItemForRenderer() {
return Item.getItemFromBlock(ModBlocks.pa_rfc);
}
@Override
public IItemRenderer getRenderer() {
return new ItemRenderBase() {
public void renderInventory() {
GL11.glTranslated(0, -1, 0);
double scale = 4;
GL11.glScaled(scale, scale, scale);
}
public void renderCommon() {
double scale = 0.5;
GL11.glScaled(scale, scale, scale);
GL11.glRotated(90, 0, 1, 0);
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_rfc_tex);
ResourceManager.pa_rfc.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
}};
}
}

View File

@ -0,0 +1,63 @@
package com.hbm.render.tileentity;
import org.lwjgl.opengl.GL11;
import com.hbm.blocks.BlockDummyable;
import com.hbm.blocks.ModBlocks;
import com.hbm.main.ResourceManager;
import com.hbm.render.item.ItemRenderBase;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.client.IItemRenderer;
public class RenderPASource extends TileEntitySpecialRenderer implements IItemRendererProvider {
@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float f) {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y - 1D, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glEnable(GL11.GL_CULL_FACE);
switch(tile.getBlockMetadata() - BlockDummyable.offset) {
case 4: GL11.glRotatef(180, 0F, 1F, 0F); break;
case 3: GL11.glRotatef(270, 0F, 1F, 0F); break;
case 5: GL11.glRotatef(0, 0F, 1F, 0F); break;
case 2: GL11.glRotatef(90, 0F, 1F, 0F); break;
}
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_source_tex);
ResourceManager.pa_source.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
GL11.glPopMatrix();
}
@Override
public Item getItemForRenderer() {
return Item.getItemFromBlock(ModBlocks.pa_source);
}
@Override
public IItemRenderer getRenderer() {
return new ItemRenderBase() {
public void renderInventory() {
GL11.glTranslated(0, -1, 0);
double scale = 4;
GL11.glScaled(scale, scale, scale);
}
public void renderCommon() {
double scale = 0.5;
GL11.glScaled(scale, scale, scale);
GL11.glRotated(90, 0, 1, 0);
GL11.glShadeModel(GL11.GL_SMOOTH);
bindTexture(ResourceManager.pa_source_tex);
ResourceManager.pa_source.renderAll();
GL11.glShadeModel(GL11.GL_FLAT);
}};
}
}

View File

@ -0,0 +1,34 @@
package com.hbm.tileentity.machine.albion;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
public class TileEntityPABeamline extends TileEntity {
AxisAlignedBB bb = null;
@Override
public AxisAlignedBB getRenderBoundingBox() {
if(bb == null) {
bb = AxisAlignedBB.getBoundingBox(
xCoord - 1,
yCoord,
zCoord - 1,
xCoord + 2,
yCoord + 1,
zCoord + 2
);
}
return bb;
}
@Override
@SideOnly(Side.CLIENT)
public double getMaxRenderDistanceSquared() {
return 65536.0D;
}
}

View File

@ -0,0 +1,34 @@
package com.hbm.tileentity.machine.albion;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
public class TileEntityPADetector extends TileEntity {
AxisAlignedBB bb = null;
@Override
public AxisAlignedBB getRenderBoundingBox() {
if(bb == null) {
bb = AxisAlignedBB.getBoundingBox(
xCoord - 4,
yCoord - 2,
zCoord - 4,
xCoord + 5,
yCoord + 1,
zCoord + 5
);
}
return bb;
}
@Override
@SideOnly(Side.CLIENT)
public double getMaxRenderDistanceSquared() {
return 65536.0D;
}
}

View File

@ -0,0 +1,34 @@
package com.hbm.tileentity.machine.albion;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
public class TileEntityPADipole extends TileEntity {
AxisAlignedBB bb = null;
@Override
public AxisAlignedBB getRenderBoundingBox() {
if(bb == null) {
bb = AxisAlignedBB.getBoundingBox(
xCoord - 1,
yCoord - 1,
zCoord - 1,
xCoord + 2,
yCoord + 2,
zCoord + 2
);
}
return bb;
}
@Override
@SideOnly(Side.CLIENT)
public double getMaxRenderDistanceSquared() {
return 65536.0D;
}
}

View File

@ -0,0 +1,34 @@
package com.hbm.tileentity.machine.albion;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
public class TileEntityPAQuadrupole extends TileEntity {
AxisAlignedBB bb = null;
@Override
public AxisAlignedBB getRenderBoundingBox() {
if(bb == null) {
bb = AxisAlignedBB.getBoundingBox(
xCoord - 1,
yCoord - 1,
zCoord - 1,
xCoord + 2,
yCoord + 2,
zCoord + 2
);
}
return bb;
}
@Override
@SideOnly(Side.CLIENT)
public double getMaxRenderDistanceSquared() {
return 65536.0D;
}
}

View File

@ -0,0 +1,34 @@
package com.hbm.tileentity.machine.albion;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
public class TileEntityPARFC extends TileEntity {
AxisAlignedBB bb = null;
@Override
public AxisAlignedBB getRenderBoundingBox() {
if(bb == null) {
bb = AxisAlignedBB.getBoundingBox(
xCoord - 4,
yCoord - 1,
zCoord - 4,
xCoord + 5,
yCoord + 2,
zCoord + 5
);
}
return bb;
}
@Override
@SideOnly(Side.CLIENT)
public double getMaxRenderDistanceSquared() {
return 65536.0D;
}
}

View File

@ -0,0 +1,34 @@
package com.hbm.tileentity.machine.albion;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
public class TileEntityPASource extends TileEntity {
AxisAlignedBB bb = null;
@Override
public AxisAlignedBB getRenderBoundingBox() {
if(bb == null) {
bb = AxisAlignedBB.getBoundingBox(
xCoord - 4,
yCoord - 1,
zCoord - 4,
xCoord + 5,
yCoord + 2,
zCoord + 6
);
}
return bb;
}
@Override
@SideOnly(Side.CLIENT)
public double getMaxRenderDistanceSquared() {
return 65536.0D;
}
}

View File

@ -158,6 +158,9 @@ public class DamageResistanceHandler {
.addExact(DamageClass.LASER.name(), 15F, 0.9F)
.addExact(DamageSource.fall.damageType, 10F, 0.5F)
.setOther(5F, 0.25F));
registerSet(ModItems.euphemium_helmet, ModItems.euphemium_plate, ModItems.euphemium_legs, ModItems.euphemium_boots, new ResistanceStats()
.setOther(1_000_000F, 1F));
registerSet(ModItems.hazmat_helmet, ModItems.hazmat_plate, ModItems.hazmat_legs, ModItems.hazmat_boots, new ResistanceStats());
registerSet(ModItems.hazmat_helmet_red, ModItems.hazmat_plate_red, ModItems.hazmat_legs_red, ModItems.hazmat_boots_red, new ResistanceStats());

View File

@ -4719,6 +4719,12 @@ tile.ore_uranium_scorched.name=Verschmortes Uranerz
tile.ore_verticium.name=Dollargrünes Mineral
tile.ore_volcano.name=Thermale Fissur
tile.ore_weidanium.name=Weidit
tile.pa_beamline.name=Strahlrohr
tile.pa_detector.name=Teilchendetektor
tile.pa_dipole.name=Dipol-Magnete
tile.pa_quadrupole.name=Quadrupol-Magnete
tile.pa_rfc.name=Hohlraumresonator
tile.pa_source.name=Teilchenquelle
tile.pedestal.name=Podest
tile.pink_barrel.name=Kerosinfass
tile.pink_log.name=Pinkes Holz

View File

@ -5820,6 +5820,12 @@ tile.ore_uranium_scorched.name=Scorched Uranium Ore
tile.ore_verticium.name=Dollar Green Mineral
tile.ore_volcano.name=Geothermal Vent
tile.ore_weidanium.name=Weidite
tile.pa_beamline.name=Beamline
tile.pa_detector.name=Particle Detector
tile.pa_dipole.name=Dipole Magnets
tile.pa_quadrupole.name=Quadrupole Magnets
tile.pa_rfc.name=RF Cavity
tile.pa_source.name=Particle Source
tile.part_emitter.name=Deco Particle Emitter
tile.pedestal.name=Pedestal
tile.pink_barrel.name=Kerosene Barrel

View File

@ -0,0 +1,44 @@
# Blender v2.79 (sub 0) OBJ File: 'beamline.blend'
# www.blender.org
o Cube_Cube.001
v -0.500000 0.000000 1.500000
v -0.500000 1.000000 1.500000
v -0.500000 0.000000 -1.500000
v -0.500000 1.000000 -1.500000
v 0.500000 0.000000 1.500000
v 0.500000 1.000000 1.500000
v 0.500000 0.000000 -1.500000
v 0.500000 1.000000 -1.500000
vt 0.200000 0.500000
vt 0.800000 0.750000
vt 0.200000 0.750000
vt 0.800000 0.500000
vt 1.000000 0.250000
vt 1.000000 0.500000
vt 0.800000 0.250000
vt 0.200000 0.000000
vt 0.800000 0.000000
vt 0.200000 0.250000
vt 0.000000 0.500000
vt 0.000000 0.250000
vt 0.800000 1.000000
vt 0.200000 1.000000
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 0.0000 1.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
s off
f 2/1/1 3/2/1 1/3/1
f 4/4/2 7/5/2 3/6/2
f 8/7/3 5/8/3 7/9/3
f 6/10/4 1/11/4 5/12/4
f 7/13/5 1/3/5 3/2/5
f 4/4/6 6/10/6 8/7/6
f 2/1/1 4/4/1 3/2/1
f 4/4/2 8/7/2 7/5/2
f 8/7/3 6/10/3 5/8/3
f 6/10/4 2/1/4 1/11/4
f 7/13/5 5/14/5 1/3/5
f 4/4/6 2/1/6 6/10/6

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,756 @@
# Blender v2.79 (sub 0) OBJ File: 'dipole.blend'
# www.blender.org
o Cube_Cube.001
v 0.500000 1.000000 1.500000
v 0.500000 2.000000 1.500000
v -0.500000 2.000000 1.500000
v -0.500000 1.000000 1.500000
v 0.250000 1.250000 1.250000
v -0.250000 1.250000 1.250000
v -0.250000 1.750000 1.250000
v 0.250000 1.750000 1.250000
v 0.500000 2.000000 -1.500000
v 0.500000 1.000000 -1.500000
v -0.500000 1.000000 -1.500000
v -0.500000 2.000000 -1.500000
v -0.250000 1.250000 -1.250000
v -0.250000 1.750000 -1.250000
v 0.250000 1.250000 -1.250000
v 0.250000 1.750000 -1.250000
v 0.500000 1.750000 -0.500000
v 0.500000 1.250000 -0.500000
v 0.500000 1.750000 0.500000
v 0.500000 1.250000 0.500000
v -0.500000 1.750000 -0.500000
v -0.500000 1.250000 -0.500000
v -0.500000 1.750000 0.500000
v -0.500000 1.250000 0.500000
v 1.500000 1.000000 0.500000
v 1.500000 2.000000 0.500000
v 1.500000 1.000000 -0.500000
v 1.500000 2.000000 -0.500000
v 1.250000 1.250000 -0.250000
v 1.250000 1.750000 -0.250000
v 1.250000 1.250000 0.250000
v 1.250000 1.750000 0.250000
v 1.000000 0.500000 1.500000
v 1.500000 0.500000 1.000000
v -1.500000 0.500000 1.000000
v -1.000000 0.500000 1.500000
v 1.500000 0.500000 -1.000000
v 1.000000 0.500000 -1.500000
v -1.000000 0.500000 -1.500000
v -1.500000 0.500000 -1.000000
v 1.000000 -0.000000 -1.500000
v 1.500000 -0.000000 -1.000000
v 1.500000 -0.000000 1.000000
v 1.000000 -0.000000 1.500000
v -1.000000 0.000000 1.500000
v -1.500000 0.000000 1.000000
v -1.500000 0.000000 -1.000000
v -1.000000 0.000000 -1.500000
v -1.000000 2.500000 1.500000
v -1.500000 2.500000 1.000000
v 1.500000 2.500000 1.000000
v 1.000000 2.500000 1.500000
v -1.500000 2.500000 -1.000000
v -1.000000 2.500000 -1.500000
v 1.000000 2.500000 -1.500000
v 1.500000 2.500000 -1.000000
v -1.000000 3.000000 -1.500000
v -1.500000 3.000000 -1.000000
v -1.500000 3.000000 1.000000
v -1.000000 3.000000 1.500000
v 1.000000 3.000000 1.500000
v 1.500000 3.000000 1.000000
v 1.500000 3.000000 -1.000000
v 1.000000 3.000000 -1.500000
v -1.250000 1.750000 -0.250000
v -1.250000 1.250000 -0.250000
v -1.250000 1.750000 0.250000
v -1.250000 1.250000 0.250000
v -1.500000 2.000000 -0.500000
v -1.500000 1.000000 -0.500000
v -1.500000 2.000000 0.500000
v -1.500000 1.000000 0.500000
v 0.375000 1.750000 -0.750000
v 0.750000 1.750000 -0.375000
v -0.750000 1.750000 -0.375000
v -0.375000 1.750000 -0.750000
v -0.375000 1.750000 0.750000
v -0.750000 1.750000 0.375000
v 0.750000 1.750000 0.375000
v 0.375000 1.750000 0.750000
v -0.500000 0.500000 1.000000
v -1.000000 0.500000 0.500000
v 1.000000 0.500000 0.500000
v 0.500000 0.500000 1.000000
v -1.000000 0.500000 -0.500000
v -0.500000 0.500000 -1.000000
v 0.500000 0.500000 -1.000000
v 1.000000 0.500000 -0.500000
v -0.500000 1.000000 -1.000000
v -1.000000 1.000000 -0.500000
v -1.000000 1.000000 0.500000
v -0.500000 1.000000 1.000000
v 0.500000 1.000000 1.000000
v 1.000000 1.000000 0.500000
v 1.000000 1.000000 -0.500000
v 0.500000 1.000000 -1.000000
v 0.375000 1.250000 0.750000
v 0.750000 1.250000 0.375000
v -0.750000 1.250000 0.375000
v -0.375000 1.250000 0.750000
v -0.375000 1.250000 -0.750000
v -0.750000 1.250000 -0.375000
v 0.750000 1.250000 -0.375000
v 0.375000 1.250000 -0.750000
v 0.375000 1.000000 -0.750000
v 0.750000 1.000000 -0.375000
v -0.750000 1.000000 -0.375000
v -0.375000 1.000000 -0.750000
v 0.750000 1.000000 0.375000
v 0.375000 1.000000 0.750000
v -0.375000 1.000000 0.750000
v -0.750000 1.000000 0.375000
v 0.750000 2.000000 0.375000
v 0.750000 2.000000 -0.375000
v 0.375000 2.000000 0.750000
v -0.375000 2.000000 0.750000
v 0.375000 2.000000 -0.750000
v -0.375000 2.000000 -0.750000
v -0.750000 2.000000 -0.375000
v -0.750000 2.000000 0.375000
v -0.500000 2.000000 -1.000000
v -1.000000 2.000000 -0.500000
v -1.000000 2.000000 0.500000
v -0.500000 2.000000 1.000000
v 0.500000 2.000000 1.000000
v 1.000000 2.000000 0.500000
v 1.000000 2.000000 -0.500000
v 0.500000 2.000000 -1.000000
v -0.500000 2.500000 1.000000
v -1.000000 2.500000 0.500000
v -1.000000 2.500000 -0.500000
v -0.500000 2.500000 -1.000000
v 0.500000 2.500000 -1.000000
v 1.000000 2.500000 -0.500000
v 1.000000 2.500000 0.500000
v 0.500000 2.500000 1.000000
v -0.500000 1.750000 -0.250000
v -0.500000 1.250000 -0.250000
v -0.500000 1.750000 0.250000
v -0.500000 1.250000 0.250000
v 0.250000 1.250000 0.500000
v -0.250000 1.250000 0.500000
v -0.250000 1.750000 0.500000
v 0.250000 1.750000 0.500000
v 0.500000 1.250000 -0.250000
v 0.500000 1.750000 -0.250000
v 0.500000 1.250000 0.250000
v 0.500000 1.750000 0.250000
v -0.250000 1.250000 -0.500000
v -0.250000 1.750000 -0.500000
v 0.250000 1.250000 -0.500000
v 0.250000 1.750000 -0.500000
v -1.000000 0.500000 -0.646447
v -0.646447 0.500000 -1.000000
v -1.353553 0.500000 -1.000000
v -1.000000 0.500000 -1.353553
v -1.000000 2.500000 -0.646447
v -0.646447 2.500000 -1.000000
v -1.353553 2.500000 -1.000000
v -1.000000 2.500000 -1.353553
v -1.000000 0.500000 1.353553
v -0.646447 0.500000 1.000000
v -1.353553 0.500000 1.000000
v -1.000000 0.500000 0.646447
v -1.000000 2.500000 1.353553
v -0.646447 2.500000 1.000000
v -1.353553 2.500000 1.000000
v -1.000000 2.500000 0.646447
v 1.000000 0.500000 -0.646447
v 1.353553 0.500000 -1.000000
v 0.646447 0.500000 -1.000000
v 1.000000 0.500000 -1.353553
v 1.000000 2.500000 -0.646447
v 1.353553 2.500000 -1.000000
v 0.646447 2.500000 -1.000000
v 1.000000 2.500000 -1.353553
v 1.000000 0.500000 1.353553
v 1.353553 0.500000 1.000000
v 0.646447 0.500000 1.000000
v 1.000000 0.500000 0.646447
v 1.000000 2.500000 1.353553
v 1.353553 2.500000 1.000000
v 0.646447 2.500000 1.000000
v 1.000000 2.500000 0.646447
vt 0.921053 0.142857
vt 0.894737 0.250000
vt 0.894737 0.107143
vt 0.815790 0.285714
vt 0.868421 0.285714
vt 0.763158 0.214286
vt 0.789474 0.107143
vt 0.789474 0.250000
vt 0.684211 0.214286
vt 0.763158 0.285714
vt 0.684211 0.285714
vt 0.763158 0.357143
vt 0.684211 0.357143
vt 0.684211 0.214286
vt 0.763158 0.285714
vt 0.684211 0.285714
vt 0.868421 0.071429
vt 0.815790 0.071429
vt 0.868421 0.071429
vt 0.789474 0.107143
vt 0.815790 0.071429
vt 0.763158 0.214286
vt 0.789474 0.250000
vt 0.921053 0.142857
vt 0.894737 0.250000
vt 0.894737 0.107143
vt 0.684211 0.071429
vt 0.763158 0.142857
vt 0.684211 0.142857
vt 0.763158 0.214286
vt 0.763158 0.357143
vt 0.684211 0.357143
vt 0.815790 0.285714
vt 0.868421 0.285714
vt 0.789474 0.071429
vt 0.684211 0.000000
vt 0.789474 0.000000
vt 0.894737 0.071429
vt 0.894737 0.000000
vt 1.000000 0.071429
vt 1.000000 0.000000
vt 0.684211 0.071429
vt 0.763158 0.142857
vt 0.684211 0.142857
vt 0.684211 0.071429
vt 0.578947 0.000000
vt 0.763158 0.214286
vt 0.684211 0.214286
vt 0.000000 0.571429
vt 0.052632 0.857143
vt 0.000000 0.857143
vt 0.105263 1.000000
vt 0.315789 0.928571
vt 0.315789 1.000000
vt 0.105263 0.500000
vt 0.368421 0.571429
vt 0.315789 0.928571
vt 0.315789 0.428571
vt 0.105263 0.428571
vt 0.421053 0.857143
vt 0.421053 0.571429
vt 0.368421 0.071429
vt 0.052632 0.357143
vt 0.000000 0.571429
vt 0.052632 0.857143
vt 0.000000 0.857143
vt 0.763158 0.214286
vt 0.789474 0.107143
vt 0.789474 0.250000
vt 0.105263 0.500000
vt 0.368421 0.571429
vt 0.315789 0.428571
vt 0.105263 0.428571
vt 0.421053 0.857143
vt 0.421053 0.571429
vt 0.368421 0.071429
vt 0.052632 0.357143
vt 0.368421 1.000000
vt 0.315789 1.000000
vt 0.368421 0.500000
vt 0.315789 0.500000
vt 0.052632 0.428571
vt 0.105263 1.000000
vt 0.052632 0.928571
vt 0.105263 0.928571
vt 0.368421 1.000000
vt 0.368421 0.500000
vt 0.315789 0.500000
vt 0.052632 0.428571
vt 0.052632 0.928571
vt 0.105263 0.928571
vt 0.684211 0.142857
vt 0.763158 0.214286
vt 0.684211 0.214286
vt 0.684211 0.285714
vt 0.763158 0.357143
vt 0.684211 0.357143
vt 0.684211 0.071429
vt 0.763158 0.142857
vt 0.894737 0.250000
vt 0.894737 0.107143
vt 0.921053 0.142857
vt 0.868421 0.071429
vt 0.815790 0.071429
vt 0.815790 0.285714
vt 0.868421 0.285714
vt 0.921053 0.142857
vt 0.894737 0.250000
vt 0.894737 0.107143
vt 0.763158 0.285714
vt 0.684211 0.071429
vt 0.763158 0.142857
vt 0.684211 0.142857
vt 0.763158 0.214286
vt 0.789474 0.107143
vt 0.763158 0.214286
vt 0.789474 0.250000
vt 0.868421 0.071429
vt 0.815789 0.071429
vt 0.815789 0.285714
vt 0.868421 0.285714
vt 0.421053 0.428571
vt 0.473684 0.571429
vt 0.421053 0.571429
vt 0.565789 0.714286
vt 0.486842 0.750000
vt 0.486842 0.714286
vt 0.526316 0.357143
vt 0.684211 0.428571
vt 0.631579 0.642857
vt 0.631579 0.285714
vt 0.526316 0.285714
vt 0.736842 0.571429
vt 0.736842 0.428571
vt 0.473684 0.642857
vt 0.526316 0.714286
vt 0.473684 0.714286
vt 0.684211 0.714286
vt 0.684211 0.642857
vt 0.684211 0.357143
vt 0.631579 0.357143
vt 0.473684 0.285714
vt 0.631579 0.714286
vt 0.486842 1.000000
vt 0.565789 0.964286
vt 0.565789 1.000000
vt 0.605263 0.803571
vt 0.631579 0.910714
vt 0.631579 0.803571
vt 0.447368 0.803571
vt 0.565789 0.750000
vt 0.605263 0.910714
vt 0.605263 1.000000
vt 0.605263 0.964286
vt 0.447368 0.964286
vt 0.486842 0.964286
vt 0.605263 0.750000
vt 0.605263 0.714286
vt 0.447368 0.714286
vt 0.447368 0.750000
vt 0.421053 0.803571
vt 0.447368 0.910714
vt 0.421053 0.910714
vt 0.473684 0.428571
vt 0.631579 0.357143
vt 0.684211 0.571429
vt 0.486842 0.750000
vt 0.565789 0.714286
vt 0.447368 0.750000
vt 0.486842 0.714286
vt 0.486842 0.964286
vt 0.447368 1.000000
vt 0.447368 0.964286
vt 0.447368 0.910714
vt 0.421053 0.803571
vt 0.565789 0.964286
vt 0.486842 1.000000
vt 0.605263 0.964286
vt 0.565789 1.000000
vt 0.605263 0.714286
vt 0.605263 0.750000
vt 0.605263 0.803571
vt 0.631579 0.910714
vt 0.763158 0.285714
vt 0.684211 0.285714
vt 0.684211 0.428571
vt 0.736842 0.571429
vt 0.684211 0.285714
vt 0.684211 0.357143
vt 0.526316 0.642857
vt 0.473684 0.714286
vt 0.473684 0.642857
vt 0.526316 0.357143
vt 0.631579 0.285714
vt 0.631579 0.642857
vt 0.526316 0.714286
vt 0.473684 0.357143
vt 0.526316 0.285714
vt 0.684211 0.642857
vt 0.631579 0.714286
vt 0.473684 0.571429
vt 0.421053 0.428571
vt 0.763158 0.357143
vt 0.684211 0.357143
vt 0.578947 0.285714
vt 0.526316 0.000000
vt 0.578947 0.000000
vt 0.473684 0.285714
vt 0.421053 0.000000
vt 0.473684 0.000000
vt 0.526316 0.285714
vt 0.421053 0.285714
vt 0.368421 0.000000
vt 0.578947 0.285714
vt 0.526316 0.000000
vt 0.578947 0.000000
vt 0.473684 0.285714
vt 0.421053 0.000000
vt 0.473684 0.000000
vt 0.526316 0.285714
vt 0.421053 0.285714
vt 0.368421 0.000000
vt 0.578947 0.285714
vt 0.526316 0.000000
vt 0.578947 0.000000
vt 0.473684 0.285714
vt 0.421053 0.000000
vt 0.473684 0.000000
vt 0.526316 0.285714
vt 0.421053 0.285714
vt 0.368421 0.000000
vt 0.578947 0.285714
vt 0.526316 0.000000
vt 0.578947 0.000000
vt 0.473684 0.285714
vt 0.421053 0.000000
vt 0.473684 0.000000
vt 0.526316 0.285714
vt 0.421053 0.285714
vt 0.368421 0.000000
vt 0.921053 0.214286
vt 0.763158 0.142857
vt 0.763158 0.142857
vt 0.921053 0.214286
vt 0.763158 0.071429
vt 0.763158 0.071429
vt 0.578947 0.071429
vt 0.052632 0.571429
vt 0.368421 0.857143
vt 0.052632 0.071429
vt 0.105263 0.000000
vt 0.315789 0.000000
vt 0.368421 0.357143
vt 0.052632 0.571429
vt 0.763158 0.142857
vt 0.368421 0.857143
vt 0.052632 0.071429
vt 0.105263 0.000000
vt 0.315789 0.000000
vt 0.368421 0.357143
vt 0.368421 0.928571
vt 0.368421 0.428571
vt 0.052632 0.500000
vt 0.052632 1.000000
vt 0.368421 0.928571
vt 0.368421 0.428571
vt 0.052632 0.500000
vt 0.052632 1.000000
vt 0.763158 0.071429
vt 0.921053 0.214286
vt 0.921053 0.214286
vt 0.763158 0.071429
vt 0.763158 0.142857
vt 0.473684 0.428571
vt 0.565789 0.750000
vt 0.526316 0.642857
vt 0.684211 0.571429
vt 0.684211 0.285714
vt 0.473684 0.357143
vt 0.447368 0.803571
vt 0.605263 0.910714
vt 0.447368 1.000000
vt 0.447368 0.714286
vt 0.421053 0.910714
vt 0.605263 1.000000
vt 0.631579 0.803571
vt 0.736842 0.428571
vt 0.473684 0.285714
vt 0.684211 0.714286
vt 0.421053 0.571429
vt 0.368421 0.285714
vt 0.368421 0.285714
vt 0.368421 0.285714
vt 0.368421 0.285714
vn 0.7071 0.0000 -0.7071
vn 0.0000 0.7071 -0.7071
vn -0.7071 0.0000 -0.7071
vn 0.0000 0.0000 1.0000
vn -1.0000 0.0000 0.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 0.0000 -0.7071 -0.7071
vn 0.0000 -0.7071 0.7071
vn 0.7071 0.0000 0.7071
vn -0.7071 0.0000 0.7071
vn 0.0000 1.0000 0.0000
vn 0.0000 0.7071 0.7071
vn 1.0000 0.0000 0.0000
vn -0.7071 -0.7071 0.0000
vn -0.7071 0.7071 0.0000
vn 0.7071 -0.7071 0.0000
vn 0.7071 0.7071 0.0000
s off
f 5/1/1 2/2/1 1/3/1
f 7/4/2 2/2/2 8/5/2
f 7/6/3 4/7/3 3/8/3
f 2/2/4 4/7/4 1/3/4
f 7/9/5 142/10/5 6/11/5
f 6/11/6 141/12/6 5/13/6
f 65/14/7 138/15/7 66/16/7
f 5/17/8 4/7/8 6/18/8
f 13/19/9 10/20/9 15/21/9
f 16/22/10 10/20/10 9/23/10
f 13/24/11 12/25/11 11/26/11
f 12/25/7 10/20/7 11/26/7
f 68/27/4 139/28/4 67/29/4
f 67/29/12 137/30/12 65/14/12
f 66/16/6 140/31/6 68/32/6
f 16/33/13 12/25/13 14/34/13
f 19/35/4 24/36/4 20/37/4
f 17/38/14 20/37/14 18/39/14
f 21/40/7 18/39/7 22/41/7
f 13/42/5 150/43/5 14/44/5
f 23/45/5 22/46/5 24/36/5
f 14/44/12 152/47/12 16/48/12
f 36/49/4 44/50/4 33/51/4
f 50/52/5 58/53/5 53/54/5
f 46/55/6 48/56/6 42/57/6
f 40/58/5 46/55/5 35/59/5
f 38/60/7 48/56/7 39/61/7
f 38/62/12 40/58/12 36/63/12
f 52/64/4 60/65/4 49/66/4
f 32/67/11 25/68/11 26/69/11
f 62/70/12 64/71/12 58/53/12
f 56/72/14 62/70/14 51/73/14
f 54/74/7 64/71/7 55/75/7
f 54/76/6 56/72/6 52/77/6
f 42/57/1 38/78/1 37/79/1
f 40/58/3 48/80/3 47/81/3
f 46/55/11 36/82/11 35/59/11
f 34/83/10 44/84/10 43/85/10
f 58/53/3 54/86/3 53/54/3
f 56/72/1 64/87/1 63/88/1
f 62/70/10 52/89/10 51/73/10
f 50/52/11 60/90/11 59/91/11
f 34/83/14 42/57/14 37/79/14
f 30/92/12 148/93/12 32/94/12
f 31/95/6 145/96/6 29/97/6
f 29/98/7 146/99/7 30/92/7
f 28/100/14 25/68/14 27/101/14
f 29/102/3 28/100/3 27/101/3
f 29/103/15 25/68/15 31/104/15
f 32/105/16 28/100/16 30/106/16
f 68/107/10 71/108/10 72/109/10
f 32/94/4 147/110/4 31/95/4
f 5/111/14 144/112/14 8/113/14
f 8/113/12 143/114/12 7/9/12
f 71/108/5 70/115/5 72/109/5
f 65/116/1 70/115/1 69/117/1
f 68/118/17 70/115/17 66/119/17
f 65/120/18 71/108/18 67/121/18
f 84/122/4 92/123/4 81/124/4
f 106/125/14 98/126/14 109/127/14
f 94/128/12 96/129/12 90/130/12
f 88/131/14 94/128/14 83/132/14
f 86/133/7 96/129/7 87/134/7
f 92/135/11 82/136/11 81/137/11
f 86/138/3 90/130/3 89/139/3
f 88/131/1 96/140/1 95/141/1
f 94/128/10 84/142/10 83/132/10
f 82/136/5 90/130/5 85/143/5
f 112/144/5 102/145/5 107/146/5
f 98/126/12 104/147/12 102/145/12
f 108/148/7 104/147/7 105/149/7
f 73/150/6 79/151/6 77/152/6
f 108/153/3 102/145/3 101/154/3
f 112/144/11 100/155/11 99/156/11
f 104/157/1 106/125/1 105/158/1
f 110/159/10 98/126/10 97/160/10
f 110/161/4 100/162/4 111/163/4
f 128/164/6 126/165/6 124/166/6
f 74/167/14 113/168/14 79/151/14
f 73/169/1 114/170/1 74/167/1
f 75/171/3 118/172/3 76/173/3
f 76/174/7 117/175/7 73/150/7
f 78/176/5 119/177/5 75/171/5
f 77/178/11 120/179/11 78/176/11
f 79/151/10 115/180/10 80/181/10
f 80/182/4 116/183/4 77/152/4
f 16/48/14 151/184/14 15/185/14
f 125/186/4 129/187/4 124/166/4
f 126/165/10 136/188/10 125/189/10
f 122/190/3 132/191/3 121/192/3
f 127/193/14 135/194/14 126/165/14
f 123/195/5 131/196/5 122/190/5
f 128/197/1 134/198/1 127/193/1
f 124/199/11 130/200/11 123/195/11
f 121/201/7 133/202/7 128/164/7
f 15/185/6 149/203/6 13/204/6
f 159/205/3 156/206/3 155/207/3
f 158/208/10 153/209/10 154/210/10
f 160/211/1 154/210/1 156/206/1
f 157/212/11 155/213/11 153/209/11
f 167/214/3 164/215/3 163/216/3
f 166/217/10 161/218/10 162/219/10
f 168/220/1 162/219/1 164/215/1
f 165/221/11 163/222/11 161/218/11
f 175/223/3 172/224/3 171/225/3
f 174/226/10 169/227/10 170/228/10
f 176/229/1 170/228/1 172/224/1
f 173/230/11 171/231/11 169/227/11
f 183/232/3 180/233/3 179/234/3
f 182/235/10 177/236/10 178/237/10
f 184/238/1 178/237/1 180/233/1
f 181/239/11 179/240/11 177/236/11
f 5/1/1 8/241/1 2/2/1
f 7/4/2 3/8/2 2/2/2
f 7/6/3 6/242/3 4/7/3
f 2/2/4 3/8/4 4/7/4
f 7/9/5 143/114/5 142/10/5
f 6/11/6 142/10/6 141/12/6
f 65/14/7 137/30/7 138/15/7
f 5/17/8 1/3/8 4/7/8
f 13/19/9 11/26/9 10/20/9
f 16/22/10 15/243/10 10/20/10
f 13/24/11 14/244/11 12/25/11
f 12/25/7 9/23/7 10/20/7
f 68/27/4 140/245/4 139/28/4
f 67/29/12 139/28/12 137/30/12
f 66/16/6 138/15/6 140/31/6
f 16/33/13 9/23/13 12/25/13
f 19/35/4 23/45/4 24/36/4
f 17/38/14 19/35/14 20/37/14
f 21/40/7 17/38/7 18/39/7
f 13/42/5 149/246/5 150/43/5
f 23/45/5 21/247/5 22/46/5
f 14/44/12 150/43/12 152/47/12
f 36/49/4 45/248/4 44/50/4
f 50/52/5 59/91/5 58/53/5
f 42/57/6 43/85/6 44/50/6
f 44/50/6 45/248/6 46/55/6
f 46/55/6 47/81/6 48/56/6
f 48/56/6 41/249/6 42/57/6
f 42/57/6 44/50/6 46/55/6
f 40/58/5 47/81/5 46/55/5
f 38/60/7 41/249/7 48/56/7
f 36/63/12 33/250/12 34/251/12
f 34/251/12 37/252/12 38/62/12
f 38/62/12 39/253/12 40/58/12
f 40/58/12 35/59/12 36/63/12
f 36/63/12 34/251/12 38/62/12
f 52/64/4 61/254/4 60/65/4
f 32/67/11 31/255/11 25/68/11
f 58/53/12 59/91/12 60/65/12
f 60/65/12 61/254/12 62/70/12
f 62/70/12 63/88/12 64/71/12
f 64/71/12 57/256/12 58/53/12
f 58/53/12 60/65/12 62/70/12
f 56/72/14 63/88/14 62/70/14
f 54/74/7 57/256/7 64/71/7
f 52/77/6 49/257/6 50/258/6
f 50/258/6 53/259/6 54/76/6
f 54/76/6 55/260/6 56/72/6
f 56/72/6 51/73/6 52/77/6
f 52/77/6 50/258/6 54/76/6
f 42/57/1 41/261/1 38/78/1
f 40/58/3 39/262/3 48/80/3
f 46/55/11 45/263/11 36/82/11
f 34/83/10 33/264/10 44/84/10
f 58/53/3 57/265/3 54/86/3
f 56/72/1 55/266/1 64/87/1
f 62/70/10 61/267/10 52/89/10
f 50/52/11 49/268/11 60/90/11
f 34/83/14 43/85/14 42/57/14
f 30/92/12 146/99/12 148/93/12
f 31/95/6 147/110/6 145/96/6
f 29/98/7 145/269/7 146/99/7
f 28/100/14 26/69/14 25/68/14
f 29/102/3 30/270/3 28/100/3
f 29/103/15 27/101/15 25/68/15
f 32/105/16 26/69/16 28/100/16
f 68/107/10 67/271/10 71/108/10
f 32/94/4 148/93/4 147/110/4
f 5/111/14 141/272/14 144/112/14
f 8/113/12 144/112/12 143/114/12
f 71/108/5 69/117/5 70/115/5
f 65/116/1 66/273/1 70/115/1
f 68/118/17 72/109/17 70/115/17
f 65/120/18 69/117/18 71/108/18
f 84/122/4 93/274/4 92/123/4
f 106/125/14 103/275/14 98/126/14
f 90/130/12 91/276/12 92/123/12
f 92/123/12 93/274/12 94/128/12
f 94/128/12 95/141/12 96/129/12
f 96/129/12 89/277/12 90/130/12
f 90/130/12 92/123/12 94/128/12
f 88/131/14 95/141/14 94/128/14
f 86/133/7 89/277/7 96/129/7
f 92/135/11 91/276/11 82/136/11
f 86/138/3 85/143/3 90/130/3
f 88/131/1 87/278/1 96/140/1
f 94/128/10 93/279/10 84/142/10
f 82/136/5 91/276/5 90/130/5
f 112/144/5 99/156/5 102/145/5
f 102/145/12 99/156/12 100/162/12
f 100/162/12 97/280/12 98/126/12
f 98/126/12 103/275/12 104/147/12
f 104/147/12 101/281/12 102/145/12
f 102/145/12 100/162/12 98/126/12
f 108/148/7 101/281/7 104/147/7
f 77/152/6 78/176/6 75/171/6
f 75/171/6 76/174/6 73/150/6
f 73/150/6 74/167/6 79/151/6
f 79/151/6 80/182/6 77/152/6
f 77/152/6 75/171/6 73/150/6
f 108/153/3 107/146/3 102/145/3
f 112/144/11 111/282/11 100/155/11
f 104/157/1 103/275/1 106/125/1
f 110/159/10 109/127/10 98/126/10
f 110/161/4 97/280/4 100/162/4
f 124/166/6 123/195/6 122/190/6
f 122/190/6 121/201/6 128/164/6
f 128/164/6 127/193/6 126/165/6
f 126/165/6 125/186/6 124/166/6
f 124/166/6 122/190/6 128/164/6
f 74/167/14 114/170/14 113/168/14
f 73/169/1 117/283/1 114/170/1
f 75/171/3 119/177/3 118/172/3
f 76/174/7 118/284/7 117/175/7
f 78/176/5 120/179/5 119/177/5
f 77/178/11 116/285/11 120/179/11
f 79/151/10 113/168/10 115/180/10
f 80/182/4 115/286/4 116/183/4
f 16/48/14 152/47/14 151/184/14
f 125/186/4 136/287/4 129/187/4
f 126/165/10 135/194/10 136/188/10
f 122/190/3 131/196/3 132/191/3
f 127/193/14 134/198/14 135/194/14
f 123/195/5 130/200/5 131/196/5
f 128/197/1 133/288/1 134/198/1
f 124/199/11 129/289/11 130/200/11
f 121/201/7 132/290/7 133/202/7
f 15/185/6 151/184/6 149/203/6
f 159/205/3 160/211/3 156/206/3
f 158/208/10 157/212/10 153/209/10
f 160/211/1 158/208/1 154/210/1
f 157/212/11 159/291/11 155/213/11
f 167/214/3 168/220/3 164/215/3
f 166/217/10 165/221/10 161/218/10
f 168/220/1 166/217/1 162/219/1
f 165/221/11 167/292/11 163/222/11
f 175/223/3 176/229/3 172/224/3
f 174/226/10 173/230/10 169/227/10
f 176/229/1 174/226/1 170/228/1
f 173/230/11 175/293/11 171/231/11
f 183/232/3 184/238/3 180/233/3
f 182/235/10 181/239/10 177/236/10
f 184/238/1 182/235/1 178/237/1
f 181/239/11 183/294/11 179/240/11

View File

@ -0,0 +1,842 @@
# Blender v2.79 (sub 0) OBJ File: 'quadrupole.blend'
# www.blender.org
o Cube_Cube.001
v -0.500000 1.000000 1.500000
v -0.500000 2.000000 1.500000
v -0.500000 1.000000 -1.500000
v -0.500000 2.000000 -1.500000
v 0.500000 1.000000 1.500000
v 0.500000 2.000000 1.500000
v 0.500000 1.000000 -1.500000
v 0.500000 2.000000 -1.500000
v -0.625000 0.000000 1.000000
v 0.625000 0.000000 1.000000
v -0.625000 0.000000 -1.000000
v 0.625000 0.000000 -1.000000
v -0.625000 3.000000 1.000000
v 0.625000 3.000000 1.000000
v -0.625000 3.000000 -1.000000
v 0.625000 3.000000 -1.000000
v -1.500000 2.125000 1.000000
v -1.500000 0.875000 1.000000
v -1.500000 2.125000 -1.000000
v -1.500000 0.875000 -1.000000
v 1.500000 2.125000 1.000000
v 1.500000 0.875000 1.000000
v 1.500000 2.125000 -1.000000
v 1.500000 0.875000 -1.000000
v -0.500000 0.250000 1.000000
v 0.500000 0.250000 1.000000
v -0.500000 0.250000 -1.000000
v 0.500000 0.250000 -1.000000
v -0.500000 2.750000 1.000000
v 0.500000 2.750000 1.000000
v -0.500000 2.750000 -1.000000
v 0.500000 2.750000 -1.000000
v -1.250000 2.000000 1.000000
v -1.250000 1.000000 1.000000
v -1.250000 2.000000 -1.000000
v -1.250000 1.000000 -1.000000
v 1.250000 2.000000 1.000000
v 1.250000 1.000000 1.000000
v 1.250000 2.000000 -1.000000
v 1.250000 1.000000 -1.000000
v -0.353553 0.792893 1.000000
v -0.707107 1.146447 1.000000
v -0.707107 1.146447 -1.000000
v -0.353553 0.792893 -1.000000
v -1.060660 0.792893 1.250000
v -1.237437 0.969670 1.000000
v -0.530330 0.262563 1.000000
v -0.707107 0.439340 1.250000
v -1.237437 0.969670 -1.000000
v -1.060660 0.792893 -1.250000
v -0.707107 0.439340 -1.250000
v -0.530330 0.262563 -1.000000
v -0.795495 1.058058 -1.250000
v -0.972272 1.234835 -1.000000
v -0.972272 1.234835 1.000000
v -0.795495 1.058058 1.250000
v -0.441942 0.704505 1.250000
v -0.265165 0.527728 1.000000
v -0.265165 0.527728 -1.000000
v -0.441942 0.704505 -1.250000
v -0.441942 0.704505 -1.000000
v -0.795495 1.058058 -1.000000
v -0.795495 1.058058 1.000000
v -0.441942 0.704505 1.000000
v 0.353553 2.207107 1.000000
v 0.707107 1.853553 1.000000
v 0.707107 1.853553 -1.000000
v 0.353553 2.207107 -1.000000
v 1.060660 2.207107 1.250000
v 1.237437 2.030330 1.000000
v 0.530330 2.737437 1.000000
v 0.707107 2.560660 1.250000
v 1.237437 2.030330 -1.000000
v 1.060660 2.207107 -1.250000
v 0.707107 2.560660 -1.250000
v 0.530330 2.737437 -1.000000
v 0.795495 1.941942 -1.250000
v 0.972272 1.765165 -1.000000
v 0.972272 1.765165 1.000000
v 0.795495 1.941942 1.250000
v 0.441942 2.295495 1.250000
v 0.265165 2.472272 1.000000
v 0.265165 2.472272 -1.000000
v 0.441942 2.295495 -1.250000
v 0.441942 2.295495 -1.000000
v 0.795495 1.941942 -1.000000
v 0.795495 1.941942 1.000000
v 0.441942 2.295495 1.000000
v -0.707107 1.853553 1.000000
v -0.353553 2.207107 1.000000
v -0.353553 2.207107 -1.000000
v -0.707107 1.853553 -1.000000
v -0.707107 2.560660 1.250000
v -0.530330 2.737437 1.000000
v -1.237437 2.030330 1.000000
v -1.060660 2.207107 1.250000
v -0.530330 2.737437 -1.000000
v -0.707107 2.560660 -1.250000
v -1.060660 2.207107 -1.250000
v -1.237437 2.030330 -1.000000
v -0.441942 2.295495 -1.250000
v -0.265165 2.472272 -1.000000
v -0.265165 2.472272 1.000000
v -0.441942 2.295495 1.250000
v -0.795495 1.941942 1.250000
v -0.972272 1.765165 1.000000
v -0.972272 1.765165 -1.000000
v -0.795495 1.941942 -1.250000
v -0.795495 1.941942 -1.000000
v -0.441942 2.295495 -1.000000
v -0.441942 2.295495 1.000000
v -0.795495 1.941942 1.000000
v 0.707107 1.146447 1.000000
v 0.353553 0.792893 1.000000
v 0.353553 0.792893 -1.000000
v 0.707107 1.146447 -1.000000
v 0.707107 0.439340 1.250000
v 0.530330 0.262563 1.000000
v 1.237437 0.969670 1.000000
v 1.060660 0.792893 1.250000
v 0.530330 0.262563 -1.000000
v 0.707107 0.439340 -1.250000
v 1.060660 0.792893 -1.250000
v 1.237437 0.969670 -1.000000
v 0.441942 0.704505 -1.250000
v 0.265165 0.527728 -1.000000
v 0.265165 0.527728 1.000000
v 0.441942 0.704505 1.250000
v 0.795495 1.058058 1.250000
v 0.972272 1.234835 1.000000
v 0.972272 1.234835 -1.000000
v 0.795495 1.058058 -1.250000
v 0.795495 1.058058 -1.000000
v 0.441942 0.704505 -1.000000
v 0.441942 0.704505 1.000000
v 0.795495 1.058058 1.000000
v -0.250000 0.250000 0.750000
v 0.250000 0.250000 0.750000
v -0.250000 0.250000 0.250000
v 0.250000 0.250000 0.250000
v -0.250000 1.000000 0.250000
v -0.250000 1.000000 0.750000
v 0.250000 1.000000 0.750000
v 0.250000 1.000000 0.250000
v -0.250000 0.250000 -0.250000
v 0.250000 0.250000 -0.250000
v -0.250000 0.250000 -0.750000
v 0.250000 0.250000 -0.750000
v -0.250000 1.000000 -0.750000
v -0.250000 1.000000 -0.250000
v 0.250000 1.000000 -0.250000
v 0.250000 1.000000 -0.750000
v 0.250000 2.750000 0.750000
v -0.250000 2.750000 0.750000
v 0.250000 2.750000 0.250000
v -0.250000 2.750000 0.250000
v 0.250000 2.000000 0.250000
v 0.250000 2.000000 0.750000
v -0.250000 2.000000 0.750000
v -0.250000 2.000000 0.250000
v 0.250000 2.750000 -0.250000
v -0.250000 2.750000 -0.250000
v 0.250000 2.750000 -0.750000
v -0.250000 2.750000 -0.750000
v 0.250000 2.000000 -0.750000
v 0.250000 2.000000 -0.250000
v -0.250000 2.000000 -0.250000
v -0.250000 2.000000 -0.750000
v -1.250000 1.750000 0.750000
v -1.250000 1.250000 0.750000
v -1.250000 1.750000 0.250000
v -1.250000 1.250000 0.250000
v -0.500000 1.750000 0.250000
v -0.500000 1.750000 0.750000
v -0.500000 1.250000 0.750000
v -0.500000 1.250000 0.250000
v -1.250000 1.750000 -0.250000
v -1.250000 1.250000 -0.250000
v -1.250000 1.750000 -0.750000
v -1.250000 1.250000 -0.750000
v -0.500000 1.750000 -0.750000
v -0.500000 1.750000 -0.250000
v -0.500000 1.250000 -0.250000
v -0.500000 1.250000 -0.750000
v 1.250000 1.250000 0.750000
v 1.250000 1.750000 0.750000
v 1.250000 1.250000 0.250000
v 1.250000 1.750000 0.250000
v 0.500000 1.250000 0.250000
v 0.500000 1.250000 0.750000
v 0.500000 1.750000 0.750000
v 0.500000 1.750000 0.250000
v 1.250000 1.250000 -0.250000
v 1.250000 1.750000 -0.250000
v 1.250000 1.250000 -0.750000
v 1.250000 1.750000 -0.750000
v 0.500000 1.250000 -0.750000
v 0.500000 1.250000 -0.250000
v 0.500000 1.750000 -0.250000
v 0.500000 1.750000 -0.750000
vt 0.105263 0.200000
vt 0.421053 0.300000
vt 0.105263 0.300000
vt 0.421053 0.200000
vt 0.526316 0.100000
vt 0.526316 0.200000
vt 0.421053 0.100000
vt 0.105263 0.000000
vt 0.421053 0.000000
vt 0.105263 0.100000
vt 0.000000 0.200000
vt 0.000000 0.100000
vt 0.421053 0.400000
vt 0.973684 0.000000
vt 0.763158 0.125000
vt 0.763158 0.000000
vt 0.763158 0.500000
vt 0.973684 0.625000
vt 0.763158 0.625000
vt 0.973684 0.750000
vt 0.763158 0.875000
vt 0.763158 0.750000
vt 0.763158 0.250000
vt 0.973684 0.375000
vt 0.763158 0.375000
vt 0.973684 0.500000
vt 0.973684 0.250000
vt 0.973684 0.125000
vt 0.763158 1.000000
vt 0.973684 0.875000
vt 0.973684 1.000000
vt 0.736842 0.112500
vt 0.526316 0.012500
vt 0.736842 0.012500
vt 0.526316 0.612500
vt 0.736842 0.512500
vt 0.736842 0.612500
vt 0.736842 0.862500
vt 0.526316 0.762500
vt 0.736842 0.762500
vt 0.526316 0.362500
vt 0.736842 0.262500
vt 0.736842 0.362500
vt 0.526316 0.887500
vt 0.736842 0.987500
vt 0.526316 0.987500
vt 0.736842 0.137500
vt 0.526316 0.237500
vt 0.526316 0.137500
vt 0.526316 0.487500
vt 0.736842 0.387500
vt 0.736842 0.487500
vt 0.736842 0.737500
vt 0.526316 0.637500
vt 0.736842 0.637500
vt 0.736842 0.887500
vt 1.000000 0.362500
vt 1.000000 0.487500
vt 1.000000 0.612500
vt 1.000000 0.737500
vt 1.000000 0.768750
vt 1.000000 0.887500
vt 1.000000 0.012500
vt 1.000000 0.237500
vt 0.000000 0.687500
vt 0.039474 0.637500
vt 0.039474 0.687500
vt -0.000000 0.637500
vt 0.039474 0.687500
vt -0.000000 0.687500
vt 0.302632 0.637500
vt 0.302632 0.687500
vt 0.276316 0.712500
vt 0.276316 0.575000
vt 0.065789 0.612500
vt 0.065789 0.575000
vt 0.342105 0.687500
vt 0.342105 0.637500
vt 0.039474 0.550000
vt 0.065789 0.475000
vt 0.302632 0.712500
vt 0.342105 0.712500
vt 0.342105 0.612500
vt 0.302632 0.612500
vt 0.039474 0.612500
vt 0.000000 0.637500
vt -0.000000 0.612500
vt 0.039474 0.712500
vt 0.065789 0.750000
vt 0.276316 0.750000
vt 0.223684 0.475000
vt 0.434211 0.462500
vt 0.434211 0.475000
vt 0.210526 0.462500
vt 0.223684 0.412500
vt 0.223684 0.462500
vt 0.434211 0.400000
vt 0.223684 0.400000
vt 0.447368 0.462500
vt 0.434211 0.412500
vt 0.447368 0.412500
vt 0.302632 0.637500
vt 0.302632 0.687500
vt 0.276316 0.712500
vt 0.276316 0.575000
vt 0.065789 0.612500
vt 0.065789 0.575000
vt 0.342105 0.637500
vt 0.039474 0.550000
vt 0.065789 0.475000
vt 0.342105 0.712500
vt 0.342105 0.687500
vt 0.302632 0.612500
vt 0.039474 0.612500
vt -0.000000 0.612500
vt 0.000000 0.712500
vt 0.039474 0.712500
vt 0.065789 0.750000
vt 0.276316 0.750000
vt 0.223684 0.475000
vt 0.434211 0.462500
vt 0.434211 0.475000
vt 0.210526 0.412500
vt 0.223684 0.462500
vt 0.210526 0.462500
vt 0.434211 0.400000
vt 0.223684 0.412500
vt 0.223684 0.400000
vt 0.447368 0.462500
vt 0.434211 0.412500
vt 0.447368 0.412500
vt -0.000000 0.687500
vt 0.039474 0.637500
vt 0.039474 0.687500
vt 0.000000 0.637500
vt 0.039474 0.687500
vt -0.000000 0.687500
vt 0.302632 0.637500
vt 0.302632 0.687500
vt 0.276316 0.712500
vt 0.276316 0.575000
vt 0.065789 0.612500
vt 0.065789 0.575000
vt 0.342105 0.687500
vt 0.342105 0.637500
vt 0.039474 0.550000
vt 0.065789 0.475000
vt 0.302632 0.712500
vt 0.342105 0.712500
vt 0.302632 0.612500
vt 0.039474 0.612500
vt -0.000000 0.637500
vt -0.000000 0.612500
vt 0.039474 0.712500
vt 0.065789 0.750000
vt 0.276316 0.750000
vt 0.223684 0.475000
vt 0.434211 0.462500
vt 0.434211 0.475000
vt 0.210526 0.412500
vt 0.223684 0.462500
vt 0.210526 0.462500
vt 0.434211 0.400000
vt 0.223684 0.412500
vt 0.223684 0.400000
vt 0.447368 0.462500
vt 0.434211 0.412500
vt 0.447368 0.412500
vt 0.302632 0.637500
vt 0.302632 0.687500
vt 0.276316 0.712500
vt 0.276316 0.575000
vt 0.065789 0.612500
vt 0.065789 0.575000
vt 0.342105 0.637500
vt 0.039474 0.550000
vt 0.065789 0.475000
vt 0.342105 0.712500
vt 0.342105 0.687500
vt 0.342105 0.612500
vt 0.302632 0.612500
vt 0.039474 0.612500
vt 0.000000 0.612500
vt 0.000000 0.712500
vt 0.039474 0.712500
vt 0.065789 0.750000
vt 0.276316 0.750000
vt 0.223684 0.475000
vt 0.434211 0.462500
vt 0.434211 0.475000
vt 0.210526 0.412500
vt 0.223684 0.462500
vt 0.210526 0.462500
vt 0.434211 0.400000
vt 0.223684 0.412500
vt 0.223684 0.400000
vt 0.447368 0.462500
vt 0.434211 0.412500
vt 0.447368 0.412500
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt -0.000000 0.475000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt -0.000000 0.475000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt -0.000000 0.475000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt -0.000000 0.475000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt -0.000000 0.475000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt -0.000000 0.475000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt 0.052632 0.475000
vt 0.105263 0.400000
vt 0.105263 0.475000
vt 0.157895 0.475000
vt 0.210526 0.400000
vt 0.210526 0.475000
vt -0.000000 0.400000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt -0.000000 0.400000
vt 0.052632 0.400000
vt 0.157895 0.400000
vt 0.105263 0.400000
vt 0.526316 0.112500
vt 0.526316 0.512500
vt 0.526316 0.862500
vt 0.526316 0.262500
vt 0.736842 0.237500
vt 0.526316 0.387500
vt 0.526316 0.737500
vt 1.000000 0.262500
vt 1.000000 0.387500
vt 1.000000 0.512500
vt 1.000000 0.637500
vt 1.000000 0.862500
vt 1.000000 0.987500
vt 1.000000 0.112500
vt 1.000000 0.137500
vt 0.039474 0.637500
vt 0.065789 0.712500
vt 0.276316 0.612500
vt 0.039474 0.500000
vt 0.276316 0.475000
vt 0.302632 0.500000
vt 0.302632 0.550000
vt 0.000000 0.712500
vt 0.210526 0.412500
vt 0.065789 0.712500
vt 0.276316 0.612500
vt 0.039474 0.500000
vt 0.276316 0.475000
vt 0.302632 0.500000
vt 0.302632 0.550000
vt 0.302632 0.712500
vt 0.342105 0.612500
vt 0.039474 0.637500
vt 0.065789 0.712500
vt 0.276316 0.612500
vt 0.039474 0.500000
vt 0.276316 0.475000
vt 0.302632 0.500000
vt 0.302632 0.550000
vt 0.342105 0.612500
vt 0.000000 0.712500
vt 0.065789 0.712500
vt 0.276316 0.612500
vt 0.039474 0.500000
vt 0.276316 0.475000
vt 0.302632 0.500000
vt 0.302632 0.550000
vt 0.302632 0.712500
vt -0.000000 0.400000
vt -0.000000 0.400000
vt -0.000000 0.400000
vt -0.000000 0.400000
vt -0.000000 0.400000
vt -0.000000 0.400000
vt -0.000000 0.475000
vt -0.000000 0.475000
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 0.0000 1.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
vn 0.7071 0.7071 0.0000
vn 0.7071 -0.7071 0.0000
vn -0.7071 -0.7071 0.0000
vn -0.7071 0.7071 0.0000
vn -0.5000 0.5000 -0.7071
vn 0.5000 -0.5000 -0.7071
vn 0.5000 -0.5000 0.7071
vn -0.5000 0.5000 0.7071
vn 0.5000 0.5000 -0.7071
vn -0.5000 -0.5000 -0.7071
vn -0.5000 -0.5000 0.7071
vn 0.5000 0.5000 0.7071
s off
f 2/1/1 3/2/1 1/3/1
f 4/4/2 7/5/2 3/6/2
f 8/7/3 5/8/3 7/9/3
f 6/10/4 1/11/4 5/12/4
f 7/13/5 1/3/5 3/2/5
f 4/4/6 6/10/6 8/7/6
f 11/14/5 10/15/5 9/16/5
f 14/17/6 15/18/6 13/19/6
f 19/20/1 18/21/1 17/22/1
f 22/23/3 23/24/3 21/25/3
f 21/25/7 16/26/7 14/17/7
f 24/27/8 10/15/8 12/28/8
f 9/29/9 20/30/9 11/31/9
f 15/18/10 17/22/10 13/19/10
f 26/32/6 27/33/6 25/34/6
f 31/35/5 30/36/5 29/37/5
f 34/38/3 35/39/3 33/40/3
f 39/41/1 38/42/1 37/43/1
f 36/44/7 25/45/7 27/46/7
f 26/47/10 40/48/10 28/49/10
f 32/50/9 37/51/9 30/52/9
f 33/53/8 31/54/8 29/55/8
f 17/22/4 29/55/4 13/19/4
f 13/19/4 30/36/4 14/17/4
f 14/17/4 37/51/4 21/25/4
f 21/25/4 38/42/4 22/23/4
f 22/23/4 26/47/4 10/15/4
f 26/32/4 9/16/4 10/15/4
f 9/29/4 34/56/4 18/21/4
f 34/38/4 17/22/4 18/21/4
f 24/27/2 39/57/2 23/24/2
f 23/24/2 32/58/2 16/26/2
f 16/26/2 31/59/2 15/18/2
f 15/18/2 35/60/2 19/20/2
f 35/61/2 20/30/2 19/20/2
f 36/62/2 11/31/2 20/30/2
f 27/63/2 12/28/2 11/14/2
f 12/28/2 40/64/2 24/27/2
f 45/65/4 57/66/4 56/67/4
f 72/68/4 80/69/4 69/70/4
f 60/71/7 53/72/7 54/73/7
f 52/74/8 58/75/8 47/76/8
f 50/77/2 60/71/2 51/78/2
f 47/76/9 48/79/9 46/80/9
f 54/81/11 50/77/11 49/82/11
f 52/83/12 60/71/12 59/84/12
f 58/85/13 48/86/13 47/87/13
f 55/88/14 45/65/14 56/67/14
f 46/89/10 54/73/10 49/90/10
f 63/91/10 43/92/10 62/93/10
f 63/94/4 41/95/4 42/96/4
f 61/97/8 41/95/8 64/98/8
f 41/95/7 43/92/7 42/96/7
f 62/99/2 44/100/2 61/101/2
f 84/102/9 77/103/9 78/104/9
f 76/105/10 82/106/10 71/107/10
f 75/108/2 77/103/2 84/102/2
f 71/107/7 72/109/7 70/110/7
f 73/111/12 77/103/12 74/112/12
f 83/113/11 75/108/11 84/102/11
f 82/114/14 72/68/14 71/115/14
f 70/116/13 80/69/13 79/117/13
f 70/118/8 78/104/8 73/119/8
f 87/120/8 67/121/8 86/122/8
f 88/123/4 66/124/4 87/125/4
f 85/126/10 65/127/10 88/128/10
f 65/127/9 67/121/9 66/124/9
f 86/129/2 68/130/2 85/131/2
f 93/132/4 105/133/4 104/134/4
f 120/135/4 128/136/4 117/137/4
f 108/138/8 101/139/8 102/140/8
f 100/141/9 106/142/9 95/143/9
f 98/144/2 108/138/2 99/145/2
f 95/143/10 96/146/10 94/147/10
f 102/148/15 98/144/15 97/149/15
f 107/150/16 99/145/16 108/138/16
f 106/151/17 96/152/17 95/153/17
f 103/154/18 93/132/18 104/134/18
f 94/155/7 102/140/7 97/156/7
f 111/157/7 91/158/7 110/159/7
f 112/160/4 90/161/4 111/162/4
f 109/163/9 89/164/9 112/165/9
f 89/164/8 91/158/8 90/161/8
f 110/166/2 92/167/2 109/168/2
f 132/169/10 125/170/10 126/171/10
f 124/172/7 130/173/7 119/174/7
f 123/175/2 125/170/2 132/169/2
f 119/174/8 120/176/8 118/177/8
f 121/178/16 125/170/16 122/179/16
f 124/180/15 132/169/15 131/181/15
f 130/182/18 120/135/18 119/183/18
f 118/184/17 128/136/17 127/185/17
f 118/186/9 126/171/9 121/187/9
f 135/188/9 115/189/9 134/190/9
f 136/191/4 114/192/4 135/193/4
f 133/194/7 113/195/7 136/196/7
f 113/195/10 115/189/10 114/192/10
f 134/197/2 116/198/2 133/199/2
f 148/200/3 151/201/3 146/202/3
f 145/203/1 149/204/1 147/205/1
f 140/206/3 143/207/3 138/208/3
f 137/209/1 141/210/1 139/211/1
f 139/212/2 144/213/2 140/206/2
f 138/208/4 142/214/4 137/209/4
f 147/215/2 152/216/2 148/200/2
f 146/202/4 150/217/4 145/203/4
f 164/218/1 167/219/1 162/220/1
f 161/221/3 165/222/3 163/223/3
f 156/224/1 159/225/1 154/226/1
f 153/227/3 157/228/3 155/229/3
f 155/230/2 160/231/2 156/224/2
f 154/226/4 158/232/4 153/227/4
f 163/233/2 168/234/2 164/218/2
f 162/220/4 166/235/4 161/221/4
f 180/236/5 183/237/5 178/238/5
f 177/239/6 181/240/6 179/241/6
f 172/242/5 175/243/5 170/244/5
f 169/245/6 173/246/6 171/247/6
f 171/248/2 176/249/2 172/242/2
f 170/244/4 174/250/4 169/245/4
f 179/251/2 184/252/2 180/236/2
f 178/238/4 182/253/4 177/239/4
f 196/254/6 199/255/6 194/256/6
f 193/257/5 197/258/5 195/259/5
f 188/260/6 191/261/6 186/262/6
f 185/263/5 189/264/5 187/265/5
f 188/260/2 189/266/2 192/267/2
f 186/262/4 190/268/4 185/263/4
f 196/254/2 197/269/2 200/270/2
f 194/256/4 198/271/4 193/257/4
f 2/1/1 4/4/1 3/2/1
f 4/4/2 8/7/2 7/5/2
f 8/7/3 6/10/3 5/8/3
f 6/10/4 2/1/4 1/11/4
f 7/13/5 5/272/5 1/3/5
f 4/4/6 2/1/6 6/10/6
f 11/14/5 12/28/5 10/15/5
f 14/17/6 16/26/6 15/18/6
f 19/20/1 20/30/1 18/21/1
f 22/23/3 24/27/3 23/24/3
f 21/25/7 23/24/7 16/26/7
f 24/27/8 22/23/8 10/15/8
f 9/29/9 18/21/9 20/30/9
f 15/18/10 19/20/10 17/22/10
f 26/32/6 28/273/6 27/33/6
f 31/35/5 32/274/5 30/36/5
f 34/38/3 36/275/3 35/39/3
f 39/41/1 40/276/1 38/42/1
f 36/44/7 34/56/7 25/45/7
f 26/47/10 38/277/10 40/48/10
f 32/50/9 39/278/9 37/51/9
f 33/53/8 35/279/8 31/54/8
f 17/22/4 33/53/4 29/55/4
f 13/19/4 29/37/4 30/36/4
f 14/17/4 30/52/4 37/51/4
f 21/25/4 37/43/4 38/42/4
f 22/23/4 38/277/4 26/47/4
f 26/32/4 25/34/4 9/16/4
f 9/29/4 25/45/4 34/56/4
f 34/38/4 33/40/4 17/22/4
f 24/27/2 40/280/2 39/57/2
f 23/24/2 39/281/2 32/58/2
f 16/26/2 32/282/2 31/59/2
f 15/18/2 31/283/2 35/60/2
f 35/61/2 36/284/2 20/30/2
f 36/62/2 27/285/2 11/31/2
f 27/63/2 28/286/2 12/28/2
f 12/28/2 28/287/2 40/64/2
f 45/65/4 48/86/4 57/66/4
f 72/68/4 81/288/4 80/69/4
f 54/73/7 55/289/7 58/75/7
f 55/289/7 56/67/7 58/75/7
f 56/67/7 57/66/7 58/75/7
f 58/75/7 59/290/7 54/73/7
f 59/290/7 60/71/7 54/73/7
f 52/74/8 59/290/8 58/75/8
f 50/77/2 53/72/2 60/71/2
f 48/79/9 45/291/9 46/80/9
f 46/80/9 49/292/9 52/74/9
f 49/292/9 50/293/9 52/74/9
f 50/293/9 51/294/9 52/74/9
f 52/74/9 47/76/9 46/80/9
f 54/81/11 53/72/11 50/77/11
f 52/83/12 51/78/12 60/71/12
f 58/85/13 57/66/13 48/86/13
f 55/88/14 46/295/14 45/65/14
f 46/89/10 55/289/10 54/73/10
f 63/91/10 42/96/10 43/92/10
f 63/94/4 64/296/4 41/95/4
f 61/97/8 44/100/8 41/95/8
f 41/95/7 44/100/7 43/92/7
f 62/99/2 43/92/2 44/100/2
f 78/104/9 79/297/9 82/106/9
f 79/297/9 80/69/9 82/106/9
f 80/69/9 81/288/9 82/106/9
f 82/106/9 83/298/9 78/104/9
f 83/298/9 84/102/9 78/104/9
f 76/105/10 83/298/10 82/106/10
f 75/108/2 74/112/2 77/103/2
f 72/109/7 69/299/7 70/110/7
f 70/110/7 73/300/7 76/105/7
f 73/300/7 74/301/7 76/105/7
f 74/301/7 75/302/7 76/105/7
f 76/105/7 71/107/7 70/110/7
f 73/111/12 78/303/12 77/103/12
f 83/113/11 76/304/11 75/108/11
f 82/114/14 81/288/14 72/68/14
f 70/116/13 69/70/13 80/69/13
f 70/118/8 79/297/8 78/104/8
f 87/120/8 66/124/8 67/121/8
f 88/123/4 65/127/4 66/124/4
f 85/126/10 68/130/10 65/127/10
f 65/127/9 68/130/9 67/121/9
f 86/129/2 67/121/2 68/130/2
f 93/132/4 96/152/4 105/133/4
f 120/135/4 129/305/4 128/136/4
f 102/140/8 103/306/8 106/142/8
f 103/306/8 104/134/8 106/142/8
f 104/134/8 105/133/8 106/142/8
f 106/142/8 107/307/8 102/140/8
f 107/307/8 108/138/8 102/140/8
f 100/141/9 107/307/9 106/142/9
f 98/144/2 101/139/2 108/138/2
f 96/146/10 93/308/10 94/147/10
f 94/147/10 97/309/10 100/141/10
f 97/309/10 98/310/10 100/141/10
f 98/310/10 99/311/10 100/141/10
f 100/141/10 95/143/10 94/147/10
f 102/148/15 101/139/15 98/144/15
f 107/150/16 100/312/16 99/145/16
f 106/151/17 105/133/17 96/152/17
f 103/154/18 94/313/18 93/132/18
f 94/155/7 103/306/7 102/140/7
f 111/157/7 90/161/7 91/158/7
f 112/160/4 89/164/4 90/161/4
f 109/163/9 92/167/9 89/164/9
f 89/164/8 92/167/8 91/158/8
f 110/166/2 91/158/2 92/167/2
f 126/171/10 127/314/10 130/173/10
f 127/314/10 128/136/10 130/173/10
f 128/136/10 129/305/10 130/173/10
f 130/173/10 131/315/10 126/171/10
f 131/315/10 132/169/10 126/171/10
f 124/172/7 131/315/7 130/173/7
f 123/175/2 122/179/2 125/170/2
f 120/176/8 117/316/8 118/177/8
f 118/177/8 121/317/8 124/172/8
f 121/317/8 122/318/8 124/172/8
f 122/318/8 123/319/8 124/172/8
f 124/172/8 119/174/8 118/177/8
f 121/178/16 126/320/16 125/170/16
f 124/180/15 123/175/15 132/169/15
f 130/182/18 129/305/18 120/135/18
f 118/184/17 117/137/17 128/136/17
f 118/186/9 127/314/9 126/171/9
f 135/188/9 114/192/9 115/189/9
f 136/191/4 113/195/4 114/192/4
f 133/194/7 116/198/7 113/195/7
f 113/195/10 116/198/10 115/189/10
f 134/197/2 115/189/2 116/198/2
f 148/200/3 152/216/3 151/201/3
f 145/203/1 150/217/1 149/204/1
f 140/206/3 144/213/3 143/207/3
f 137/209/1 142/214/1 141/210/1
f 139/212/2 141/321/2 144/213/2
f 138/208/4 143/207/4 142/214/4
f 147/215/2 149/322/2 152/216/2
f 146/202/4 151/201/4 150/217/4
f 164/218/1 168/234/1 167/219/1
f 161/221/3 166/235/3 165/222/3
f 156/224/1 160/231/1 159/225/1
f 153/227/3 158/232/3 157/228/3
f 155/230/2 157/323/2 160/231/2
f 154/226/4 159/225/4 158/232/4
f 163/233/2 165/324/2 168/234/2
f 162/220/4 167/219/4 166/235/4
f 180/236/5 184/252/5 183/237/5
f 177/239/6 182/253/6 181/240/6
f 172/242/5 176/249/5 175/243/5
f 169/245/6 174/250/6 173/246/6
f 171/248/2 173/325/2 176/249/2
f 170/244/4 175/243/4 174/250/4
f 179/251/2 181/326/2 184/252/2
f 178/238/4 183/237/4 182/253/4
f 196/254/6 200/270/6 199/255/6
f 193/257/5 198/271/5 197/258/5
f 188/260/6 192/267/6 191/261/6
f 185/263/5 190/268/5 189/264/5
f 188/260/2 187/327/2 189/266/2
f 186/262/4 191/261/4 190/268/4
f 196/254/2 195/328/2 197/269/2
f 194/256/4 199/255/4 198/271/4

View File

@ -0,0 +1,672 @@
# Blender v2.79 (sub 0) OBJ File: 'rfc.blend'
# www.blender.org
o Cube_Cube.001
v -0.500000 1.000000 4.500000
v -0.500000 2.000000 4.500000
v -0.500000 1.000000 -4.500000
v -0.500000 2.000000 -4.500000
v 0.500000 1.000000 4.500000
v 0.500000 2.000000 4.500000
v 0.500000 1.000000 -4.500000
v 0.500000 2.000000 -4.500000
v -1.000000 0.500000 4.000000
v -1.000000 2.500000 4.000000
v -1.000000 0.500000 3.500000
v -1.000000 2.500000 3.500000
v 1.000000 0.500000 4.000000
v 1.000000 2.500000 4.000000
v 1.000000 0.500000 3.500000
v 1.000000 2.500000 3.500000
v -0.500000 1.000000 4.250000
v -0.500000 2.000000 4.250000
v 0.500000 2.000000 4.250000
v 0.500000 1.000000 4.250000
v -0.500000 2.000000 3.250000
v -0.500000 1.000000 3.250000
v 0.500000 1.000000 3.250000
v 0.500000 2.000000 3.250000
v -0.187500 2.000000 3.187500
v 0.187500 2.000000 3.187500
v -0.187500 2.000000 2.812500
v 0.187500 2.000000 2.812500
v -0.187500 3.000000 2.812500
v -0.187500 3.000000 3.187500
v 0.187500 3.000000 3.187500
v 0.187500 3.000000 2.812500
v -0.187500 2.000000 -2.812500
v 0.187500 2.000000 -2.812500
v -0.187500 2.000000 -3.187500
v 0.187500 2.000000 -3.187500
v -0.187500 3.000000 -3.187500
v -0.187500 3.000000 -2.812500
v 0.187500 3.000000 -2.812500
v 0.187500 3.000000 -3.187500
v -0.187500 0.000000 3.187500
v 0.187500 0.000000 3.187500
v -0.187500 0.000000 2.812500
v 0.187500 0.000000 2.812500
v -0.187500 1.000000 2.812500
v -0.187500 1.000000 3.187500
v 0.187500 1.000000 3.187500
v 0.187500 1.000000 2.812500
v -0.187500 0.000000 -2.812500
v 0.187500 0.000000 -2.812500
v -0.187500 0.000000 -3.187500
v 0.187500 0.000000 -3.187500
v -0.187500 1.000000 -3.187500
v -0.187500 1.000000 -2.812500
v 0.187500 1.000000 -2.812500
v 0.187500 1.000000 -3.187500
v -0.125000 2.375000 3.875000
v -0.125000 2.625000 3.875000
v -0.125000 2.375000 -3.875000
v -0.125000 2.625000 -3.875000
v 0.125000 2.375000 3.875000
v 0.125000 2.625000 3.875000
v 0.125000 2.375000 -3.875000
v 0.125000 2.625000 -3.875000
v -0.125000 0.375000 3.875000
v -0.125000 0.625000 3.875000
v -0.125000 0.375000 -3.875000
v -0.125000 0.625000 -3.875000
v 0.125000 0.375000 3.875000
v 0.125000 0.625000 3.875000
v 0.125000 0.375000 -3.875000
v 0.125000 0.625000 -3.875000
v -1.000000 0.500000 2.500000
v -1.000000 2.500000 2.500000
v -1.000000 0.500000 2.000000
v -1.000000 2.500000 2.000000
v 1.000000 0.500000 2.500000
v 1.000000 2.500000 2.500000
v 1.000000 0.500000 2.000000
v 1.000000 2.500000 2.000000
v -0.500000 1.000000 2.750000
v -0.500000 2.000000 2.750000
v 0.500000 2.000000 2.750000
v 0.500000 1.000000 2.750000
v -0.500000 2.000000 1.750000
v -0.500000 1.000000 1.750000
v 0.500000 1.000000 1.750000
v 0.500000 2.000000 1.750000
v -1.000000 0.500000 1.000000
v -1.000000 2.500000 1.000000
v -1.000000 0.500000 0.500000
v -1.000000 2.500000 0.500000
v 1.000000 0.500000 1.000000
v 1.000000 2.500000 1.000000
v 1.000000 0.500000 0.500000
v 1.000000 2.500000 0.500000
v -0.500000 1.000000 1.250000
v -0.500000 2.000000 1.250000
v 0.500000 2.000000 1.250000
v 0.500000 1.000000 1.250000
v -0.500000 2.000000 0.250000
v -0.500000 1.000000 0.250000
v 0.500000 1.000000 0.250000
v 0.500000 2.000000 0.250000
v -1.000000 0.500000 -0.500000
v -1.000000 2.500000 -0.500000
v -1.000000 0.500000 -1.000000
v -1.000000 2.500000 -1.000000
v 1.000000 0.500000 -0.500000
v 1.000000 2.500000 -0.500000
v 1.000000 0.500000 -1.000000
v 1.000000 2.500000 -1.000000
v -0.500000 1.000000 -0.250000
v -0.500000 2.000000 -0.250000
v 0.500000 2.000000 -0.250000
v 0.500000 1.000000 -0.250000
v -0.500000 2.000000 -1.250000
v -0.500000 1.000000 -1.250000
v 0.500000 1.000000 -1.250000
v 0.500000 2.000000 -1.250000
v -1.000000 0.500000 -2.000000
v -1.000000 2.500000 -2.000000
v -1.000000 0.500000 -2.500000
v -1.000000 2.500000 -2.500000
v 1.000000 0.500000 -2.000000
v 1.000000 2.500000 -2.000000
v 1.000000 0.500000 -2.500000
v 1.000000 2.500000 -2.500000
v -0.500000 1.000000 -1.750000
v -0.500000 2.000000 -1.750000
v 0.500000 2.000000 -1.750000
v 0.500000 1.000000 -1.750000
v -0.500000 2.000000 -2.750000
v -0.500000 1.000000 -2.750000
v 0.500000 1.000000 -2.750000
v 0.500000 2.000000 -2.750000
v -1.000000 0.500000 -3.500000
v -1.000000 2.500000 -3.500000
v -1.000000 0.500000 -4.000000
v -1.000000 2.500000 -4.000000
v 1.000000 0.500000 -3.500000
v 1.000000 2.500000 -3.500000
v 1.000000 0.500000 -4.000000
v 1.000000 2.500000 -4.000000
v -0.500000 1.000000 -3.250000
v -0.500000 2.000000 -3.250000
v 0.500000 2.000000 -3.250000
v 0.500000 1.000000 -3.250000
v -0.500000 2.000000 -4.250000
v -0.500000 1.000000 -4.250000
v 0.500000 1.000000 -4.250000
v 0.500000 2.000000 -4.250000
v -0.187500 2.000000 0.187500
v 0.187500 2.000000 0.187500
v -0.187500 2.000000 -0.187500
v 0.187500 2.000000 -0.187500
v -0.187500 3.000000 -0.187500
v -0.187500 3.000000 0.187500
v 0.187500 3.000000 0.187500
v 0.187500 3.000000 -0.187500
v -0.187500 0.000000 0.187500
v 0.187500 0.000000 0.187500
v -0.187500 0.000000 -0.187500
v 0.187500 0.000000 -0.187500
v -0.187500 1.000000 -0.187500
v -0.187500 1.000000 0.187500
v 0.187500 1.000000 0.187500
v 0.187500 1.000000 -0.187500
vt 0.071429 0.400000
vt 0.714286 0.600000
vt 0.071429 0.600000
vt 0.714286 0.400000
vt 0.785714 0.200000
vt 0.785714 0.400000
vt 0.714286 0.200000
vt 0.071429 0.000000
vt 0.714286 -0.000000
vt 0.071429 0.200000
vt -0.000000 0.400000
vt -0.000000 0.200000
vt 0.714286 0.800000
vt 1.000000 0.500000
vt 0.964286 0.100000
vt 1.000000 0.100000
vt 0.821429 0.500000
vt 0.928571 0.400000
vt 0.964286 0.500000
vt 0.785714 0.100000
vt 0.821429 0.100000
vt 0.964286 0.600000
vt 0.857143 0.700000
vt 0.821429 0.600000
vt 0.964286 0.000000
vt 0.857143 0.900000
vt 0.821429 1.000000
vt 0.964286 1.000000
vt 0.928571 0.700000
vt 0.928571 0.900000
vt 0.928571 0.200000
vt 0.857143 0.400000
vt 0.857143 0.200000
vt 0.741071 0.700000
vt 0.767857 0.775000
vt 0.741071 0.775000
vt 0.741071 0.700000
vt 0.767857 0.775000
vt 0.741071 0.775000
vt 0.794643 0.500000
vt 0.767857 0.700000
vt 0.767857 0.500000
vt 0.741071 0.500000
vt 0.714286 0.700000
vt 0.714286 0.500000
vt 0.821429 0.500000
vt 0.794643 0.700000
vt 0.794643 0.500000
vt 0.767857 0.700000
vt 0.767857 0.500000
vt 0.741071 0.500000
vt 0.714286 0.700000
vt 0.714286 0.500000
vt 0.821429 0.500000
vt 0.794643 0.700000
vt 0.767857 0.700000
vt 0.794643 0.500000
vt 0.794643 0.700000
vt 0.714286 0.700000
vt 0.741071 0.500000
vt 0.741071 0.700000
vt 0.821429 0.500000
vt 0.821429 0.700000
vt 0.767857 0.500000
vt 0.767857 0.700000
vt 0.794643 0.500000
vt 0.794643 0.700000
vt 0.714286 0.700000
vt 0.741071 0.500000
vt 0.741071 0.700000
vt 0.821429 0.500000
vt 0.821429 0.700000
vt 0.767857 0.500000
vt 0.767857 0.775000
vt 0.767857 0.775000
vt 0.071429 0.950000
vt 0.625000 1.000000
vt 0.071429 1.000000
vt 0.625000 0.950000
vt 0.642857 0.900000
vt 0.642857 0.950000
vt 0.625000 0.900000
vt 0.071429 0.850000
vt 0.625000 0.850000
vt 0.071429 0.900000
vt 0.053571 0.950000
vt 0.053571 0.900000
vt 0.071429 0.800000
vt 0.625000 0.800000
vt 0.071429 0.950000
vt 0.625000 1.000000
vt 0.071429 1.000000
vt 0.625000 0.950000
vt 0.642857 0.900000
vt 0.642857 0.950000
vt 0.625000 0.900000
vt 0.071429 0.850000
vt 0.625000 0.850000
vt 0.071429 0.900000
vt 0.053571 0.950000
vt 0.053571 0.900000
vt 0.071429 0.800000
vt 0.625000 0.800000
vt 1.000000 0.500000
vt 0.964286 0.100000
vt 1.000000 0.100000
vt 0.821429 0.500000
vt 0.928571 0.400000
vt 0.964286 0.500000
vt 0.785714 0.100000
vt 0.821429 0.100000
vt 0.964286 0.600000
vt 0.857143 0.700000
vt 0.821429 0.600000
vt 0.964286 0.000000
vt 0.857143 0.900000
vt 0.821429 1.000000
vt 0.964286 1.000000
vt 0.928571 0.700000
vt 0.928571 0.900000
vt 0.928571 0.200000
vt 0.857143 0.400000
vt 0.857143 0.200000
vt 1.000000 0.500000
vt 0.964286 0.100000
vt 1.000000 0.100000
vt 0.821429 0.500000
vt 0.928571 0.400000
vt 0.964286 0.500000
vt 0.785714 0.100000
vt 0.821429 0.100000
vt 0.964286 0.600000
vt 0.857143 0.700000
vt 0.821429 0.600000
vt 0.964286 0.000000
vt 0.857143 0.900000
vt 0.821429 1.000000
vt 0.964286 1.000000
vt 0.928571 0.700000
vt 0.928571 0.900000
vt 0.928571 0.200000
vt 0.857143 0.400000
vt 0.857143 0.200000
vt 1.000000 0.500000
vt 0.964286 0.100000
vt 1.000000 0.100000
vt 0.821429 0.500000
vt 0.928571 0.400000
vt 0.964286 0.500000
vt 0.785714 0.100000
vt 0.821429 0.100000
vt 0.964286 0.600000
vt 0.857143 0.700000
vt 0.821429 0.600000
vt 0.964286 0.000000
vt 0.857143 0.900000
vt 0.821429 1.000000
vt 0.964286 1.000000
vt 0.928571 0.700000
vt 0.928571 0.900000
vt 0.928571 0.200000
vt 0.857143 0.400000
vt 0.857143 0.200000
vt 1.000000 0.500000
vt 0.964286 0.100000
vt 1.000000 0.100000
vt 0.821429 0.500000
vt 0.928571 0.400000
vt 0.964286 0.500000
vt 0.785714 0.100000
vt 0.821429 0.100000
vt 0.964286 0.600000
vt 0.857143 0.700000
vt 0.821429 0.600000
vt 0.964286 0.000000
vt 0.857143 0.900000
vt 0.821429 1.000000
vt 0.964286 1.000000
vt 0.928571 0.700000
vt 0.928571 0.900000
vt 0.928571 0.200000
vt 0.857143 0.400000
vt 0.857143 0.200000
vt 1.000000 0.500000
vt 0.964286 0.100000
vt 1.000000 0.100000
vt 0.821429 0.500000
vt 0.928571 0.400000
vt 0.964286 0.500000
vt 0.785714 0.100000
vt 0.821429 0.100000
vt 0.964286 0.600000
vt 0.857143 0.700000
vt 0.821429 0.600000
vt 0.964286 0.000000
vt 0.857143 0.900000
vt 0.821429 1.000000
vt 0.964286 1.000000
vt 0.928571 0.700000
vt 0.928571 0.900000
vt 0.928571 0.200000
vt 0.857143 0.400000
vt 0.857143 0.200000
vt 0.741071 0.700000
vt 0.767857 0.775000
vt 0.741071 0.775000
vt 0.794643 0.500000
vt 0.767857 0.700000
vt 0.767857 0.500000
vt 0.741071 0.500000
vt 0.714286 0.700000
vt 0.714286 0.500000
vt 0.821429 0.500000
vt 0.794643 0.700000
vt 0.767857 0.700000
vt 0.794643 0.500000
vt 0.794643 0.700000
vt 0.714286 0.700000
vt 0.741071 0.500000
vt 0.741071 0.700000
vt 0.821429 0.500000
vt 0.821429 0.700000
vt 0.767857 0.500000
vt 0.767857 0.775000
vt 0.071429 0.800000
vt 0.785714 0.500000
vt 0.821429 0.000000
vt 0.821429 0.700000
vt 0.821429 0.700000
vt 0.714286 0.500000
vt 0.714286 0.500000
vt 0.741071 0.775000
vt 0.741071 0.775000
vt 0.785714 0.500000
vt 0.821429 0.000000
vt 0.785714 0.500000
vt 0.821429 0.000000
vt 0.785714 0.500000
vt 0.821429 0.000000
vt 0.785714 0.500000
vt 0.821429 0.000000
vt 0.785714 0.500000
vt 0.821429 0.000000
vt 0.821429 0.700000
vt 0.714286 0.500000
vt 0.741071 0.775000
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 0.0000 1.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
vn 0.0000 0.4472 -0.8944
vn 0.0000 0.4472 0.8944
vn 0.4472 0.0000 0.8944
vn -0.4472 0.0000 0.8944
vn 0.0000 -0.4472 0.8944
vn -0.4472 0.0000 -0.8944
vn 0.4472 0.0000 -0.8944
vn 0.0000 -0.4472 -0.8944
s off
f 2/1/1 3/2/1 1/3/1
f 4/4/2 7/5/2 3/6/2
f 8/7/3 5/8/3 7/9/3
f 6/10/4 1/11/4 5/12/4
f 7/13/5 1/3/5 3/2/5
f 4/4/6 6/10/6 8/7/6
f 10/14/1 11/15/1 9/16/1
f 16/17/7 21/18/7 12/19/7
f 16/17/3 13/20/3 15/21/3
f 10/22/8 19/23/8 14/24/8
f 15/21/5 9/25/5 11/15/5
f 12/19/6 14/24/6 16/17/6
f 14/24/9 20/26/9 13/27/9
f 9/28/10 18/29/10 10/22/10
f 13/27/11 17/30/11 9/28/11
f 12/19/12 22/31/12 11/15/12
f 15/21/13 24/32/13 16/17/13
f 11/15/14 23/33/14 15/21/14
f 39/34/6 37/35/6 38/36/6
f 31/37/6 29/38/6 30/39/6
f 27/40/2 32/41/2 28/42/2
f 26/43/4 30/44/4 25/45/4
f 28/42/3 31/37/3 26/43/3
f 25/46/1 29/47/1 27/40/1
f 35/48/2 40/49/2 36/50/2
f 34/51/4 38/52/4 33/53/4
f 36/50/3 39/34/3 34/51/3
f 33/54/1 37/55/1 35/48/1
f 43/56/2 48/57/2 44/58/2
f 42/59/4 46/60/4 41/61/4
f 44/58/3 47/62/3 42/63/3
f 41/61/1 45/64/1 43/56/1
f 51/65/2 56/66/2 52/67/2
f 50/68/4 54/69/4 49/70/4
f 52/67/3 55/71/3 50/72/3
f 49/70/1 53/73/1 51/65/1
f 44/74/5 41/61/5 43/56/5
f 52/75/5 49/70/5 51/65/5
f 58/76/1 59/77/1 57/78/1
f 60/79/2 63/80/2 59/81/2
f 64/82/3 61/83/3 63/84/3
f 62/85/4 57/86/4 61/87/4
f 63/84/5 57/88/5 59/89/5
f 60/79/6 62/85/6 64/82/6
f 66/90/1 67/91/1 65/92/1
f 68/93/2 71/94/2 67/95/2
f 72/96/3 69/97/3 71/98/3
f 70/99/4 65/100/4 69/101/4
f 71/98/5 65/102/5 67/103/5
f 68/93/6 70/99/6 72/96/6
f 74/104/1 75/105/1 73/106/1
f 80/107/7 85/108/7 76/109/7
f 80/107/3 77/110/3 79/111/3
f 74/112/8 83/113/8 78/114/8
f 79/111/5 73/115/5 75/105/5
f 76/109/6 78/114/6 80/107/6
f 78/114/9 84/116/9 77/117/9
f 73/118/10 82/119/10 74/112/10
f 77/117/11 81/120/11 73/118/11
f 76/109/12 86/121/12 75/105/12
f 79/111/13 88/122/13 80/107/13
f 75/105/14 87/123/14 79/111/14
f 90/124/1 91/125/1 89/126/1
f 96/127/7 101/128/7 92/129/7
f 96/127/3 93/130/3 95/131/3
f 90/132/8 99/133/8 94/134/8
f 95/131/5 89/135/5 91/125/5
f 92/129/6 94/134/6 96/127/6
f 94/134/9 100/136/9 93/137/9
f 89/138/10 98/139/10 90/132/10
f 93/137/11 97/140/11 89/138/11
f 92/129/12 102/141/12 91/125/12
f 95/131/13 104/142/13 96/127/13
f 91/125/14 103/143/14 95/131/14
f 106/144/1 107/145/1 105/146/1
f 112/147/7 117/148/7 108/149/7
f 112/147/3 109/150/3 111/151/3
f 106/152/8 115/153/8 110/154/8
f 111/151/5 105/155/5 107/145/5
f 108/149/6 110/154/6 112/147/6
f 110/154/9 116/156/9 109/157/9
f 105/158/10 114/159/10 106/152/10
f 109/157/11 113/160/11 105/158/11
f 108/149/12 118/161/12 107/145/12
f 111/151/13 120/162/13 112/147/13
f 107/145/14 119/163/14 111/151/14
f 122/164/1 123/165/1 121/166/1
f 128/167/7 133/168/7 124/169/7
f 128/167/3 125/170/3 127/171/3
f 122/172/8 131/173/8 126/174/8
f 127/171/5 121/175/5 123/165/5
f 124/169/6 126/174/6 128/167/6
f 126/174/9 132/176/9 125/177/9
f 121/178/10 130/179/10 122/172/10
f 125/177/11 129/180/11 121/178/11
f 124/169/12 134/181/12 123/165/12
f 127/171/13 136/182/13 128/167/13
f 123/165/14 135/183/14 127/171/14
f 138/184/1 139/185/1 137/186/1
f 144/187/7 149/188/7 140/189/7
f 144/187/3 141/190/3 143/191/3
f 138/192/8 147/193/8 142/194/8
f 143/191/5 137/195/5 139/185/5
f 140/189/6 142/194/6 144/187/6
f 142/194/9 148/196/9 141/197/9
f 137/198/10 146/199/10 138/192/10
f 141/197/11 145/200/11 137/198/11
f 140/189/12 150/201/12 139/185/12
f 143/191/13 152/202/13 144/187/13
f 139/185/14 151/203/14 143/191/14
f 159/204/6 157/205/6 158/206/6
f 155/207/2 160/208/2 156/209/2
f 154/210/4 158/211/4 153/212/4
f 156/209/3 159/204/3 154/210/3
f 153/213/1 157/214/1 155/207/1
f 163/215/2 168/216/2 164/217/2
f 162/218/4 166/219/4 161/220/4
f 164/217/3 167/221/3 162/222/3
f 161/220/1 165/223/1 163/215/1
f 164/224/5 161/220/5 163/215/5
f 2/1/1 4/4/1 3/2/1
f 4/4/2 8/7/2 7/5/2
f 8/7/3 6/10/3 5/8/3
f 6/10/4 2/1/4 1/11/4
f 7/13/5 5/225/5 1/3/5
f 4/4/6 2/1/6 6/10/6
f 10/14/1 12/19/1 11/15/1
f 16/17/7 24/32/7 21/18/7
f 16/17/3 14/226/3 13/20/3
f 10/22/8 18/29/8 19/23/8
f 15/21/5 13/227/5 9/25/5
f 12/19/6 10/22/6 14/24/6
f 14/24/9 19/23/9 20/26/9
f 9/28/10 17/30/10 18/29/10
f 13/27/11 20/26/11 17/30/11
f 12/19/12 21/18/12 22/31/12
f 15/21/13 23/33/13 24/32/13
f 11/15/14 22/31/14 23/33/14
f 39/34/6 40/49/6 37/35/6
f 31/37/6 32/41/6 29/38/6
f 27/40/2 29/47/2 32/41/2
f 26/43/4 31/37/4 30/44/4
f 28/42/3 32/41/3 31/37/3
f 25/46/1 30/228/1 29/47/1
f 35/48/2 37/55/2 40/49/2
f 34/51/4 39/34/4 38/52/4
f 36/50/3 40/49/3 39/34/3
f 33/54/1 38/229/1 37/55/1
f 43/56/2 45/64/2 48/57/2
f 42/59/4 47/230/4 46/60/4
f 44/58/3 48/57/3 47/62/3
f 41/61/1 46/60/1 45/64/1
f 51/65/2 53/73/2 56/66/2
f 50/68/4 55/231/4 54/69/4
f 52/67/3 56/66/3 55/71/3
f 49/70/1 54/69/1 53/73/1
f 44/74/5 42/232/5 41/61/5
f 52/75/5 50/233/5 49/70/5
f 58/76/1 60/79/1 59/77/1
f 60/79/2 64/82/2 63/80/2
f 64/82/3 62/85/3 61/83/3
f 62/85/4 58/76/4 57/86/4
f 63/84/5 61/83/5 57/88/5
f 60/79/6 58/76/6 62/85/6
f 66/90/1 68/93/1 67/91/1
f 68/93/2 72/96/2 71/94/2
f 72/96/3 70/99/3 69/97/3
f 70/99/4 66/90/4 65/100/4
f 71/98/5 69/97/5 65/102/5
f 68/93/6 66/90/6 70/99/6
f 74/104/1 76/109/1 75/105/1
f 80/107/7 88/122/7 85/108/7
f 80/107/3 78/234/3 77/110/3
f 74/112/8 82/119/8 83/113/8
f 79/111/5 77/235/5 73/115/5
f 76/109/6 74/112/6 78/114/6
f 78/114/9 83/113/9 84/116/9
f 73/118/10 81/120/10 82/119/10
f 77/117/11 84/116/11 81/120/11
f 76/109/12 85/108/12 86/121/12
f 79/111/13 87/123/13 88/122/13
f 75/105/14 86/121/14 87/123/14
f 90/124/1 92/129/1 91/125/1
f 96/127/7 104/142/7 101/128/7
f 96/127/3 94/236/3 93/130/3
f 90/132/8 98/139/8 99/133/8
f 95/131/5 93/237/5 89/135/5
f 92/129/6 90/132/6 94/134/6
f 94/134/9 99/133/9 100/136/9
f 89/138/10 97/140/10 98/139/10
f 93/137/11 100/136/11 97/140/11
f 92/129/12 101/128/12 102/141/12
f 95/131/13 103/143/13 104/142/13
f 91/125/14 102/141/14 103/143/14
f 106/144/1 108/149/1 107/145/1
f 112/147/7 120/162/7 117/148/7
f 112/147/3 110/238/3 109/150/3
f 106/152/8 114/159/8 115/153/8
f 111/151/5 109/239/5 105/155/5
f 108/149/6 106/152/6 110/154/6
f 110/154/9 115/153/9 116/156/9
f 105/158/10 113/160/10 114/159/10
f 109/157/11 116/156/11 113/160/11
f 108/149/12 117/148/12 118/161/12
f 111/151/13 119/163/13 120/162/13
f 107/145/14 118/161/14 119/163/14
f 122/164/1 124/169/1 123/165/1
f 128/167/7 136/182/7 133/168/7
f 128/167/3 126/240/3 125/170/3
f 122/172/8 130/179/8 131/173/8
f 127/171/5 125/241/5 121/175/5
f 124/169/6 122/172/6 126/174/6
f 126/174/9 131/173/9 132/176/9
f 121/178/10 129/180/10 130/179/10
f 125/177/11 132/176/11 129/180/11
f 124/169/12 133/168/12 134/181/12
f 127/171/13 135/183/13 136/182/13
f 123/165/14 134/181/14 135/183/14
f 138/184/1 140/189/1 139/185/1
f 144/187/7 152/202/7 149/188/7
f 144/187/3 142/242/3 141/190/3
f 138/192/8 146/199/8 147/193/8
f 143/191/5 141/243/5 137/195/5
f 140/189/6 138/192/6 142/194/6
f 142/194/9 147/193/9 148/196/9
f 137/198/10 145/200/10 146/199/10
f 141/197/11 148/196/11 145/200/11
f 140/189/12 149/188/12 150/201/12
f 143/191/13 151/203/13 152/202/13
f 139/185/14 150/201/14 151/203/14
f 159/204/6 160/208/6 157/205/6
f 155/207/2 157/214/2 160/208/2
f 154/210/4 159/204/4 158/211/4
f 156/209/3 160/208/3 159/204/3
f 153/213/1 158/244/1 157/214/1
f 163/215/2 165/223/2 168/216/2
f 162/218/4 167/245/4 166/219/4
f 164/217/3 168/216/3 167/221/3
f 161/220/1 166/219/1 165/223/1
f 164/224/5 162/246/5 161/220/5

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB