Codota Logo
BroadPhase.destroyProxy
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Charset c =
  • Codota IconString charsetName;Charset.forName(charsetName)
  • Codota IconCharset.defaultCharset()
  • Codota IconContentType contentType;contentType.getCharset()
  • Smart code suggestions by Codota
}
origin: libgdx/libgdx

/**
 * Internal method
 * 
 * @param broadPhase
 */
public void destroyProxies(BroadPhase broadPhase) {
 // Destroy proxies in the broad-phase.
 for (int i = 0; i < m_proxyCount; ++i) {
  FixtureProxy proxy = m_proxies[i];
  broadPhase.destroyProxy(proxy.proxyId);
  proxy.proxyId = BroadPhase.NULL_PROXY;
 }
 m_proxyCount = 0;
}
origin: jbox2d/jbox2d

/**
 * Internal method
 * 
 * @param broadPhase
 */
public void destroyProxies(BroadPhase broadPhase) {
 // Destroy proxies in the broad-phase.
 for (int i = 0; i < m_proxyCount; ++i) {
  FixtureProxy proxy = m_proxies[i];
  broadPhase.destroyProxy(proxy.proxyId);
  proxy.proxyId = BroadPhase.NULL_PROXY;
 }
 m_proxyCount = 0;
}
origin: com.github.almasb/fxgl-physics

/**
 * @param broadPhase broad phase
 */
void destroyProxies(BroadPhase broadPhase) {
  // Destroy proxies in the broad-phase.
  for (int i = 0; i < proxyCount; ++i) {
    FixtureProxy proxy = m_proxies[i];
    broadPhase.destroyProxy(proxy.proxyId);
    proxy.proxyId = BroadPhase.NULL_PROXY;
  }
  proxyCount = 0;
}
origin: andmizi/MobikeTags

/**
 * Internal method
 * 
 * @param broadPhase
 */
public void destroyProxies(BroadPhase broadPhase) {
 // Destroy proxies in the broad-phase.
 for (int i = 0; i < m_proxyCount; ++i) {
  FixtureProxy proxy = m_proxies[i];
  broadPhase.destroyProxy(proxy.proxyId);
  proxy.proxyId = BroadPhase.NULL_PROXY;
 }
 m_proxyCount = 0;
}
origin: org.jbox2d/jbox2d-library

/**
 * Internal method
 * 
 * @param broadPhase
 */
public void destroyProxies(BroadPhase broadPhase) {
 // Destroy proxies in the broad-phase.
 for (int i = 0; i < m_proxyCount; ++i) {
  FixtureProxy proxy = m_proxies[i];
  broadPhase.destroyProxy(proxy.proxyId);
  proxy.proxyId = BroadPhase.NULL_PROXY;
 }
 m_proxyCount = 0;
}
org.jbox2d.collision.broadphaseBroadPhasedestroyProxy

Javadoc

Destroy a proxy. It is up to the client to remove any pairs.

Popular methods of BroadPhase

  • createProxy
    Create a proxy with an initial AABB. Pairs are not reported until updatePairs is called.
  • 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
  • query
    Query an AABB for overlapping proxies. The callback class is called for each proxy that overlaps the
  • 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

  • Start an intent from android
  • scheduleAtFixedRate (ScheduledExecutorService)
  • notifyDataSetChanged (ArrayAdapter)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • JComboBox (javax.swing)
  • JOptionPane (javax.swing)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registery of org.quartz
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now