001package net.minecraft.client.renderer.culling; 002 003import cpw.mods.fml.relauncher.Side; 004import cpw.mods.fml.relauncher.SideOnly; 005import net.minecraft.util.AxisAlignedBB; 006 007@SideOnly(Side.CLIENT) 008public interface ICamera 009{ 010 /** 011 * Returns true if the bounding box is inside all 6 clipping planes, otherwise returns false. 012 */ 013 boolean isBoundingBoxInFrustum(AxisAlignedBB var1); 014 015 void setPosition(double var1, double var3, double var5); 016}