Tabnine Logo
Plotter.setShowLabels
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: us.ihmc/ihmc-manipulation-planning

public CTNodeVisualizer(String ctaskName, int configurationIndex, boolean enabled)
{
 this.ctaskName = ctaskName;
 this.plotter = new Plotter();
 this.configurationIndex = configurationIndex;
 /*
  * zoom- always normalized.
  */
 plotter.setPreferredSize(700, 700);
 plotter.setViewRange(1.5);
 plotter.setXYZoomEnabled(true);
 plotter.setShowLabels(true);
 plotter.setFocusPointX(0.5);
 plotter.setFocusPointY(0.5);
 this.enabled = enabled;
}
origin: us.ihmc/ihmc-avatar-interfaces

public SpatialNodePlotter(WholeBodyTrajectoryToolboxData toolboxData, boolean enabled)
{
 this.dimensionOfConfigurations = toolboxData.getExplorationDimension();
 this.upperLimits = new double[dimensionOfConfigurations];
 this.lowerLimits = new double[dimensionOfConfigurations];
 this.trajectoryTime = toolboxData.getTrajectoryTime();
 for (int i = 0; i < dimensionOfConfigurations; i++)
 {
   Plotter plotter = new Plotter();
   plotter.setPreferredSize(400, 600);
   plotter.setViewRange(2.0);
   plotter.setXYZoomEnabled(true);
   plotter.setShowLabels(true);
   plotter.setFocusPointX(0.5);
   plotter.setFocusPointY(0.0);
   plotters.add(plotter);
   upperLimits[i] = Double.NEGATIVE_INFINITY;
   lowerLimits[i] = Double.POSITIVE_INFINITY;
   String plotterName = toolboxData.createRandomSpatialData().getConfigurationNames().get(i);
   isFrameEnabled = enabled;
   if (enabled)
    plotter.showInNewWindow(plotterName, false);
 }
 cnt = 0;
}
origin: us.ihmc/simulation-construction-set-test

plotter.setRotationEnabled(true);
plotter.setShowLabels(true);
us.ihmc.plottingPlottersetShowLabels

Popular methods of Plotter

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

Popular in Java

  • Making http requests using okhttp
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setRequestProperty (URLConnection)
  • setScale (BigDecimal)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Reference (javax.naming)
  • JTable (javax.swing)
  • Best plugins for Eclipse
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