summaryrefslogtreecommitdiffstats
path: root/src/bbox.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/bbox.js')
-rwxr-xr-xsrc/bbox.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/bbox.js b/src/bbox.js
index 603b6c9..c68bec5 100755
--- a/src/bbox.js
+++ b/src/bbox.js
@@ -1,4 +1,4 @@
-
+
SVG.BBox = function(element) {
var box
@@ -31,10 +31,9 @@ SVG.BBox = function(element) {
this.width = box.width * element.trans.scaleX
this.height = box.height * element.trans.scaleY
}
-
- /* add the center */
- this.cx = this.x + this.width / 2
- this.cy = this.y + this.height / 2
+
+ /* add center, right and bottom */
+ boxProperties(this)
}
@@ -50,9 +49,8 @@ SVG.extend(SVG.BBox, {
b.width = Math.max(this.x + this.width, box.x + box.width) - b.x
b.height = Math.max(this.y + this.height, box.y + box.height) - b.y
- /* add the center */
- b.cx = b.x + b.width / 2
- b.cy = b.y + b.height / 2
+ /* add center, right and bottom */
+ boxProperties(b)
return b
}