Java Cube cube(int value)

Here you can find the source of cube(int value)

Description

cube

License

Apache License

Declaration

public static int cube(int value) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static int cube(int value) {
        return value * value * value;
    }/* w  w w.  j  ava  2s.c om*/
}

Related

  1. cube(double d)
  2. cube(double value)
  3. cube(int a)
  4. cube2rect(byte[][][] cube)
  5. cubed(final int input)
  6. cubeIntersectsSphere(int x1, int y1, int z1, int x2, int y2, int z2, int sX, int sY, int sZ, int radius)
  7. cubeTextureArray(float x0, float y0, float x1, float y1)