129130131132133134135
this.getGraphic().pixelHeight(); } catch (final GraphicException e) { this.getLogger().error("Error getting SVG dimensions in " + this.getClass().getName()); } return new BoundingBox4a(box); }
110111112113114115116
/** * {@inheritDoc} */ protected BoundingBox getBoundingBox() { /* TODO: Implement this. */ return new BoundingBox4a(0, 0, 0, 0); }
279280281282283284285
index += bbxName.length - 1; final float[] bboxArray = new float[BoundingBox.BBOX_ENTRIES]; for (int i = 0; i < BoundingBox.BBOX_ENTRIES; i++) { index += readBBoxString(fileStart, i, index, bboxArray); } this.bbox = new BoundingBox4a(bboxArray); }