1 /*
2 Copyright 2000 by Ralph Hartley
3 This software is licenced under the terms of the
4 Gnu Public Licence
5 */
6
7 public class Drop extends TickedStroke {
8
9 public Drop(double thickness,double tic) {
10 super(thickness);
11 ticklength = tic/2;
12 lengths = new double[1];
13 lengths[0] = tic;
14 actions = new int[1];
15 actions[0] = RIGHT;
16 partcnt = 1;
17 }
18 }
19