Type Number Object DisplayObject Library display.* Revision 2017.3060 Keywords content width
The read-only width of the object in content coordinates. This is similar to object.width except that its value is affected by x scaling and rotation.
local rect = display.newRect( 100, 100, 50, 50 ) rect.rotation = 25 rect:setFillColor( 1, 0, 0 ) print( "contentWidth: ".. rect.contentWidth )