1 19 package jcckit.plot; 20 21 import jcckit.graphic.GraphicalElement; 22 import jcckit.graphic.GraphPoint; 23 24 34 public interface SymbolFactory { 35 36 public static final String SIZE_KEY = "size", 37 ATTRIBUTES_KEY = "attributes"; 38 39 40 public static final double DEFAULT_SIZE = 0.01; 41 42 53 public Symbol createSymbol(GraphPoint point, Hint hintFromPreviousPoint, 54 Hint hintFromPreviousCurve); 55 56 63 public GraphicalElement createLegendSymbol(GraphPoint centerPosition, 64 double size); 65 } 66 | Popular Tags |