Sha256: f5c4b54c1b00fac1bca6b571099c8b700bc2708e184da0cb2e2c18bf6ebcfa05
Contents?: true
Size: 406 Bytes
Versions: 7
Compression:
Stored size: 406 Bytes
Contents
package org.jbox2d.callbacks; import org.jbox2d.dynamics.World; /** * Callback class for AABB queries. See * {@link World#queryAABB(QueryCallback, org.jbox2d.collision.AABB)}. * * @author dmurph * */ public interface ParticleQueryCallback { /** * Called for each particle found in the query AABB. * * @return false to terminate the query. */ boolean reportParticle(int index); }
Version data entries
7 entries across 7 versions & 1 rubygems