Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {
    private static float fromHex(String s, int idx) {
        s = s.substring(idx, idx + 2);//
        int i = Integer.parseInt(s, 16);
        float rt = ((float) i) / 255f;
        return rt;
    }
}