first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

25
CS4451/proj3/PPM.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef _PPMPARSER_H_
#define _PPMPARSER_H_
#include <string>
class PPM {
private:
void init(std::string fileName);
RGB** matrix;
public:
PPM();
PPM(char* fileName);
void readIn(char* fileName);
RGB getAt(int x, int y);
};
#endif