// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.worldgen.climate;

public class ClimatePoint
{
    public static final ClimatePoint[] EMPTY_ARRAY;
    public double temperature;
    public double intensity;
    public double modifier;
    
    public ClimatePoint(final double temperature, final double intensity) {
        this(temperature, intensity, 1.0);
    }
    
    public ClimatePoint(final double temperature, final double intensity, final double modifier) {
        this.temperature = temperature;
        this.intensity = intensity;
        this.modifier = modifier;
    }
    
    @Override
    public String toString() {
        return String.format("t=%.3f, i=%.3f, mod=%.3f", this.temperature, this.intensity, this.modifier);
    }
    
    static {
        EMPTY_ARRAY = new ClimatePoint[0];
    }
}
