

package cytoscape.visual.strokes;

import static cytoscape.visual.LineStyle.BACKWARD_SLASH;

public class BackwardSlashStroke extends PipeStroke {

	public BackwardSlashStroke(float width, Type offsetType) {
		super(width,offsetType,BACKWARD_SLASH);
	}
}

