

package cytoscape.visual.strokes;

import static cytoscape.visual.LineStyle.FORWARD_SLASH;

public class ForwardSlashStroke extends PipeStroke {

	public ForwardSlashStroke(float width, Type offsetType) {
		super(width,offsetType,FORWARD_SLASH);
	}
}

