From d4bee42b78773664910d09b057a23b8aac8a0c18 Mon Sep 17 00:00:00 2001 From: ishanjain28 Date: Thu, 13 Feb 2020 20:23:22 +0530 Subject: [PATCH] Restructuring project --- ria-weekend/.gitignore => .gitignore | 0 ria-weekend/Cargo.lock => Cargo.lock | 0 ria-weekend/Cargo.toml => Cargo.toml | 0 {ria-weekend/src => src}/camera.rs | 0 {ria-weekend/src => src}/demos/diffuse_materials.rs | 0 {ria-weekend/src => src}/demos/hitable_sphere.rs | 0 {ria-weekend/src => src}/demos/linear_gradient_rectangle.rs | 0 {ria-weekend/src => src}/demos/mod.rs | 0 {ria-weekend/src => src}/demos/simple_antialiasing.rs | 0 {ria-weekend/src => src}/demos/simple_rectangle.rs | 0 {ria-weekend/src => src}/demos/simple_sphere.rs | 0 {ria-weekend/src => src}/demos/surface_normal_sphere.rs | 0 {ria-weekend/src => src}/main.rs | 0 {ria-weekend/src => src}/types/hitable.rs | 0 {ria-weekend/src => src}/types/hitable_list.rs | 0 {ria-weekend/src => src}/types/mod.rs | 0 {ria-weekend/src => src}/types/ray.rs | 0 {ria-weekend/src => src}/types/sphere.rs | 0 {ria-weekend/src => src}/types/vec3.rs | 0 19 files changed, 0 insertions(+), 0 deletions(-) rename ria-weekend/.gitignore => .gitignore (100%) rename ria-weekend/Cargo.lock => Cargo.lock (100%) rename ria-weekend/Cargo.toml => Cargo.toml (100%) rename {ria-weekend/src => src}/camera.rs (100%) rename {ria-weekend/src => src}/demos/diffuse_materials.rs (100%) rename {ria-weekend/src => src}/demos/hitable_sphere.rs (100%) rename {ria-weekend/src => src}/demos/linear_gradient_rectangle.rs (100%) rename {ria-weekend/src => src}/demos/mod.rs (100%) rename {ria-weekend/src => src}/demos/simple_antialiasing.rs (100%) rename {ria-weekend/src => src}/demos/simple_rectangle.rs (100%) rename {ria-weekend/src => src}/demos/simple_sphere.rs (100%) rename {ria-weekend/src => src}/demos/surface_normal_sphere.rs (100%) rename {ria-weekend/src => src}/main.rs (100%) rename {ria-weekend/src => src}/types/hitable.rs (100%) rename {ria-weekend/src => src}/types/hitable_list.rs (100%) rename {ria-weekend/src => src}/types/mod.rs (100%) rename {ria-weekend/src => src}/types/ray.rs (100%) rename {ria-weekend/src => src}/types/sphere.rs (100%) rename {ria-weekend/src => src}/types/vec3.rs (100%) diff --git a/ria-weekend/.gitignore b/.gitignore similarity index 100% rename from ria-weekend/.gitignore rename to .gitignore diff --git a/ria-weekend/Cargo.lock b/Cargo.lock similarity index 100% rename from ria-weekend/Cargo.lock rename to Cargo.lock diff --git a/ria-weekend/Cargo.toml b/Cargo.toml similarity index 100% rename from ria-weekend/Cargo.toml rename to Cargo.toml diff --git a/ria-weekend/src/camera.rs b/src/camera.rs similarity index 100% rename from ria-weekend/src/camera.rs rename to src/camera.rs diff --git a/ria-weekend/src/demos/diffuse_materials.rs b/src/demos/diffuse_materials.rs similarity index 100% rename from ria-weekend/src/demos/diffuse_materials.rs rename to src/demos/diffuse_materials.rs diff --git a/ria-weekend/src/demos/hitable_sphere.rs b/src/demos/hitable_sphere.rs similarity index 100% rename from ria-weekend/src/demos/hitable_sphere.rs rename to src/demos/hitable_sphere.rs diff --git a/ria-weekend/src/demos/linear_gradient_rectangle.rs b/src/demos/linear_gradient_rectangle.rs similarity index 100% rename from ria-weekend/src/demos/linear_gradient_rectangle.rs rename to src/demos/linear_gradient_rectangle.rs diff --git a/ria-weekend/src/demos/mod.rs b/src/demos/mod.rs similarity index 100% rename from ria-weekend/src/demos/mod.rs rename to src/demos/mod.rs diff --git a/ria-weekend/src/demos/simple_antialiasing.rs b/src/demos/simple_antialiasing.rs similarity index 100% rename from ria-weekend/src/demos/simple_antialiasing.rs rename to src/demos/simple_antialiasing.rs diff --git a/ria-weekend/src/demos/simple_rectangle.rs b/src/demos/simple_rectangle.rs similarity index 100% rename from ria-weekend/src/demos/simple_rectangle.rs rename to src/demos/simple_rectangle.rs diff --git a/ria-weekend/src/demos/simple_sphere.rs b/src/demos/simple_sphere.rs similarity index 100% rename from ria-weekend/src/demos/simple_sphere.rs rename to src/demos/simple_sphere.rs diff --git a/ria-weekend/src/demos/surface_normal_sphere.rs b/src/demos/surface_normal_sphere.rs similarity index 100% rename from ria-weekend/src/demos/surface_normal_sphere.rs rename to src/demos/surface_normal_sphere.rs diff --git a/ria-weekend/src/main.rs b/src/main.rs similarity index 100% rename from ria-weekend/src/main.rs rename to src/main.rs diff --git a/ria-weekend/src/types/hitable.rs b/src/types/hitable.rs similarity index 100% rename from ria-weekend/src/types/hitable.rs rename to src/types/hitable.rs diff --git a/ria-weekend/src/types/hitable_list.rs b/src/types/hitable_list.rs similarity index 100% rename from ria-weekend/src/types/hitable_list.rs rename to src/types/hitable_list.rs diff --git a/ria-weekend/src/types/mod.rs b/src/types/mod.rs similarity index 100% rename from ria-weekend/src/types/mod.rs rename to src/types/mod.rs diff --git a/ria-weekend/src/types/ray.rs b/src/types/ray.rs similarity index 100% rename from ria-weekend/src/types/ray.rs rename to src/types/ray.rs diff --git a/ria-weekend/src/types/sphere.rs b/src/types/sphere.rs similarity index 100% rename from ria-weekend/src/types/sphere.rs rename to src/types/sphere.rs diff --git a/ria-weekend/src/types/vec3.rs b/src/types/vec3.rs similarity index 100% rename from ria-weekend/src/types/vec3.rs rename to src/types/vec3.rs