/*
 * Java-Gnome Bindings Library
 *
 * Copyright 1998-2005 the Java-Gnome Team, all rights reserved.
 *
 * The Java-Gnome bindings library is free software distributed under
 * the terms of the GNU Library General Public License version 2.
 */
package org.freedesktop.cairo;

public class LinearGradient extends Gradient {

    public LinearGradient(double x1, double y1, double x2, double y2) {
        super(cairo_pattern_create_linear(x1, y1, x2, y2));
    }

}
