Skip to content

Commit

Permalink
Update CylinderWrapper.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Fexcraft committed Sep 26, 2020
1 parent 247a66d commit 98ebde1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/net/fexcraft/app/fmt/wrappers/CylinderWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,12 @@ public boolean isFaceActive(Face other){
}
}

public boolean anySidesOff(){
boolean result = false;
for(boolean bool : bools) if(bool) result = true;
return result;
}

/*public Vec3f getTopOffForDir(float val){
Vec3f vec = new Vec3f();
switch(direction){
Expand Down

0 comments on commit 98ebde1

Please sign in to comment.