Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static float getNormalizeScaling(final float x, final float y, final float z) {
        return (float) (1.0 / Math.sqrt(x * x + y * y + z * z));
    }

    public static float getNormalizeScaling(final float x, final float y, final float z, final float w) {
        return (float) (1.0 / Math.sqrt(x * x + y * y + z * z + w * w));
    }
}