Geometrize 1.0
C++ library for geometrizing images into geometric primitives
line.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4#include <memory>
5
6#include "shape.h"
7
8namespace geometrize
9{
10
15class Line : public Shape
16{
17public:
18 Line() = default;
19 Line(float x1, float y1, float x2, float y2);
20
21 virtual std::shared_ptr<geometrize::Shape> clone() const override;
22 virtual geometrize::ShapeTypes getType() const override;
23
24 float m_x1;
25 float m_y1;
26 float m_x2;
27 float m_y2;
28};
29
30}
The Line class represents a simple line.
Definition: line.h:16
virtual std::shared_ptr< geometrize::Shape > clone() const override
clone Clones the shape, a virtual copy constructor.
Definition: line.cpp:19
virtual geometrize::ShapeTypes getType() const override
getType Gets the ShapeType of the shape.
Definition: line.cpp:32
float m_y1
First y-coordinate.
Definition: line.h:25
float m_y2
Second y-coordinate.
Definition: line.h:27
float m_x2
Second x-coordinate.
Definition: line.h:26
float m_x1
First x-coordinate.
Definition: line.h:24
Definition: shape.h:18
Definition: bitmap.cpp:8
ShapeTypes
The ShapeTypes enum specifies the types of shapes that can be used. These can be combined to produce ...
Definition: shapetypes.h:17