001    package net.minecraft.client.renderer.culling;
002    
003    import cpw.mods.fml.relauncher.Side;
004    import cpw.mods.fml.relauncher.SideOnly;
005    import net.minecraft.util.AxisAlignedBB;
006    
007    @SideOnly(Side.CLIENT)
008    public 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    }