444546474849505152
this(s, s.getBounds2D().getY()); } public FlowRegions(Shape s, double startY) { this.flowShape = s; sl = new SegmentList(s); currentY = startY-1; gotoY(startY); }
338339340341342343344345346
bboxShape = new SoftReference(s); // don't keep this live. bbox = null; if (s == null) return bbox; // SegmentList.getBounds2D gives tight BBox. SegmentList sl = new SegmentList(s); bbox = sl.getBounds2D(); return bbox; }
464748495051525354
497498499500501502503504505