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

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

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

origin: us.ihmc/ihmc-common-walking-control-modules-test

plotter.setViewRange(range);
plotter.setFocusPointX(focus.getX());
plotter.setFocusPointY(focus.getY());
origin: us.ihmc/ihmc-avatar-interfaces

boolPlotter.setFocusPointY((double) 80);
boolPlotter.setViewRange(200);
origin: us.ihmc/DarpaRoboticsChallenge

boolPlotter.setFocusPointY((double) 80);
boolPlotter.setViewRange(200);
origin: us.ihmc/IHMCAvatarInterfaces

boolPlotter.setFocusPointY((double) 80);
boolPlotter.setViewRange(200);
origin: us.ihmc/ihmc-swing-plotting

 adjustingViewRangeMin = Optional.of(new Point2D(point2D));
 plotter.setFocusPointX(point2D.getX());
 plotter.setFocusPointY(point2D.getY());
 return;
plotter.setFocusPointY(adjustingViewRangeMin.get().getY() + ((adjustingViewRangeMax.get().getY() - adjustingViewRangeMin.get().getY()) / 2.0));
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;
}
us.ihmc.plottingPlottersetFocusPointY

Popular methods of Plotter

  • setViewRange
    Specify amount of meters that occupy view in X and Y.
  • <init>
  • addArtifact
  • getJPanel
  • setFocusPointX
  • addArtifactsChangedListener
  • showInNewWindow
  • setXYZoomEnabled
  • update
  • setPreferredSize
  • setShowLabels
  • calculateGridSizePixels
  • setShowLabels,
  • 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)
  • Top Sublime Text plugins
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