- 삼총사CppStudy/숙제2/곽세환 . . . . 86 matches
class CVector
CVector();
CVector(double x, double y, double z);
CVector operator+(CVector v);
CVector operator-(CVector v);
CVector operator*(double s);
CVector operator*(CVector v);
double operator^(CVector v);
CVector v1(10, 20, 30);
CVector v2(50, 60, 70);
CVector v3;
CVector::CVector()
CVector::CVector(double x, double y, double z)
void CVector::SetVector(double x, double y, double z)
CVector CVector::operator+(CVector v)
CVector temp(cx + v.GetX(), cy + v.GetY(), cz + v.GetZ());
CVector CVector::operator-(CVector v)
CVector temp;
CVector CVector::operator*(double s)
CVector temp(cx * s, cy * s, cz * s);
- 삼총사CppStudy/20030806 . . . . 21 matches
class CVector
CVector();
CVector(int a, int b);
CVector operator+(CVector a);
ostream & operator<<(ostream &os, CVector &a);
CVector::CVector()
CVector::CVector(int a, int b)
CVector CVector::operator+(CVector a)
CVector temp;
void CVector::SetValue(int a, int b)
int CVector::GetX()
int CVector::GetY()
ostream & operator<<(ostream & os, CVector &a)
CVector v1(50, 100);
CVector v2(22, 33);
CVector v3 = v1.operator +(v2);
- 레밍즈프로젝트/연락 . . . . 1 match
3. 맵 부분과 레밍에 대해서. CVector(없는 라이브러리)가 아니라 CArray라는 MS 제공 라이브러리를 사용해야 직렬화가 가능하대;;
- 삼총사CppStudy/숙제2 . . . . 1 match
3차원 CVector 클래스를 만들어봅시다.
Found 4 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.