Difference between revisions of "PolygonShape"

m (1 revision: Importing from potato (again).)
Line 1: Line 1:
 
 
Polygon is a convex polygon with up to 8 sides.
 
Polygon is a convex polygon with up to 8 sides.
  
Create a new polygon shape with [[love.physics.newPolygonShape]].
+
Create a new polygon shape with [[love.physics.newPolygonShape]] or [[love.physics.newRectangleShape]].
  
 
== Functions ==
 
== Functions ==
Line 14: Line 13:
 
* [[parent::love.physics]]
 
* [[parent::love.physics]]
 
* [[love.physics.newPolygonShape]]
 
* [[love.physics.newPolygonShape]]
 +
* [[love.physics.newRectangleShape]]
 
[[Category:Types]]
 
[[Category:Types]]
 
{{#set:Description=Polygon is a convex polygon with up to 8 sides.
 
{{#set:Description=Polygon is a convex polygon with up to 8 sides.
 
}}
 
}}

Revision as of 16:43, 6 August 2010

Polygon is a convex polygon with up to 8 sides.

Create a new polygon shape with love.physics.newPolygonShape or love.physics.newRectangleShape.

Functions

ChainShapeA ChainShape consists of multiple line segments.
CircleShapeCircle extends Shape and adds a radius and a local position.
EdgeShapeEdgeShape is a line segment.
PolygonShapePolygon is a convex polygon with up to 8 sides.
PolygonShape:getPointsGet the local coordinates of the polygon's vertices.
PolygonShape:validateValidates whether the PolygonShape is convex.
Shape:computeAABBReturns the points of the bounding box for the transformed shape.
Shape:computeMassComputes the mass properties for the shape.
Shape:destroyExplicitly destroys the Shape.
Shape:getBodyGet the body the shape is attached to.
Shape:getBoundingBoxGets the bounding box of the shape.
Shape:getCategoryGets the categories this shape is a member of.
Shape:getCategoryBitsGets the categories as a 16-bit integer.
Shape:getChildCountReturns the number of children the shape has.
Shape:getDataGet the data set with setData.
Shape:getDensityGets the density of the Shape.
Shape:getFilterDataGets the filter data of the Shape.
Shape:getFrictionGets the friction of this shape.
Shape:getMaskGets which categories this shape should NOT collide with.
Shape:getMaskBitsReturns a 16-bit integer representing the masked categories.
Shape:getRadiusGets the radius of the shape.
Shape:getRestitutionGets the restitution of this shape.
Shape:getTypeGets a string representing the Shape.
Shape:isSensorChecks whether a Shape is a sensor or not.
Shape:rayCastCasts a ray against the shape.
Shape:setCategorySets the categories this shape is a member of.
Shape:setDataSet data to be passed to the collision callback.
Shape:setDensitySets the density of a Shape.
Shape:setFilterDataSets the filter data for a Shape.
Shape:setFrictionSets the friction of the shape.
Shape:setMaskSets which categories this shape should NOT collide with.
Shape:setRestitutionSets the restitution of the shape.
Shape:setSensorSets whether this shape should act as a sensor.
Shape:testPointChecks whether a point lies inside the shape.
Shape:testSegmentChecks whether a line segment intersects a shape.
ShapeTypeThe different types of Shapes, as returned by Shape:getType.

Supertypes

Shape

See Also