

package cytoscape.visual.strokes;

import static cytoscape.visual.LineStyle.VERTICAL_SLASH;

public class VerticalSlashStroke extends PipeStroke {

	public VerticalSlashStroke(float width, Type offsetType) {
		super(width,offsetType,VERTICAL_SLASH);
	}
}

