2021-09-13 15:53:43 +03:00
|
|
|
//
|
|
|
|
// Created by Иван Ильин on 13.01.2021.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ENGINE_TRIANGLE_H
|
|
|
|
#define ENGINE_TRIANGLE_H
|
|
|
|
|
|
|
|
#include "utils/Point4D.h"
|
|
|
|
#include "utils/Matrix4x4.h"
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
|
|
|
|
class Triangle {
|
2021-09-19 11:25:10 +03:00
|
|
|
private:
|
|
|
|
sf::Color _color;
|
|
|
|
Point4D _p[3];
|
|
|
|
|
2021-09-13 15:53:43 +03:00
|
|
|
public:
|
|
|
|
|
|
|
|
Triangle ();
|
|
|
|
Triangle (const Triangle& triangle);
|
2021-09-19 11:25:10 +03:00
|
|
|
Triangle (const Point4D& p1, const Point4D& p2, const Point4D& p3, sf::Color color = {0, 0, 0});
|
2021-09-13 15:53:43 +03:00
|
|
|
|
|
|
|
[[nodiscard]] Point4D operator[] (int i) const;
|
|
|
|
[[nodiscard]] Point4D norm() const;
|
|
|
|
|
|
|
|
// Operations with Matrix4x4
|
|
|
|
[[nodiscard]] Triangle operator*(const Matrix4x4& matrix4X4) const;
|
|
|
|
|
|
|
|
[[nodiscard]] bool isPointInside(const Point4D& point) const;
|
2021-09-19 11:25:10 +03:00
|
|
|
|
|
|
|
[[nodiscard]] sf::Color color() const { return _color; }
|
2021-09-13 15:53:43 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //INC_3DZAVR_TRIANGLE_H
|