//
// File ort2d.h

#include "vektor.h"
#include "geschwindigkeit2d.h"

#ifndef ORT2D_H
#define ORT2D_H 1

class Ort2D : public Vektor {

	public:
		Ort2D(const Ort2D& v);
		Ort2D(float x, float y);
		Ort2D(const Vektor& v);
		void ausgabe();
		Ort2D bewege(Geschwindigkeit2D g, float zeit);
};

#endif