コード例 #1
0
ファイル: Vector4Byte.cs プロジェクト: Cyberbanan/voxeliq
 public bool Equals(Vector4Byte other)
 {
     return (((this.X == other.X) && (this.Y == other.Y)) &&
             (this.Z == other.Z) && (this.W == other.W));
 }
コード例 #2
0
ファイル: Vector4Byte.cs プロジェクト: su636/voxeliq
 public bool Equals(Vector4Byte other)
 {
     return(((this.X == other.X) && (this.Y == other.Y)) &&
            (this.Z == other.Z) && (this.W == other.W));
 }