stuff-from-scratch/src/base/geometry/path/PathElement.h
2023-01-19 14:25:58 +00:00

17 lines
No EOL
285 B
C++

#pragma once
#include "AbstractGeometricItem.h"
#include <string>
class PathElement : public AbstractGeometricItem
{
public:
~PathElement();
virtual Point getFirstPoint() const = 0;
virtual Point getEndPoint() const = 0;
virtual std::string toPostScriptString() const = 0;
};