Implement #38: Polygon Shapes
Some checks failed
CI / build-and-test (pull_request) Failing after 16s

This commit is contained in:
2026-03-28 00:55:58 +01:00
parent 1db8ade18e
commit 4e1b83f6d1
7 changed files with 197 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ package ovh.gasser.newshapes;
import ovh.gasser.newshapes.shapes.SCircle;
import ovh.gasser.newshapes.shapes.SCollection;
import ovh.gasser.newshapes.shapes.SPolygon;
import ovh.gasser.newshapes.shapes.SRectangle;
import ovh.gasser.newshapes.shapes.SText;
import ovh.gasser.newshapes.shapes.STriangle;
@@ -16,4 +17,6 @@ public interface ShapeVisitor {
void visitTriangle(STriangle sTriangle);
void visitText(SText sText);
void visitPolygon(SPolygon sPolygon);
}