Class DebugTools

java.lang.Object
com.jme3.bullet.debug.DebugTools

public class DebugTools extends Object
Debugging aids.

This class is shared between JBullet and Native Bullet.

  • Field Details Link icon

    • manager Link icon

      protected final AssetManager manager
    • DEBUG_BLUE Link icon

      public Material DEBUG_BLUE
      unshaded blue material
    • DEBUG_RED Link icon

      public Material DEBUG_RED
      unshaded red material
    • DEBUG_GREEN Link icon

      public Material DEBUG_GREEN
      unshaded green material
    • DEBUG_YELLOW Link icon

      public Material DEBUG_YELLOW
      unshaded yellow material
    • DEBUG_MAGENTA Link icon

      public Material DEBUG_MAGENTA
      unshaded magenta material
    • DEBUG_PINK Link icon

      public Material DEBUG_PINK
      unshaded pink material
    • debugNode Link icon

      public Node debugNode
      node for attaching debug geometries
    • arrowBlue Link icon

      public Arrow arrowBlue
      mesh for the blue arrow
    • arrowBlueGeom Link icon

      public Geometry arrowBlueGeom
      geometry for the blue arrow
    • arrowGreen Link icon

      public Arrow arrowGreen
      mesh for the green arrow
    • arrowGreenGeom Link icon

      public Geometry arrowGreenGeom
      geometry for the green arrow
    • arrowRed Link icon

      public Arrow arrowRed
      mesh for the red arrow
    • arrowRedGeom Link icon

      public Geometry arrowRedGeom
      geometry for the red arrow
    • arrowMagenta Link icon

      public Arrow arrowMagenta
      mesh for the magenta arrow
    • arrowMagentaGeom Link icon

      public Geometry arrowMagentaGeom
      geometry for the magenta arrow
    • arrowYellow Link icon

      public Arrow arrowYellow
      mesh for the yellow arrow
    • arrowYellowGeom Link icon

      public Geometry arrowYellowGeom
      geometry for the yellow arrow
    • arrowPink Link icon

      public Arrow arrowPink
      mesh for the pink arrow
    • arrowPinkGeom Link icon

      public Geometry arrowPinkGeom
      geometry for the pink arrow
    • UNIT_X_CHECK Link icon

      protected static final Vector3f UNIT_X_CHECK
      local copy of Vector3f.UNIT_X
    • UNIT_Y_CHECK Link icon

      protected static final Vector3f UNIT_Y_CHECK
      local copy of Vector3f.UNIT_Y
    • UNIT_Z_CHECK Link icon

      protected static final Vector3f UNIT_Z_CHECK
      local copy of Vector3f.UNIT_Z
    • UNIT_XYZ_CHECK Link icon

      protected static final Vector3f UNIT_XYZ_CHECK
      local copy of Vector3f.UNIT_XYZ
    • ZERO_CHECK Link icon

      protected static final Vector3f ZERO_CHECK
      local copy of Vector3f.ZERO
  • Constructor Details Link icon

    • DebugTools Link icon

      public DebugTools(AssetManager manager)
      Instantiate a set of debug tools.
      Parameters:
      manager - for loading assets (not null, alias created)
  • Method Details Link icon

    • show Link icon

      public void show(RenderManager rm, ViewPort vp)
      Render all the debug geometries to the specified view port.
      Parameters:
      rm - the render manager (not null)
      vp - the view port (not null)
    • setBlueArrow Link icon

      public void setBlueArrow(Vector3f location, Vector3f extent)
      Alter the location and extent of the blue arrow.
      Parameters:
      location - the coordinates of the tail (not null, unaffected)
      extent - the offset of the tip from the tail (not null, unaffected)
    • setGreenArrow Link icon

      public void setGreenArrow(Vector3f location, Vector3f extent)
      Alter the location and extent of the green arrow.
      Parameters:
      location - the coordinates of the tail (not null, unaffected)
      extent - the offset of the tip from the tail (not null, unaffected)
    • setRedArrow Link icon

      public void setRedArrow(Vector3f location, Vector3f extent)
      Alter the location and extent of the red arrow.
      Parameters:
      location - the coordinates of the tail (not null, unaffected)
      extent - the offset of the tip from the tail (not null, unaffected)
    • setMagentaArrow Link icon

      public void setMagentaArrow(Vector3f location, Vector3f extent)
      Alter the location and extent of the magenta arrow.
      Parameters:
      location - the coordinates of the tail (not null, unaffected)
      extent - the offset of the tip from the tail (not null, unaffected)
    • setYellowArrow Link icon

      public void setYellowArrow(Vector3f location, Vector3f extent)
      Alter the location and extent of the yellow arrow.
      Parameters:
      location - the coordinates of the tail (not null, unaffected)
      extent - the offset of the tip from the tail (not null, unaffected)
    • setPinkArrow Link icon

      public void setPinkArrow(Vector3f location, Vector3f extent)
      Alter the location and extent of the pink arrow.
      Parameters:
      location - the coordinates of the tail (not null, unaffected)
      extent - the offset of the tip from the tail (not null, unaffected)
    • setupDebugNode Link icon

      protected void setupDebugNode()
      Attach all the debug geometries to the debug node.
    • setupMaterials Link icon

      protected void setupMaterials()
      Initialize all the DebugTools materials.