CS 450/550 -- Fall Quarter 2023

Project #1

50 Points

Due: October 9 -- Bonus Days now Allowed!

Draw Something Cool in 3D!


This page was last updated: September 6, 2023


Introduction

This project requires you to draw something fun and cool in 3D. It must be your own creation.

Just as an inspiration, here is what the CS 450/550 Class of 2022 did with this assignment, but I know you can do better.

Learning Objective:

When you are done with this assignment, you will understand how to generate and manipulate 3D graphics objects using OpenGL. At this point, you will realize that you can basically draw anything just by repeatedly applying what you did here.

Instructions

  1. You can use pre-canned 3D objects, such as the ones that GLUT provides, or the OSU functions that we provide, or OBJ files, but in addition to your own, not instead of. You must create your own geometry.

  2. You can explicitly list your own 3D coordinates, or you can use equations and define the 3D shapes procedurally.

  3. You must have at least 100 x-y-z coordinates. These can be divided up among multiple of your objects.

  4. The scene must have 3D thickness, nothing that is completely planar.

  5. You must use at least 5 different colors.

  6. The 3D rotation and scaling from the sample program must still be working.

Getting Started

Go to the Class Resources Page and scroll down to Downloadable Files. Then download one of the SampleWindows.zip, SampleLinux.tar, or SampleMac.tar files (by right-clicking on them). This will produce a folder full of all the other files you need. You do not need to go hunt the internet for any other files. Use the ones that have been given to you.

Start by getting the sample program to work. If you are on Windows, double-click on the .sln file. If you are on Linux or Mac, type make

Then start modifying the function InitLists( ) to draw something of your own design.

No, using a GLUT object or an OSU object or an OBJ file will not count.

Turn-in:

Use the Teach system to turn in your:

  1. Your .cpp file
  2. A short PDF report containing:

  3. Be sure that your video's permissions are set to unlisted.. The best place to set this is on the OSU Media Server.

  4. A good way to test your video's permissions is to ask a friend to try to open the same video link that you are giving us.

  5. The video doesn't have to be made with Kaltura. Any similar tool will do.

Grading:

FeaturePoints
At least 100 vertices20
At least 5 colors20
3D rotation and scaling10
Potential Total50