Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/utils/math/vect/VectDigest.java

20 lines
310 B

package mightypork.utils.math.vect;
public class VectDigest {
public final VectConst source;
public final double x;
public final double y;
public final double z;
public VectDigest(Vect vect) {
this.source = vect.freeze();
this.x = vect.x();
this.y = vect.y();
this.z = vect.z();
}
}