Example #1
0
 public bool CanShowFace(VoxFaceType neighbor, int f)
 {
     return (Types[f] & neighbor.AllowTypes[f ^ 0x01]) != 0;
 }
Example #2
0
 public VoxData(ushort id)
 {
     ID          = id;
     FaceType    = new VoxFaceType();
     GeoProvider = null;
 }
Example #3
0
 public VoxData(ushort id)
 {
     ID = id;
     FaceType = new VoxFaceType();
     GeoProvider = null;
 }
Example #4
0
 public bool CanShowFace(VoxFaceType neighbor, int f)
 {
     return((Types[f] & neighbor.AllowTypes[f ^ 0x01]) != 0);
 }