コード例 #1
0
ファイル: Material.cs プロジェクト: KallDrexx/ray-tracer
 protected bool Equals(Material other)
 {
     return(Equals(Pattern, other.Pattern) && Ambient.Equals(other.Ambient) && Diffuse.Equals(other.Diffuse) && Specular.Equals(other.Specular) && Shininess == other.Shininess && Reflective.Equals(other.Reflective));
 }