コード例 #1
0
ファイル: Scene.cs プロジェクト: jonfryd/PhotonTracer
        public Scene()
        {
            primitiveList_ = new System.Collections.ArrayList(10);
            lightList_     = new System.Collections.ArrayList(10);

            Background = RGBColor.RGBblue();

            Camera = new Camera();

            boundingbox = new BoundingBox();
        }