This repository has been archived on 2023-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_cpp/term1/seminar02_encapsulation/0circle/point.h
2023-02-25 19:34:24 +03:00

37 lines
990 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
/*
Поля x и y сделаны приватными
Конкретно для этого класса их можно было сделать публичными
Так как пользователь всё-равно будет иметь доступ без ограничений к этим полям через геттеры и сеттеры
Но они сделаны приватными для образовательных целей
*/
class Point
{
private:
float mx, my;
public:
Point(float x, float y);
Point();
float getX() const;
float getY() const;
void setX(float x);
void setY(float y);
void normalize();
float distance(const Point& p) const;
float norm() const;
Point operator+(const Point& right) const;
Point operator*(float a) const;
friend Point operator*(float a, const Point& p);
friend std::ostream& operator<<(std::ostream& left, const Point& right);
};