Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / VoxelShapeCubePoint.java
Simon Lindgren on 26 Mar 2020 386 bytes first commit
package net.minecraft.server;

import it.unimi.dsi.fastutil.doubles.AbstractDoubleList;

public class VoxelShapeCubePoint extends AbstractDoubleList {

    private final int a;

    VoxelShapeCubePoint(int i) {
        this.a = i;
    }

    public double getDouble(int i) {
        return (double) i / (double) this.a;
    }

    public int size() {
        return this.a + 1;
    }
}