Tabnine Logo
Footstep.getBody
Code IndexAdd Tabnine to your IDE (free)

How to use
getBody
method
in
us.ihmc.humanoidRobotics.footstep.Footstep

Best Java code snippets using us.ihmc.humanoidRobotics.footstep.Footstep.getBody (Showing top 2 results out of 315)

origin: us.ihmc/IHMCHumanoidRobotics

  public static List<FramePoint> calculateExpectedContactPoints(Footstep atFootstep, ContactablePlaneBody foot)
  {
   if (!atFootstep.getBody().getName().equals(foot.getRigidBody().getName()))
     throw new RuntimeException("The RigidBodies are not the same.");
   
   List<FramePoint> ret = foot.getContactPointsCopy();
   
   ReferenceFrame soleFrame = atFootstep.getSoleReferenceFrame();
   
   for (int i = 0; i < ret.size(); i++)
   {
     FramePoint contactPoint = ret.get(i);
     contactPoint.checkReferenceFrameMatch(foot.getSoleFrame());
     contactPoint.setIncludingFrame(soleFrame, contactPoint.getPoint());
   }

   return ret;
  }
}
origin: us.ihmc/DarpaRoboticsChallenge

footstep.getPose(footstepPose);
String name = footstep.getBody().getName();
YoFramePose contactPose = contactPosesHashMap.get(name);
YoFrameConvexPolygon2d contactPolygon = contactPolygonsHashMap.get(name);
us.ihmc.humanoidRobotics.footstepFootstepgetBody

Popular methods of Footstep

  • getRobotSide
  • <init>
  • getPose
  • getSoleReferenceFrame
  • getPredictedContactPoints
  • getZ
  • getPosition
  • getSolePose
  • setSwingHeight
  • setTrajectoryType
  • setZ
  • getFootstepPose
  • setZ,
  • getFootstepPose,
  • getFootstepType,
  • getSwingHeight,
  • getTrajectoryType,
  • setPose,
  • getCustomPositionWaypoints,
  • getOrientation,
  • getOrientationInWorldFrame

Popular in Java

  • Start an intent from android
  • setScale (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • getExternalFilesDir (Context)
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • 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
  • JTextField (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Github Copilot alternatives
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