(Cuboid other)
| 9 | public class Cuboid extends EightPoint { |
| 10 | |
| 11 | public Cuboid(Cuboid other) { |
| 12 | this.skin = other.skin; // TODO copy skin |
| 13 | this.a = other.a; |
| 14 | this.b = other.b; |
| 15 | this.c = other.c; |
| 16 | this.d = other.d; |
| 17 | this.e = other.e; |
| 18 | this.f = other.f; |
| 19 | this.g = other.g; |
| 20 | this.h = other.h; |
| 21 | this.textureScaleX = other.textureScaleX; |
| 22 | this.textureScaleY = other.textureScaleY; |
| 23 | this.textureScaleZ = other.textureScaleZ; |
| 24 | } |
| 25 | |
| 26 | public Cuboid(Position[] p, Skin skin) { |
| 27 | this.skin = skin; |