Java Pixel Convert From toPixel(float meter)

Here you can find the source of toPixel(float meter)

Description

to Pixel

License

Apache License

Declaration

public static float toPixel(float meter) 

Method Source Code

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

public class Main {
    public static final float BOX_TO_WORLD = 100f;

    public static float toPixel(float meter) {
        return (float) meter * BOX_TO_WORLD;
    }/* w w w  .  j  a v a2  s. c o  m*/
}

Related

  1. toPixel(byte b)
  2. toPixel(String value)
  3. toPixelByte(float floatValue)
  4. toPixelFromByte(int byteValue)
  5. toPixelLength(float number)