コード例 #1
0
ファイル: Vec4.cs プロジェクト: IronFox/Shard
 public Bool4(Bool3 xyz, bool w)
 {
     X = xyz.X;
     Y = xyz.Y;
     Z = xyz.Z;
     W = w;
 }
コード例 #2
0
 private bool Eq(Bool3 other)
 {
     return(X == other.X && Y == other.Y && Z == other.Z);
 }