nickvirag / ASCIIGraph

ASCIIGraph is a project for graphing CSV files to the console. It is written by Nick Virag and Chris Horton for Intro to Software Engineering at Lawrence Tech.
3 stars 0 forks source link

Stick to simple (x, y) pairs for now #10

Closed Xyaneon closed 10 years ago

Xyaneon commented 10 years ago

Right now we're trying to graph multiple lines per CSV file on the same graph by using three or more fields per line. Let's set a hard requirement of two fields per line, corresponding to a (x, y) coordinate pair.

For the purposes of our assignment, this probably counts as a defect in our design.

Xyaneon commented 10 years ago

https://github.com/nickvirag/ASCIIGraph/tree/only-use-pairs

Xyaneon commented 10 years ago

Merged.