congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
BroadPhase.query
Code IndexAdd Tabnine to your IDE (free)

How to use
query
method
in
org.jbox2d.collision.broadphase.BroadPhase

Best Java code snippets using org.jbox2d.collision.broadphase.BroadPhase.query (Showing top 9 results out of 315)

origin: libgdx/libgdx

/**
 * Query the world for all fixtures that potentially overlap the provided AABB.
 * 
 * @param callback a user implemented callback class.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, AABB aabb) {
 wqwrapper.broadPhase = m_contactManager.m_broadPhase;
 wqwrapper.callback = callback;
 m_contactManager.m_broadPhase.query(wqwrapper, aabb);
}
origin: libgdx/libgdx

/**
 * Query the world for all fixtures and particles that potentially overlap the provided AABB.
 * 
 * @param callback a user implemented callback class.
 * @param particleCallback callback for particles.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, ParticleQueryCallback particleCallback, AABB aabb) {
 wqwrapper.broadPhase = m_contactManager.m_broadPhase;
 wqwrapper.callback = callback;
 m_contactManager.m_broadPhase.query(wqwrapper, aabb);
 m_particleSystem.queryAABB(particleCallback, aabb);
}
origin: jbox2d/jbox2d

/**
 * Query the world for all fixtures that potentially overlap the provided AABB.
 * 
 * @param callback a user implemented callback class.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, AABB aabb) {
 wqwrapper.broadPhase = m_contactManager.m_broadPhase;
 wqwrapper.callback = callback;
 m_contactManager.m_broadPhase.query(wqwrapper, aabb);
}
origin: jbox2d/jbox2d

/**
 * Query the world for all fixtures and particles that potentially overlap the provided AABB.
 * 
 * @param callback a user implemented callback class.
 * @param particleCallback callback for particles.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, ParticleQueryCallback particleCallback, AABB aabb) {
 wqwrapper.broadPhase = m_contactManager.m_broadPhase;
 wqwrapper.callback = callback;
 m_contactManager.m_broadPhase.query(wqwrapper, aabb);
 m_particleSystem.queryAABB(particleCallback, aabb);
}
origin: org.jbox2d/jbox2d-library

/**
 * Query the world for all fixtures that potentially overlap the provided AABB.
 * 
 * @param callback a user implemented callback class.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, AABB aabb) {
 wqwrapper.broadPhase = m_contactManager.m_broadPhase;
 wqwrapper.callback = callback;
 m_contactManager.m_broadPhase.query(wqwrapper, aabb);
}
origin: com.github.almasb/fxgl-physics

/**
 * Query the world for all fixtures that potentially overlap the provided AABB.
 *
 * @param callback a user implemented callback class.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, AABB aabb) {
  wqwrapper.broadPhase = m_contactManager.m_broadPhase;
  wqwrapper.callback = callback;
  m_contactManager.m_broadPhase.query(wqwrapper, aabb);
}
origin: andmizi/MobikeTags

/**
 * Query the world for all fixtures that potentially overlap the provided AABB.
 * 
 * @param callback a user implemented callback class.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, AABB aabb) {
 wqwrapper.broadPhase = m_contactManager.m_broadPhase;
 wqwrapper.callback = callback;
 m_contactManager.m_broadPhase.query(wqwrapper, aabb);
}
origin: com.github.almasb/fxgl-physics

/**
 * Query the world for all fixtures and particles that potentially overlap the provided AABB.
 *
 * @param callback a user implemented callback class.
 * @param particleCallback callback for particles.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, ParticleQueryCallback particleCallback, AABB aabb) {
  wqwrapper.broadPhase = m_contactManager.m_broadPhase;
  wqwrapper.callback = callback;
  m_contactManager.m_broadPhase.query(wqwrapper, aabb);
  particleSystem.queryAABB(particleCallback, aabb);
}
origin: andmizi/MobikeTags

/**
 * Query the world for all fixtures and particles that potentially overlap the provided AABB.
 * 
 * @param callback a user implemented callback class.
 * @param particleCallback callback for particles.
 * @param aabb the query box.
 */
public void queryAABB(QueryCallback callback, ParticleQueryCallback particleCallback, AABB aabb) {
 wqwrapper.broadPhase = m_contactManager.m_broadPhase;
 wqwrapper.callback = callback;
 m_contactManager.m_broadPhase.query(wqwrapper, aabb);
 m_particleSystem.queryAABB(particleCallback, aabb);
}
org.jbox2d.collision.broadphaseBroadPhasequery

Javadoc

Query an AABB for overlapping proxies. The callback class is called for each proxy that overlaps the supplied AABB.

Popular methods of BroadPhase

  • createProxy
    Create a proxy with an initial AABB. Pairs are not reported until updatePairs is called.
  • destroyProxy
    Destroy a proxy. It is up to the client to remove any pairs.
  • drawTree
  • getFatAABB
  • getProxyCount
    Get the number of proxies.
  • getTreeBalance
  • getTreeHeight
    Get the height of the embedded tree.
  • getTreeQuality
  • getUserData
  • moveProxy
    Call MoveProxy as many times as you like, then when you are done call UpdatePairs to finalized the p
  • raycast
    Ray-cast against the proxies in the tree. This relies on the callback to perform a exact ray-cast in
  • testOverlap
  • raycast,
  • testOverlap,
  • touchProxy,
  • updatePairs,
  • <init>,
  • bufferMove,
  • unbufferMove

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • requestLocationUpdates (LocationManager)
  • setContentView (Activity)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • JLabel (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now