정리필요2
-
-
실습 4정리필요2 2008. 9. 2. 15:49
#include #include #include using namespace std; const int MAXSIZE = 10; class StudentRecord { private: int sno; string sname; float score; public: StudentRecord() {;} StudentRecord(int no, string name, float s) {sno=no, sname=name, score=s;} void setSno(int no) {sno = no;} void setSname(string name) {sname = name;} void setScore(float s) {score = s;} int getSno() const {return sno;} string getSn..
-
-
-
실습5정리필요2 2008. 9. 2. 15:44
#include #include #include using namespace std; const int MAXSIZE = 10; class StudentRecord { private: int sno; string sname; float score; public: StudentRecord() {;} StudentRecord(int no, string name, float s) {sno=no, sname=name, score=s;} void setSno(int no) {sno = no;} void setSname(string name) {sname = name;} void setScore(float s) {score = s;} int getSno() const {return sno;} string getSn..
-
과제#4 (Window To Viewport Transformation)정리필요2 2008. 9. 2. 15:43
삼각형 신축, 회전 지난 scanconversion 과제는 너무 어려웠으나...이번건 할만했다.... 2005mfc로 작성했으며 헤더파일에 선언한 클래스와 함수들은 생략했당~ 주된 흐름만 살포시 ... // 삼각형의 갯수와 좌표 정의 void C과제4TransformationView::setTriangle(Triangle t1[], int countT) { int temp[][6] = { // 삼각형 6개 정의 {10, 100, 100, 10, 150, 150}, {320, 300, 400, 10, 580, 300}, {280, 350, 10, 400, 300, 580}, {610, 40, 650, 60, 620, 90}, {450, 450, 600, 350, 600, 550}, {650, 450, 80..