- Timestamp:
- 07/22/08 11:38:43 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/SRC/org/openmicroscopy/shoola/util/roi/figures/MeasureBezierFigure.java
r5194 r5544 68 68 { 69 69 70 71 boolean c; 70 72 /** The list of X coords of the nodes on the line. */ 71 73 private ArrayList<Double> pointArrayX; … … 93 95 { 94 96 super("Text"); 97 c = true; 95 98 shape = null; 96 99 roi = null; … … 107 110 { 108 111 super("Text", closed); 112 c = closed; 109 113 pointArrayX = new ArrayList<Double>(); 110 114 pointArrayY = new ArrayList<Double>(); … … 119 123 { 120 124 super(text, true); 125 c = true; 121 126 pointArrayX = new ArrayList<Double>(); 122 127 pointArrayY = new ArrayList<Double>(); … … 132 137 { 133 138 super(text, closed); 139 c = closed; 134 140 pointArrayX = new ArrayList<Double>(); 135 141 pointArrayY = new ArrayList<Double>();
