Скачиваний:
62
Добавлен:
01.05.2014
Размер:
599 б
Скачать
// Trajectory.h: interface for the Trajectory class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_TRAJECTORY_H__8A5E3B6C_2172_4D24_A4F1_B2E8F094D99A__INCLUDED_)
#define AFX_TRAJECTORY_H__8A5E3B6C_2172_4D24_A4F1_B2E8F094D99A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "point.h"

class Trajectory : private Point  
{
private:
		Point p2;
public:
	Trajectory(float, float, float, float);
	void draw();

};

#endif // !defined(AFX_TRAJECTORY_H__8A5E3B6C_2172_4D24_A4F1_B2E8F094D99A__INCLUDED_)
Соседние файлы в папке prj1