-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_intro.html
More file actions
34 lines (24 loc) · 1.47 KB
/
project_intro.html
File metadata and controls
34 lines (24 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html><head><title>3d ray tracing animation applet: intro</title>
</head>
<!-- ====================================== -->
<body text="#000000" background="../back.jpg" bgcolor="#ffffff" link="#0000ff" vlink="#5500aa" alink="#ff0000">
<font size=5 face="Arial"><p>Introduction
<font size=3 face="Arial"><p>
The goal of this project is to create a tool that will allow
programmers to quickly gain an in-depth understanding of an algorithm.
<p>Learning an algorithm through a simulator has many advantages.
The algorithm code can be presented in a more managable way. Psuedocode
allows the user to focus on the problem being solved. Implementation
overhead can be ignored, while a working system is available for testing.
The user can enter data as input to the algorithm through a graphical
interface, giving the user a more concrete and easier way to understand
what the algorithm is processing. Most important, the user can also
simulate the execution of the algorithm. As the algorithm is executed,
it can present multiple views of the algorithm: source code, images, animations,
and values of variables. This allows the user to focus on the algorithm and
visualize how it works, without spending time searching for called procedures
and calculating values.
<p>3dAA is implemented as a Java applet. This allows any user with
Internet access and a web browser to run a simulation.
<!-- ====================================== -->
</font></font></body></html>