001// Licensed under the MIT license. See LICENSE file in the project root for full license information.
002
003package de.bytefish.pgbulkinsert.pgsql.model.geometric;
004
005public class Line {
006
007    private double a;
008    private double b;
009    private double c;
010
011    public Line(double a, double b, double c) {
012        this.a = a;
013        this.b = b;
014        this.c = c;
015    }
016
017    public double getA() {
018        return a;
019    }
020
021    public double getB() {
022        return b;
023    }
024
025    public double getC() {
026        return c;
027    }
028
029}