Java floor floorPot(float value)

Here you can find the source of floorPot(float value)

Description

floor Pot

License

Open Source License

Declaration

public static float floorPot(float value) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * MIT License// www. j  a v a2s .  c om
 * 
 * Copyright (c) 2017 Raymond Buckley
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 ******************************************************************************/

public class Main {
    public static float floorPot(float value) {
        float returnValue = 0.0f;
        for (float newValue = 2.0f; newValue < value; newValue *= 2.0f) {
            returnValue = newValue;
        }

        return returnValue;
    }
}

Related

  1. floorModExt(int dividend, int divisor)
  2. floorModulo(int value, int divisor)
  3. floorPlaneAndHorizToPlanView(final int[][] frameCells, final short frame[], final int h)
  4. floorPlaneToPlanView(int[][] frameCells, final int h)
  5. floorPositive(float value)
  6. floorPOT(int n)
  7. floorPowerOf2(final int n)
  8. floorPowerOf2(final int x)
  9. floorPowerOf2(int n)