Tabnine Logo
ParticleController.getBoundingBox
Code IndexAdd Tabnine to your IDE (free)

How to use
getBoundingBox
method
in
com.badlogic.gdx.graphics.g3d.particles.ParticleController

Best Java code snippets using com.badlogic.gdx.graphics.g3d.particles.ParticleController.getBoundingBox (Showing top 3 results out of 315)

origin: libgdx/libgdx

/** @return the merged bounding box of all controllers. */
public BoundingBox getBoundingBox () {
  if (bounds == null) bounds = new BoundingBox();
  BoundingBox bounds = this.bounds;
  bounds.inf();
  for (ParticleController emitter : controllers)
    bounds.ext(emitter.getBoundingBox());
  return bounds;
}
origin: libgdx/libgdx

/** @return the merged bounding box of all controllers. */
public BoundingBox getBoundingBox () {
  if (bounds == null) bounds = new BoundingBox();
  BoundingBox bounds = this.bounds;
  bounds.inf();
  for (ParticleController emitter : controllers)
    bounds.ext(emitter.getBoundingBox());
  return bounds;
}
origin: com.badlogicgames.gdx/gdx

/** @return the merged bounding box of all controllers. */
public BoundingBox getBoundingBox () {
  if (bounds == null) bounds = new BoundingBox();
  BoundingBox bounds = this.bounds;
  bounds.inf();
  for (ParticleController emitter : controllers)
    bounds.ext(emitter.getBoundingBox());
  return bounds;
}
com.badlogic.gdx.graphics.g3d.particlesParticleControllergetBoundingBox

Popular methods of ParticleController

  • <init>
  • init
    Initialize the controller. All the sub systems will be initialized and binded to the controller. Mus
  • start
    Start the simulation.
  • copy
  • dispose
  • end
    End the simulation.
  • draw
    Updates the renderer used by this controller, usually this means the particles will be draw inside a
  • setTransform
    Sets the current transformation to the given one.
  • translate
    Postmultiplies the current transformation with a translation matrix represented by the given transla
  • update
    Updates the particles data
  • activateParticles
    Generally called by the Emitter. This method will notify all the sub systems that a given amount of
  • allocateChannels
  • activateParticles,
  • allocateChannels,
  • bind,
  • calculateBoundingBox,
  • findIndex,
  • findInfluencer,
  • isComplete,
  • killParticles,
  • load

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • notifyDataSetChanged (ArrayAdapter)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Join (org.hibernate.mapping)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top plugins for Android Studio
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