All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.harium.etyl.commons.graphics.stroke.BasicStroke Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package com.harium.etyl.commons.graphics.stroke;

import com.harium.etyl.commons.graphics.Graphics;

public class BasicStroke extends BaseStroke {

    public BasicStroke() {
        super();
    }

    public BasicStroke(int width) {
        super(width);
    }

    @Override
    protected int plot(Graphics g, int x, int y, int count) {
        g.putPixel(x, y);
        return count;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy