Skip to content

Commit

Permalink
finished hw2 webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
anavmehta12 committed Feb 28, 2024
1 parent 2a36d9f commit 6dbd5f1
Show file tree
Hide file tree
Showing 36 changed files with 443 additions and 6 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added hw2/.DS_Store
Binary file not shown.
Binary file added hw2/assets/.DS_Store
Binary file not shown.
Binary file added hw2/assets/BeforeFlips.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/BeforeSequenceOfOperations.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/BeforeSplits.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/BezierCurve.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/BezierCurve2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/BezierCurvePoint.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/ControlPoints.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/CubeSubdivide1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/CubeSubdivide2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/FlatShading.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/LoopSubdivisionLevel1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/LoopSubdivisionLevel2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/LoopSubdivisionLevel3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/OneFlip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/OriginalCube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/PhongShading.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/Pre-processedMesh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/PreprocessedCube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/PreprocessedCubeSubdivided1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/PreprocessedCubeSubdivided2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/SplitFlipSplitFlipCombo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/Splits.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/Subdivision1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/Subdivision2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/Subdivision3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hw2/assets/Subdivision4.png
Binary file added hw2/assets/SubdivisionOnPreprocessedMesh1.png
Binary file added hw2/assets/SubdivisionOnPreprocessedMesh2.png
Binary file added hw2/assets/Teapot.png
Binary file added hw2/assets/ThreeFlips.png
Binary file added hw2/assets/TwoFlips.png
73 changes: 73 additions & 0 deletions hw2/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
body {
/* font-family: "; */
margin: 20px;
color: #333;
max-width: 1000px;
margin: auto;
}

h1 {
color: #007acc;
border-bottom: 2px solid #007acc;
}

h2 {
color: #005a9c;
margin-top: 20px;
}

h3,
h4 {
color: #2e86c1;
font-weight: bolder;
}

section {
margin-bottom: 40px;
}

article {
margin-top: 10px;
}

figure {
margin-top: 10px;
margin-bottom: 10px;
}

img {
max-width: 100%;
height: auto;
}

figcaption {
text-align: center;
font-style: italic;
}

/* Additional styles can be added as needed */
table {
width: 100%;
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid black;
}
th,
td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}

.images {
display: flex;
flex-direction: column;
justify-content: space-around;
flex-wrap: wrap;
align-items: center;
}
Loading

0 comments on commit 6dbd5f1

Please sign in to comment.