Exemplo n.º 1
0
        public FundamentalRegion ReflectInMirror(int mirrorId)
        {
            Mirror[] newBoundary = new Mirror[boundary.Length];
            Mirror   m           = boundary[mirrorId];

            for (int i = 0; i < boundary.Length; i++)
            {
                newBoundary[i] = m.Reflect(boundary[i]);
            }
            return(new FundamentalRegion(newBoundary));
        }
Exemplo n.º 2
0
 public Mirror Reflect(Mirror tobeReflected)
 {
     var T = Space.I
 }