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

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: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: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:getLocalCenter

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

Channel:supply

Channel:supply Available since LÖVE 0.9.0 This function is not supported in earlier versions. Send a message to the thread Channel and wait for a thread to accept it. See Variant for the list of supported types. Function Synopsis Channel:supply( value ) Arguments Variant value The contents of the message. Returns None. See Also Channel Channel:demand Channel:push

Channel:push

Channel:push Available since LÖVE 0.9.0 This function is not supported in earlier versions. Send a message to the thread Channel. See Variant for the list of supported types. Function Synopsis Channel:push( value ) Arguments Variant value The contents of the message. Returns None. See Also Channel Channel:pop Channel:supply

Channel:pop

Channel:pop Available since LÖVE 0.9.0 This function is not supported in earlier versions. Retrieves the value of a Channel message and removes it from the message queue. It returns nil if there are no messages in the queue. Function Synopsis value = Channel:pop( ) Arguments None. Returns Variant value The contents of the message. See Also Channel Channel:push Channel:demand

Channel:peek

Channel:peek Available since LÖVE 0.9.0 This function is not supported in earlier versions. Retrieves the value of a Channel message, but leaves it in the queue. It returns nil if there's no message in the queue. Function Synopsis value = Channel:peek( ) Arguments None. Returns Variant value The contents of the message. See Also Channel Channel:pop