Codota Logo
Plotter.update
Code IndexAdd Codota to your IDE (free)

How to use
update
method
in
us.ihmc.plotting.Plotter

Best Java code snippets using us.ihmc.plotting.Plotter.update (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: us.ihmc/ihmc-swing-plotting

 @Override
 public void itemStateChanged(ItemEvent e)
 {
   String name = checkBox.getText();
   boolean visible = checkBox.isSelected();
   artifactList.get(name).setVisible(visible);
   plotter.update();
 }
});
origin: us.ihmc/Plotting

 @Override
 public void itemStateChanged(ItemEvent e)
 {
   String name = checkBox.getText();
   boolean visible = checkBox.isSelected();
   artifactList.get(name).setVisible(visible);
   plotter.update();
 }
});
origin: us.ihmc/ihmc-avatar-interfaces

plotters.get(nodeIndex).update();
origin: us.ihmc/ihmc-manipulation-planning

plotter.update();
updateCnt++;
origin: us.ihmc/ihmc-manipulation-planning

public void updateVisualizer(CTTaskNode newNode)
{
 String prefix = "wholenodes_" + configurationIndex + "" + updateCnt;
 if (newNode.getValidity())
 {
   if (newNode.getParentNode() != null)
   {
    CTTaskNode parentNode = newNode.getParentNode();
    LineArtifact lineArtifact = new LineArtifact(prefix + "_line",
                           new Point2D(parentNode.getNormalizedNodeData(0), parentNode.getNormalizedNodeData(configurationIndex)),
                           new Point2D(newNode.getNormalizedNodeData(0), newNode.getNormalizedNodeData(configurationIndex)));
    lineArtifact.setColor(Color.blue);
    plotter.addArtifact(lineArtifact);
   }
   CircleArtifact nodeArtifact = new CircleArtifact(prefix + "_valid", newNode.getNormalizedNodeData(0),
                           newNode.getNormalizedNodeData(configurationIndex), 0.0075, true);
   nodeArtifact.setColor(Color.blue);
   plotter.addArtifact(nodeArtifact);
 }
 else
 {
   CircleArtifact nodeArtifact = new CircleArtifact(prefix + "_invalid", newNode.getNormalizedNodeData(0),
                           newNode.getNormalizedNodeData(configurationIndex), 0.0075, true);
   nodeArtifact.setColor(Color.red);
   plotter.addArtifact(nodeArtifact);
 }
 plotter.update();
 updateCnt++;
}
us.ihmc.plottingPlotterupdate

Popular methods of Plotter

  • setViewRange
    Specify amount of meters that occupy view in X and Y.
  • <init>
  • addArtifact
  • getJPanel
  • setFocusPointX
  • setFocusPointY
  • addArtifactsChangedListener
  • showInNewWindow
  • setXYZoomEnabled
  • setPreferredSize
  • setShowLabels
  • calculateGridSizePixels
  • setShowLabels,
  • calculateGridSizePixels,
  • centerOnFocusPoint,
  • createAndAttachPlotterLegendPanel,
  • forAllArtifacts,
  • getArtifacts,
  • getPlotter2DAdapter,
  • getPlotterHeightPixels,
  • getPlotterWidthPixels

Popular in Java

  • Making http requests using okhttp
  • runOnUiThread (Activity)
  • putExtra (Intent)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • IsNull (org.hamcrest.core)
    Is the value null?
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