Dialog
Generator
Syntax: C++
Description: This is the source for the dialog generator
I described on my projects
page. All the source is included.
Download
Source (right-click and Save Target As...)
Implementing ATOI
Syntax: C++
Description: This program converts a string into an
integer. If the value passed into the function only
contains numeric characters, it will return the numeric
equivalent of the string. If the value passed contains
non-numeric characters, it will return 0, or return
the number derived so far (e.g. if the value passed
to the function is “123A”, then it will
return 123).
Download
Source (right-click and Save Target As...)
MEL Bouncing Ball Arena
Syntax: MEL
Description: Creates a cube arena, and simulates a ball
bouncing within its boundaries. Includes gravity, and
drag fields.
Download
Source (right-click and Save Target As...)
MEL
Pipe Creator
Syntax: MEL
Description: Creates "twisty" pipes from CV
curves.
Download
Source (right-click and Save Target As...)
Ray Tracer
Syntax: C++
Description: This is the source for the Ray Tracer I
described on my projects
page. I've included all the required source files
as well as some test scenes for use.
Download
Source (right-click and Save Target As...)
Unique word finder
Syntax: C++
Description: This program scans a text file and counts
each word only once (i.e - The word "lock"
would only be counted one time even if it appears twice
inside the file). It returns the amount of unique words
as an integer result. I did this program mainly to explore
a linked-list data structure.
Download
Source (right-click and Save Target As...)
|