How can I get the position of an object in Raphael? I can get the size using getBBox(), but there appears to be no way to get the position?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
getBBox() should give you position as well as x and y properties.
|
|||
|
getBBox() returns an object with 5 properties. they are:
if you set getBBox( false ) it will return coordinate data for the object's position AFTER a transformation. set it to getBBox( true ) to return coordinates for the object prior to transformation use like this ...
edit: just downloaded R 2.1 and i believe it has added x2 and y2 to the properties returned by getBBox() |
||||
|
|
|
Depending on what kind of shape it is, the documentation seems to say it can be accessed using the
A square would have |
|||
|
|
|
you may also access the x and y values this way:
|
|||
|
|