Source code for pymunk._contact_point_set

__docformat__ = "reStructuredText"

from collections import namedtuple

from .vec2d import Vec2d

[docs]class ContactPoint( namedtuple('ContactPoint', ['point_a', 'point_b', 'distance'])): """Contains information about a contact point. point_a and point_b are the contact position on the surface of each shape. distance is the penetration distance of the two shapes. Overlapping means it will be negative. This value is calculated as dot(point2 - point1), normal) and is ignored when you set the Arbiter.contact_point_set. """ __slots__ = ()
[docs]class ContactPointSet( namedtuple('ContactPointSet', ['normal', 'points'])): """Contact point sets make getting contact information simpler. normal is the normal of the collision points is the array of contact points. Can be at most 2 points. """ __slots__ = () @classmethod def _from_cp(cls, _points): normal = Vec2d(_points.normal) points = [] for i in range(_points.count): _p = _points.points[i] p = ContactPoint(Vec2d(_p.pointA), Vec2d(_p.pointB), _p.distance) points.append(p) return cls(normal, points)