//[h]sphere can now generate ellipsoid (stretched sphere) shapes

This commit is contained in:
TomyLobo
2011-09-02 21:38:38 +02:00
parent 780d07a9ba
commit 8c0d0f9ed4
4 changed files with 99 additions and 42 deletions

View File

@ -30,6 +30,6 @@ public class HollowSphereBrush implements Brush {
public void build(EditSession editSession, Vector pos, Pattern mat, double size)
throws MaxChangedBlocksException {
editSession.makeSphere(pos, mat, size, false);
editSession.makeSphere(pos, mat, size, size, size, false);
}
}

View File

@ -30,6 +30,6 @@ public class SphereBrush implements Brush {
public void build(EditSession editSession, Vector pos, Pattern mat, double size)
throws MaxChangedBlocksException {
editSession.makeSphere(pos, mat, size, true);
editSession.makeSphere(pos, mat, size, size, size, true);
}
}