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

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

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

origin: us.ihmc/ihmc-simulation-toolkit-test

footsteps = testTurnStraightFootstepGenerator(testMessage, startX, startY, startYaw, null, pathDirection, endXDirection, endY, vis);
assertStepSide(testDescription, footsteps.get(0), expectedSide);
String message = "don't step too far, step: " + footsteps.get(0).getX() + ", allowed region: +/- " + stepWidth / 2;
assertTrue(message, (footsteps.get(0).getX() <= stepWidth / 2) && (footsteps.get(0).getX() >= -stepWidth / 2));
footsteps = testTurnStraightTurnFootstepGenerator(testMessage, startX, startY, startYaw, null, pathDirection, endXDirection, endY, endYaw, vis);
assertStepSide(testDescription, footsteps.get(0), expectedSide);
message = "don't step too far, step: " + footsteps.get(0).getX() + ", allowed region: +/- " + stepWidth / 2;
assertTrue(message, (footsteps.get(0).getX() <= stepWidth / 2) && (footsteps.get(0).getX() >= -stepWidth / 2));
origin: us.ihmc/IHMCHumanoidBehaviors

public void set(ArrayList<Footstep> footsteps, double swingTime, double transferTime)
{
 FootstepDataListMessage footstepDataList = new FootstepDataListMessage(swingTime,transferTime);
 for (int i = 0; i < footsteps.size(); i++)
 {
   Footstep footstep = footsteps.get(i);
   Point3d location = new Point3d(footstep.getX(), footstep.getY(), footstep.getZ());
   Quat4d orientation = new Quat4d();
   footstep.getOrientation(orientation);
   RobotSide footstepSide = footstep.getRobotSide();
   FootstepDataMessage footstepData = new FootstepDataMessage(footstepSide, location, orientation);
   footstepDataList.add(footstepData);
 }
 set(footstepDataList);
}
us.ihmc.humanoidRobotics.footstepFootstepgetX

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,
  • getOrientationInWorldFrame

Popular in Java

  • Finding current android device location
  • getSystemService (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • setRequestProperty (URLConnection)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JLabel (javax.swing)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top 12 Jupyter Notebook extensions
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