Codota Logo
SE3TrajectoryControllerCommand.setTrajectoryFrame
Code IndexAdd Codota to your IDE (free)

How to use
setTrajectoryFrame
method
in
us.ihmc.humanoidRobotics.communication.controllerAPI.command.SE3TrajectoryControllerCommand

Best Java code snippets using us.ihmc.humanoidRobotics.communication.controllerAPI.command.SE3TrajectoryControllerCommand.setTrajectoryFrame (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: us.ihmc/ihmc-humanoid-robotics

public static void convertToSE3(SO3TrajectoryControllerCommand command, SE3TrajectoryControllerCommand commandToPack)
{
 commandToPack.setQueueableCommandVariables(command);
 commandToPack.setTrajectoryFrame(command.getTrajectoryFrame());
 commandToPack.getSelectionMatrix().clearLinearSelection();
 commandToPack.getSelectionMatrix().setAngularPart(command.getSelectionMatrix());
 commandToPack.getWeightMatrix().clearLinearWeights();
 commandToPack.getWeightMatrix().setAngularPart(command.getWeightMatrix());
 commandToPack.setUseCustomControlFrame(command.useCustomControlFrame());
 commandToPack.setControlFramePose(command.getControlFramePose());
 commandToPack.getTrajectoryPointList().setToOrientationTrajectoryIncludingFrame(command.getTrajectoryPointList());
}
origin: us.ihmc/ihmc-humanoid-robotics

public static void convertToSE3(EuclideanTrajectoryControllerCommand command, SE3TrajectoryControllerCommand commandToPack)
{
 commandToPack.setQueueableCommandVariables(command);
 commandToPack.setTrajectoryFrame(command.getTrajectoryFrame());
 commandToPack.getSelectionMatrix().clearAngularSelection();
 commandToPack.getSelectionMatrix().setLinearPart(command.getSelectionMatrix());
 commandToPack.getWeightMatrix().clearAngularWeights();
 commandToPack.getWeightMatrix().setLinearPart(command.getWeightMatrix());
 commandToPack.setUseCustomControlFrame(command.useCustomControlFrame());
 commandToPack.setControlFramePose(command.getControlFramePose());
 commandToPack.getTrajectoryPointList().setToPositionTrajectoryIncludingFrame(command.getTrajectoryPointList());
}
origin: us.ihmc/ihmc-avatar-interfaces-test

footTrajectoryCommand.getSE3Trajectory().setTrajectoryFrame(ReferenceFrame.getWorldFrame());
queuedControllerCommands.add(footTrajectoryCommand);
us.ihmc.humanoidRobotics.communication.controllerAPI.commandSE3TrajectoryControllerCommandsetTrajectoryFrame

Popular methods of SE3TrajectoryControllerCommand

  • set
  • <init>
  • getSelectionMatrix
  • clear
  • getNumberOfTrajectoryPoints
    Convenience method for accessing #trajectoryPointList. To get the list use #getTrajectoryPointList()
  • isCommandValid
  • setPropertiesOnly
    Same as #set(SE3TrajectoryControllerCommand) but does not change the trajectory points.
  • addTrajectoryPoint
    Convenience method for accessing #trajectoryPointList. To get the list use #getTrajectoryPointList()
  • clearQueuableCommandVariables
  • epsilonEquals
  • executionModeValid
  • getCommandId
  • executionModeValid,
  • getCommandId,
  • getControlFramePose,
  • getDataFrame,
  • getExecutionDelayTime,
  • getExecutionMode,
  • getExecutionTime,
  • getPreviousCommandId,
  • getTrajectoryFrame

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • notifyDataSetChanged (ArrayAdapter)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Socket (java.net)
    Provides a client-side TCP socket.
  • TreeSet (java.util)
    A NavigableSet implementation based on a TreeMap. The elements are ordered using their Comparable, o
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Table (org.hibernate.mapping)
    A relational table
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