Sha256: ea5f822d48c9b00090f10774ff3174d1e24553439cba00c3a111eea46918f0a7
Contents?: true
Size: 461 Bytes
Versions: 7
Compression:
Stored size: 461 Bytes
Contents
package org.jbox2d.callbacks; import org.jbox2d.common.Vec2; public interface ParticleRaycastCallback { /** * Called for each particle found in the query. See * {@link RayCastCallback#reportFixture(org.jbox2d.dynamics.Fixture, Vec2, Vec2, float)} for * argument info. * * @param index * @param point * @param normal * @param fraction * @return */ float reportParticle(int index, Vec2 point, Vec2 normal, float fraction); }
Version data entries
7 entries across 7 versions & 1 rubygems