| 231 | } |
| 232 | |
| 233 | Vec2 JointDef::t(const Vec2& target) { |
| 234 | Vec2 pos = target - center; |
| 235 | return r(pos) + position; |
| 236 | } |
| 237 | |
| 238 | Joint* DistanceDef::toJoint(Dictionary* itemDict) { |
| 239 | Value* targetA = itemDict->get(bodyA).get(); |
no test coverage detected