Codota Logo
Joint.saveBindPose
Code IndexAdd Codota to your IDE (free)

How to use
saveBindPose
method
in
com.jme3.anim.Joint

Best Java code snippets using com.jme3.anim.Joint.saveBindPose (Showing top 1 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: jMonkeyEngine/jmonkeyengine

/**
 * Saves the current Armature state as its bind pose.
 * Note that the bind pose is supposed to be the one where the armature is aligned with the mesh to deform.
 * Saving this pose will affect how skinning works.
 */
public void saveBindPose() {
  //make sure all bones are updated
  update();
  //Save the current pose as bind pose
  for (Joint joint : jointList) {
    joint.saveBindPose();
  }
}
com.jme3.animJointsaveBindPose

Javadoc

Sets the current localTransform as the Bind transform.

Popular methods of Joint

  • <init>
  • addChild
  • getLocalRotation
  • getLocalScale
  • getLocalTranslation
  • getName
  • setLocalTransform
  • setLocalTranslation
  • applyBindPose
    Sets the local transform with the bind transforms
  • applyInitialPose
    Sets the local transform with the initial transform
  • getAttachmentsNode
    Access the attachments node of this joint. If this joint doesn't already have an attachments node, c
  • getChildren
  • getAttachmentsNode,
  • getChildren,
  • getId,
  • getInverseModelBindMatrix,
  • getJointModelTransform,
  • getLocalTransform,
  • getModelTransform,
  • getOffsetTransform,
  • getParent

Popular in Java

  • Creating JSON documents from java classes using gson
  • getApplicationContext (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • runOnUiThread (Activity)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • PriorityQueue (java.util)
    An unbounded priority Queue based on a priority heap. The elements of the priority queue are ordered
  • JCheckBox (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