コード例 #1
0
ファイル: Ray3D.cs プロジェクト: Mikhail751/SelfRender
 public Ray3D(Point3 source, Direction direct, int maxReflection = 1)
 {
     Source        = source;
     Direct        = direct;
     MaxReflection = maxReflection;
 }