From 4d6515b990e5a4e072e422cf3d79c477f0760fd2 Mon Sep 17 00:00:00 2001 From: Nye Evans Date: Mon, 11 Jan 2021 19:32:54 +0000 Subject: [PATCH] file relocation and minor edits --- index.html | 9 ++++----- pages/gallery-index.js | 12 ++++++------ pages/gallery.js | 2 -- pages/gallery/epq-project/epq-project.html | 6 +++--- pages/gallery/room-builder/room-builder.html | 3 +++ pages/mainpage.css | 2 +- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/index.html b/index.html index 3c918bc..31866d8 100644 --- a/index.html +++ b/index.html @@ -31,9 +31,8 @@
Most of my skills relate to object oriented programming, a big focus of my work is creating intuitive systems that are both developer and user friendly and that work smoothy in all contexts. I love creating and working with large libraries and building intricate systems. The feeling of using systems and classes I or a close friend have built in an earlier part of a project is something I love, - remembering the thought and conversations had around how it works and seeing it interact seemlessly and efficiently with other parts designed separately. I imagine its how it feels to build the house you live within, each part - has a story and feels special to you on a personal level. - + remembering the thought put into and conversations had around how it works and seeing it interact seemlessly and efficiently with other parts designed separately. I imagine its how it feels to build the house + you live within, each part has a story and feels special to you on a personal level.
@@ -45,8 +44,8 @@ -

Image Title

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+

+

diff --git a/pages/gallery-index.js b/pages/gallery-index.js index db3fde9..26dac2b 100644 --- a/pages/gallery-index.js +++ b/pages/gallery-index.js @@ -13,22 +13,22 @@ export var slides = [ "A project done for my EPQ, during post-16, where I aimed to create a virtual reality environment where the user could grab and interact with objects in a semi-physics based \ environment.

This system was my introduction to Unreal Engine and mainly used its \"Blueprint\" visual language, however I later used C++ to try and add my own physics \ to it.", - "/pages/gallery/epq-project/projectHeaderImage.png", - "/pages/gallery/epq-project/epq-project.html" + "./pages/gallery/epq-project/projectHeaderImage.png", + "./pages/gallery/epq-project/epq-project.html" ), new slide( "Tower defence game", "A project I created with a friend to help us gain a better understanding of pygame.

This was a basic tower defence game but featured a fully scalable and customisable \ level system allowing users to add their own levels and towers. One of my earliest projects, this is something I have revisited and improved upon quite a few times.", - "/pages/gallery/cat-tower-defence/projectHeaderImage.png", - "/pages/gallery/cat-tower-defence/cat-tower-defence.html" + "./pages/gallery/cat-tower-defence/projectHeaderImage.png", + "./pages/gallery/cat-tower-defence/cat-tower-defence.html" ), new slide( "House designer", "Originally a task given to do in a school lesson with a text interface, this became a small personal project that I added many other features to.

It included \ a graphical interface that allowed the user to draw, move and label rooms as well as set the painting and carpeting price which could later be used to calculate \ full decoration costs.", - "/pages/gallery/room-builder/projectHeaderImage.png", - "/pages/gallery/room-builder/room-builder.html" + "./pages/gallery/room-builder/projectHeaderImage.png", + "./pages/gallery/room-builder/room-builder.html" ) ]; \ No newline at end of file diff --git a/pages/gallery.js b/pages/gallery.js index e8bc11e..e70b63a 100644 --- a/pages/gallery.js +++ b/pages/gallery.js @@ -25,8 +25,6 @@ function updateSlide(){ document.querySelector(".galleryLink").href = slides[currentSlide].link; document.querySelector(".galleryImage").src = slides[currentSlide].image; - console.log(document.querySelector(".galleryImage").src) - console.log(slides[currentSlide].image) } updateSlide(); \ No newline at end of file diff --git a/pages/gallery/epq-project/epq-project.html b/pages/gallery/epq-project/epq-project.html index cf18c0f..8ad53b4 100644 --- a/pages/gallery/epq-project/epq-project.html +++ b/pages/gallery/epq-project/epq-project.html @@ -8,12 +8,12 @@

What it is

- This project was completed for my Extended Project Equalification (also knows as EPQ). During the EPQ, a student will pick a subject of their choice, research it and then either write a paper or create an piece of media + This project was completed for my Extended Project Equalification (also knows as EPQ). During the EPQ, a student will pick a subject of their choice, research it and then either write a paper or create a piece of media (an "artefact") based on what they have learnt. For my subject I originally chose physics simulation as at the time I lacked confidence in maths and wanted to force myself to relearn and become more comfortable with it. The idea of combining VR with this later came about in an attempt to make the project more modern so more primary research and testing could be done.

The end result was a system that allowed the user to interact with a virtual environment with 6 degrees of freedom, they could pick up, move and throw objects with their fingers, hands and head being fully tracked to the - real world. Due to time restraints, the physics simulation was released separately and ,although fully capable of location and force calculation, could not take rotation of objects into account. The project over all was + real world. Due to time restraints, the physics simulation was released separately and, although fully capable of location and force calculation, could not take rotation of objects into account. The project over all was graded an A*
@@ -24,7 +24,7 @@

What I did

Over the course of 4-5 months I researched and taught myself a large amount of vector maths, C++, the design of basic physics engines, a large portion of Unreal Engines toolset, a large portion of blenders toolset, a small amount of 3D rendering theory and the basics of game design for virtual reality. Using this I created a fully functional VR interaction system with many custom made assets, materials and classes as well as a - very basic physics engine. + very basic physics engine running within C++.
diff --git a/pages/gallery/room-builder/room-builder.html b/pages/gallery/room-builder/room-builder.html index 41dabe6..f1a8330 100644 --- a/pages/gallery/room-builder/room-builder.html +++ b/pages/gallery/room-builder/room-builder.html @@ -11,6 +11,9 @@ A piece of software that allowed the user to draw rooms and set properties such as names, interior carpet and painting prices before being given a price for full decoration in return. Created over the course of 3-4 days during after school hours using pygame. +
+ +

What I did

diff --git a/pages/mainpage.css b/pages/mainpage.css index c02dec7..6773914 100644 --- a/pages/mainpage.css +++ b/pages/mainpage.css @@ -281,7 +281,7 @@ h1{ grid-column: 1/13; grid-row: 8/13; - font-size: clamp(1rem, 3vw, 5rem); + font-size: clamp(1rem, 2vw, 3rem); border: 5px solid #ffd256; border-left: 0;