Codota Logo
ParticleController.rotate
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain ParticleController
private void myMethod () {
ParticleController p =
  • Codota IconArray array;array.get(index)
  • Smart code suggestions by Codota
}
origin: libgdx/libgdx

/** Applies the rotation to the current transformation matrix of each controller. */
public void rotate (Quaternion rotation) {
  for (int i = 0, n = controllers.size; i < n; i++)
    controllers.get(i).rotate(rotation);
}
origin: libgdx/libgdx

/** Applies the rotation by the given angle around the given axis to the current transformation matrix of each controller.
 * @param axis the rotation axis
 * @param angle the rotation angle in degrees */
public void rotate (Vector3 axis, float angle) {
  for (int i = 0, n = controllers.size; i < n; i++)
    controllers.get(i).rotate(axis, angle);
}
origin: libgdx/libgdx

/** Applies the rotation to the current transformation matrix of each controller. */
public void rotate (Quaternion rotation) {
  for (int i = 0, n = controllers.size; i < n; i++)
    controllers.get(i).rotate(rotation);
}
origin: libgdx/libgdx

/** Applies the rotation by the given angle around the given axis to the current transformation matrix of each controller.
 * @param axis the rotation axis
 * @param angle the rotation angle in degrees */
public void rotate (Vector3 axis, float angle) {
  for (int i = 0, n = controllers.size; i < n; i++)
    controllers.get(i).rotate(axis, angle);
}
origin: com.badlogicgames.gdx/gdx

/** Applies the rotation by the given angle around the given axis to the current transformation matrix of each controller.
 * @param axis the rotation axis
 * @param angle the rotation angle in degrees */
public void rotate (Vector3 axis, float angle) {
  for (int i = 0, n = controllers.size; i < n; i++)
    controllers.get(i).rotate(axis, angle);
}
origin: com.badlogicgames.gdx/gdx

/** Applies the rotation to the current transformation matrix of each controller. */
public void rotate (Quaternion rotation) {
  for (int i = 0, n = controllers.size; i < n; i++)
    controllers.get(i).rotate(rotation);
}
com.badlogic.gdx.graphics.g3d.particlesParticleControllerrotate

Javadoc

Post-multiplies the current transformation with a rotation matrix represented by the given quaternion.

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,
  • getBoundingBox,
  • isComplete,
  • killParticles,
  • load

Popular in Java

  • Making http requests using okhttp
  • getExternalFilesDir (Context)
  • onCreateOptionsMenu (Activity)
  • runOnUiThread (Activity)
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Collectors (java.util.stream)
  • BoxLayout (javax.swing)
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