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

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

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

origin: us.ihmc/IHMCHumanoidRobotics

public AdjustFootstepMessage(Footstep footstep)
{
 uniqueId = VALID_MESSAGE_DEFAULT_ID;
 origin = FootstepOrigin.AT_ANKLE_FRAME;
 robotSide = footstep.getRobotSide();
 location = new Point3d();
 orientation = new Quat4d();
 footstep.getPositionInWorldFrame(location);
 footstep.getOrientationInWorldFrame(orientation);
 List<Point2d> footstepContactPoints = footstep.getPredictedContactPoints();
 if (footstepContactPoints != null)
 {
   if (predictedContactPoints == null)
   {
    predictedContactPoints = new ArrayList<>();
   }
   else
   {
    predictedContactPoints.clear();
   }
   for (Point2d contactPoint : footstepContactPoints)
   {
    predictedContactPoints.add((Point2d) contactPoint.clone());
   }
 }
 else
 {
   predictedContactPoints = null;
 }
}
origin: us.ihmc/IHMCHumanoidRobotics

orientation = new Quat4d();
footstep.getPositionInWorldFrame(location);
footstep.getOrientationInWorldFrame(orientation);
origin: us.ihmc/CommonWalkingControlModules

  private void printFootstepConstructor(Footstep footstep)
  {
   RobotSide robotSide = footstep.getRobotSide();
   Point3d position = new Point3d();
   footstep.getPositionInWorldFrame(position);
   Quat4d orientation = new Quat4d();
   footstep.getOrientationInWorldFrame(orientation);

   System.out.println("footsteps.add(footstepProviderTestHelper.createFootstep(RobotSide." + robotSide + ", new Point3d(" + position.getX() + ", "
      + position.getY() + ", " + position.getZ() + "), new Quat4d(" + orientation.getW() + ", " + orientation.getX() + ", " + orientation.getY() + ", "
      + orientation.getZ() + ")));");
  }
}
us.ihmc.humanoidRobotics.footstepFootstepgetOrientationInWorldFrame

Popular methods of Footstep

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

Popular in Java

  • Making http post requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • getSystemService (Context)
  • setContentView (Activity)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JButton (javax.swing)
  • From CI to AI: The AI layer in your organization
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