Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
253 B

  1. import java.util.Vector;
  2. //
  3. //
  4. // Stroke-
  5. // This class is used to hold line coordinates.
  6. // The line is held as a vector of points.
  7. //
  8. //
  9. public class Stroke extends Vector implements java.io.Serializable
  10. {
  11. public Stroke()
  12. {
  13. super(5,5);
  14. }
  15. }