Fix test build

This commit is contained in:
Aidan C. Brady 2013-11-16 12:49:41 -05:00
parent 43440ebc4e
commit 0616f28950

View file

@ -1,26 +0,0 @@
package mekanism.induction.client.render;
import codechicken.lib.vec.Matrix4;
import codechicken.lib.vec.Transformation;
import codechicken.lib.vec.VariableTransformation;
import codechicken.lib.vec.Vector3;
public class InvertX extends VariableTransformation
{
public InvertX()
{
super(new Matrix4(-1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1));
}
@Override
public void apply(Vector3 vec)
{
this.mat.apply(vec);
}
@Override
public Transformation inverse()
{
return this;
}
}