congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
YoGraphic.update
Code IndexAdd Tabnine to your IDE (free)

How to use
update
method
in
us.ihmc.graphicsDescription.yoGraphics.YoGraphic

Best Java code snippets using us.ihmc.graphicsDescription.yoGraphics.YoGraphic.update (Showing top 6 results out of 315)

origin: us.ihmc/ihmc-avatar-interfaces

public void update()
{
 for (YoGraphic yoGraphic : yoGraphicsList.getYoGraphics())
 {
   yoGraphic.update();
 }
}
origin: us.ihmc/IHMCAvatarInterfaces

public void update()
{
 for (YoGraphic yoGraphic : yoGraphicsList.getYoGraphics())
 {
   yoGraphic.update();
 }
}
origin: us.ihmc/IHMCRobotDataVisualizer

  private void updateYoGraphics()
  {
   if (yoGraphicsListRegistry == null)
     return;

   List<YoGraphicsList> yoGraphicsLists = yoGraphicsListRegistry.getYoGraphicsLists();
   for (YoGraphicsList yoGraphicsList : yoGraphicsLists)
   {
     ArrayList<YoGraphic> yoGraphics = yoGraphicsList.getYoGraphics();
     for (YoGraphic yoGraphic : yoGraphics)
      yoGraphic.update();
   }
   yoGraphicsListRegistry.update();
  }
}
origin: us.ihmc/ihmc-robot-data-visualizer

private void updateYoGraphics(YoGraphicsListRegistry yoGraphicsListRegistry)
{
 if (yoGraphicsListRegistry == null)
   return;
 List<YoGraphicsList> yoGraphicsLists = yoGraphicsListRegistry.getYoGraphicsLists();
 for (YoGraphicsList yoGraphicsList : yoGraphicsLists)
 {
   ArrayList<YoGraphic> yoGraphics = yoGraphicsList.getYoGraphics();
   for (YoGraphic yoGraphic : yoGraphics)
    yoGraphic.update();
 }
 yoGraphicsListRegistry.update();
}
origin: us.ihmc/IHMCRobotDataVisualizer

private void updateYoGraphics(YoGraphicsListRegistry yoGraphicsListRegistry)
{
 if (yoGraphicsListRegistry == null)
   return;
 List<YoGraphicsList> yoGraphicsLists = yoGraphicsListRegistry.getYoGraphicsLists();
 for (YoGraphicsList yoGraphicsList : yoGraphicsLists)
 {
   ArrayList<YoGraphic> yoGraphics = yoGraphicsList.getYoGraphics();
   for (YoGraphic yoGraphic : yoGraphics)
    yoGraphic.update();
 }
 yoGraphicsListRegistry.update();
}
origin: us.ihmc/ihmc-robot-data-visualizer

  private void updateYoGraphics()
  {
   if (yoGraphicsListRegistry == null)
     return;

   List<YoGraphicsList> yoGraphicsLists = yoGraphicsListRegistry.getYoGraphicsLists();
   for (YoGraphicsList yoGraphicsList : yoGraphicsLists)
   {
     ArrayList<YoGraphic> yoGraphics = yoGraphicsList.getYoGraphics();
     for (YoGraphic yoGraphic : yoGraphics)
      yoGraphic.update();
   }
   yoGraphicsListRegistry.update();
  }
}
us.ihmc.graphicsDescription.yoGraphicsYoGraphicupdate

Javadoc

Overwrite the update method if an object needs special updating. But it is up to each user to update their objects. The internals only update the position and orientation transform... This is generally use to update YoGraphics based on non-yovariablized data (referenceframes etc). Not doing this will break rewind-playback.

Popular methods of YoGraphic

  • hideGraphicObject
  • computeRotationTranslation
  • containsNaN
  • getName
  • isGraphicObjectShowing
  • setRootTransform
  • setVisible
  • showGraphicObject
  • toString
  • setGlobalScaleProvider

Popular in Java

  • Creating JSON documents from java classes using gson
  • setRequestProperty (URLConnection)
  • notifyDataSetChanged (ArrayAdapter)
  • getResourceAsStream (ClassLoader)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Sublime Text for Python
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now