/* * DoRayMe - a quick and dirty Raytracer * Checkered plane for bonus chapter UV Mapping * * Created by Manoƫl Trapier * Copyright (c) 2020 986-Studio. * */ #include #include #include #include #include #include #include #include #include #include #include #include int main() { World w = World(); Light light = Light(POINT_LIGHT, Point(-10, 10, -10), Colour(1, 1, 1)); w.addLight(&light); Plane sp = Plane(); UVCheckers checkers = UVCheckers(2, 2, Colour(0, 0.5, 0), Colour(1, 1, 1)); TextureMap tm = TextureMap(PLANAR_MAP, &checkers); sp.material.pattern = &tm; sp.material.ambient = 0.1; sp.material.specular = 0; sp.material.diffuse = 0.9; w.addObject(&sp); /* Set the camera */ Camera camera = Camera(400, 400, 0.5); camera.setTransform(viewTransform(Point(1, 2, -5), Point(0, 0, 0), Vector(0, 1, 0))); /* Now render it */ Canvas image = camera.render(w); image.SaveAsPNG("uvmap_checkeredplane.png"); return 0; }