예제 #1
0
파일: Cube.cs 프로젝트: xfischer/PTSharp
        internal static Cube NewCube(Vector min, Vector max, Material material)
        {
            Box box = new Box(min, max);

            return(new Cube(min, max, material, box));
        }