CircleShape:getPoint

CircleShape:getPoint Available since LÖVE 0.9.1 This function is not supported in earlier versions. Gets the center point of the circle shape. Function Synopsis x, y = CircleShape:getPoint( ) Arguments None. Returns number x The x-component of the center point of the circle. number y The y-component of the center point of the circle. See Also CircleShape CircleShape:setPoint

CircleShape:getRadius

CircleShape:getRadius Gets the radius of the circle shape. Function Synopsis radius = CircleShape:getRadius( ) Arguments None. Returns number radius The radius of the circle See Also CircleShape

CircleShape:getWorldCenter

CircleShape:getWorldCenter Removed in LÖVE 0.8.0 This method is not supported in that and later versions. Get the center of the circle in world coordinates. Function Synopsis wx, wy = CircleShape:getWorldCenter( ) Arguments None. Returns number wx The x position of the circle in world coordinates. number wy The y position of the circle in world coordinates. See Also CircleShape Others Languages

CircleShape:setPoint

CircleShape:setPoint Available since LÖVE 0.9.1 This function is not supported in earlier versions. Sets the location of the center of the circle shape. Function Synopsis x, y = CircleShape:setPoint( x, y ) Arguments number x The x-component of the new center point of the circle. number y The y-component of the new center point of the circle. Returns Nothing. See Also CircleShape CircleShape:getPoint

CircleShape:setRadius

CircleShape:setRadius Available since LÖVE 0.8.0 This method is not supported in earlier versions. Sets the radius of the circle. Function Synopsis CircleShape:setRadius( radius ) Arguments number radius The radius of the circle Returns Nothing. See Also CircleShape

CompressedData:getFormat

CompressedData:getFormat Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the compression format of the CompressedData. Function Synopsis format = CompressedData:getFormat( ) Arguments None. Returns CompressedDataFormat format The format of the CompressedData. See Also CompressedData

CompressedImageData:getDimensions

CompressedImageData:getDimensions Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the width and height of the CompressedImageData. Function Synopsis width, height = CompressedImageData:getDimensions( ) Arguments None. Returns number width The width of the CompressedImageData. number height The height of the CompressedImageData. Function Synopsis width, height = CompressedImageData:getDimensions( level ) Arguments number level A mipmap level. Must b

CompressedImageData:getFormat

CompressedImageData:getFormat Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the format of the CompressedImageData. Function Synopsis format = CompressedImageData:getFormat( ) Arguments None. Returns CompressedImageFormat format The format of the CompressedImageData. See Also CompressedImageData

CompressedImageData:getHeight

CompressedImageData:getHeight Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the height of the CompressedImageData. Function Synopsis height = CompressedImageData:getHeight( ) Arguments None. Returns number height The height of the CompressedImageData. Function Synopsis height = CompressedImageData:getHeight( level ) Arguments number level A mipmap level. Must be in the range of [1, CompressedImageData:getMipmapCount()]. Returns number height Th

CompressedImageData:getMipmapCount

CompressedImageData:getMipmapCount Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the number of mipmap levels in the CompressedImageData. The base mipmap level (original image) is included in the count. Function Synopsis mipmaps = CompressedImageData:getMipmapCount( ) Arguments None. Returns number mipmaps The number of mipmap levels stored in the CompressedImageData. Notes Mipmap filtering cannot be activated for an Image created from a CompressedI