Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions src/lab/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
<p class="experiment-outcome"><i>Objectives of this experiments are :</i><br>
1. To understand that for some problems an approximate numerial solution is as good as the exact solution for practical purposes.<br>
</p>
<p class="experiment-prereq">Prerequisite : </p>

</div>
</div>
Expand All @@ -101,7 +100,6 @@
<p class="experiment-outcome"><i>Objectives of this experiments are :</i><br>
1. To understand that a big program can be broken up into independent modules.<br>
2. To learn to define functions and call them with appropriate parameters. </p>
<p class="experiment-prereq">Prerequisite : </p>


</div>
Expand Down Expand Up @@ -129,7 +127,6 @@
1. To learn how decision making is done while programming.<br>
2. To learn about the various advanced constructs used for control flow.
</p>
<p class="experiment-prereq">Prerequisite : </p>
</div>
</div>
</a>
Expand All @@ -150,7 +147,6 @@
<p class="experiment-outcome"><i>Objectives of this experiments are :</i><br>
1. To learn how to use arrays for storing large amount of data.<br>
2. To learn how to use array to create a common reference for a large number of variables. </p>
<p class="experiment-prereq">Prerequisite : </p>
</div>
</div>
</a>
Expand All @@ -173,7 +169,6 @@
1. To understand how to use structures as a compund datatype.<br>
2. To be able to design structures according to your requirement.
</p>
<p class="experiment-prereq">Prerequisite : </p>


</div>
Expand All @@ -196,7 +191,6 @@
<p class="experiment-outcome"><i>Objectives of this experiments are :</i><br>
1. To learn how decision making is done while programming.<br>
2. To learn about the various simple constructs used for control flow. </p>
<p class="experiment-prereq">Prerequisite : </p>


</div>
Expand All @@ -223,7 +217,6 @@
1. To understand the concept of strings and how they are a special type of character arrays.<br>
2. To understand the usage of string libraries to do common string operations.
</p>
<p class="experiment-prereq">Prerequisite : </p>

</div>
</div>
Expand All @@ -244,7 +237,6 @@
1. To understand the concept of memory adddress associated with every variable.<br>
2. To understand pointer referencing and dereferencing.
</p>
<p class="experiment-prereq">Prerequisite : </p>


</div>
Expand All @@ -267,7 +259,6 @@
1. To understand that some problems can be broken down into smaller similar problems.<br>
2. To solve such problems using recursive procedures.
</p>
<p class="experiment-prereq">Prerequisite : </p>
</div>
</div>
</a>
Expand All @@ -292,7 +283,6 @@
1. To learn about different types of operators<br>
2. To learn about the precedence of the operators.
</p>
<p class="experiment-prereq">Prerequisite : </p>
</div>
</div>
</a>
Expand All @@ -312,7 +302,6 @@
<p>When a polygon is transformed from a set of edges in the continous form of y = mx + c into a set of pixels occupied by the interior of the polygon, this transformation is called polygon rasterization. When we rasterize a polygon, we obtain the set of pixels that are required to fill the interior area of a bounded polygon. This experiment demonstrates the working of Scan-Line Polygon Fill algorithm.</p>
</div>
<p class="experiment-outcome">The objective of this experiment is to understand the steps of filling a polygon in a 2D frame buffer. Given the vertices of the polygon, the experiment outputs a filled polygon. Here we have demonstrated the steps of Scan Line Poylgon Fill algorithm.</p>
<p class="experiment-prereq">Prerequisite : Exp1, Exp2, Exp3</p>


</div>
Expand Down
13 changes: 3 additions & 10 deletions src/lab/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,21 +132,14 @@ hr{
}

.experiment-outcome{
padding: 1em 1em 0em 1em;
margin: 0em 1em 0em 1em;
padding: 1em 1em 2em 1em;
margin: 0em 1em 2em 1em;
font-family: 'Source Sans Pro', sans-serif;
/*border-radius: 1em;
border: 1px solid #aaa;*/
}

.experiment-prereq{
padding: 1em 1em 1em 1em;
margin: 0.5em 1em 1em 1em;
/*border-radius: 1em;
border: 1px solid #aaa;*/
font-weight: bold;
text-align: right;
}


@media (max-width: 480px) {
body {
Expand Down