Change build scripts
[jvcard.git] / src / com / googlecode / lanterna / graphics / ShapeRenderer.java
CommitLineData
a3b510ab
NR
1/*
2 * This file is part of lanterna (http://code.google.com/p/lanterna/).
3 *
4 * lanterna is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * Copyright (C) 2010-2015 Martin
18 */
19package com.googlecode.lanterna.graphics;
20
21import com.googlecode.lanterna.TerminalPosition;
22import com.googlecode.lanterna.TerminalSize;
23import com.googlecode.lanterna.TextCharacter;
24
25/**
26 * This package private interface exposes methods for translating abstract lines, triangles and rectangles to discreet
27 * points on a grid.
28 * @author Martin
29 */
30interface ShapeRenderer {
31 void drawLine(TerminalPosition p1, TerminalPosition p2, TextCharacter character);
32 void drawTriangle(TerminalPosition p1, TerminalPosition p2, TerminalPosition p3, TextCharacter character);
33 void drawRectangle(TerminalPosition topLeft, TerminalSize size, TextCharacter character);
34 void fillTriangle(TerminalPosition p1, TerminalPosition p2, TerminalPosition p3, TextCharacter character);
35 void fillRectangle(TerminalPosition topLeft, TerminalSize size, TextCharacter character);
36}