Tabnine Logo
ParticleSystem.joinParticleGroups
Code IndexAdd Tabnine to your IDE (free)

How to use
joinParticleGroups
method
in
org.jbox2d.particle.ParticleSystem

Best Java code snippets using org.jbox2d.particle.ParticleSystem.joinParticleGroups (Showing top 4 results out of 315)

origin: libgdx/libgdx

/**
 * Join two particle groups.
 * 
 * @param the first group. Expands to encompass the second group.
 * @param the second group. It is destroyed.
 * @warning This function is locked during callbacks.
 */
public void joinParticleGroups(ParticleGroup groupA, ParticleGroup groupB) {
 assert (isLocked() == false);
 if (isLocked()) {
  return;
 }
 m_particleSystem.joinParticleGroups(groupA, groupB);
}
origin: jbox2d/jbox2d

/**
 * Join two particle groups.
 * 
 * @param the first group. Expands to encompass the second group.
 * @param the second group. It is destroyed.
 * @warning This function is locked during callbacks.
 */
public void joinParticleGroups(ParticleGroup groupA, ParticleGroup groupB) {
 assert (isLocked() == false);
 if (isLocked()) {
  return;
 }
 m_particleSystem.joinParticleGroups(groupA, groupB);
}
origin: com.github.almasb/fxgl-physics

/**
 * Join two particle groups. This function is locked during callbacks.
 *
 * @param groupA the first group. Expands to encompass the second group.
 * @param groupB the second group. It is destroyed.
 */
public void joinParticleGroups(ParticleGroup groupA, ParticleGroup groupB) {
  assertNotLocked();
  particleSystem.joinParticleGroups(groupA, groupB);
}
origin: andmizi/MobikeTags

/**
 * Join two particle groups.
 * 
 * @param the first group. Expands to encompass the second group.
 * @param the second group. It is destroyed.
 * @warning This function is locked during callbacks.
 */
public void joinParticleGroups(ParticleGroup groupA, ParticleGroup groupB) {
 assert (isLocked() == false);
 if (isLocked()) {
  return;
 }
 m_particleSystem.joinParticleGroups(groupA, groupB);
}
org.jbox2d.particleParticleSystemjoinParticleGroups

Popular methods of ParticleSystem

  • <init>
  • RotateBuffer
  • addContact
  • computeDepthForGroup
  • computeParticleCollisionEnergy
  • computeRelativeTag
  • computeTag
  • createParticle
  • createParticleGroup
  • destroyParticle
  • destroyParticleGroup
  • destroyParticlesInGroup
  • destroyParticleGroup,
  • destroyParticlesInGroup,
  • destroyParticlesInShape,
  • getCriticalPressure,
  • getCriticalVelocity,
  • getCriticalVelocitySquared,
  • getParticleColorBuffer,
  • getParticleCount,
  • getParticleDamping,
  • getParticleDensity

Popular in Java

  • Updating database using SQL prepared statement
  • setRequestProperty (URLConnection)
  • requestLocationUpdates (LocationManager)
  • setScale (BigDecimal)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Join (org.hibernate.mapping)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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