-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
43 lines (33 loc) · 1022 Bytes
/
README
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
35
36
37
38
39
40
41
42
43
CS184 - Foundations of Computer Graphics
Assignment 3: Bezier Subdivision
==========================================
Names:
------
Ankush Gupta (cs184-bd)
Sibi Venkatesan (cs184-bf)
Platform:
---------
Ubuntu (tested on hive14).
Submission:
-----------
Done by Sibi Venkatesan (cs184-bf).
Worked on Ubuntu 12.04 on personal computer[s].
Checked and submitted from hive14.cs.berkeley.edu
IMPORTANT:
----------
Running 'make' will not work immediately (sorry!). But cmake will make a Makefile for you.
Please execute the following commands:
# If you want:
mkdir build
cd build
# Replace <project_directory> below with appropriate directory.
# ".." will do if you make build directory in project directory.
cmake <project_directory>
# Now you can make the project!
make
Running the code:
-----------------
The executable for the code is "dispApp".
Assuming you are in the build directory, run the code by typing:
./dispApp ../data/teapot.bez 0.01 -a
or something similar.