Tabnine Logo
PlanarRegionFileTools.writePlanarRegionsData
Code IndexAdd Tabnine to your IDE (free)

How to use
writePlanarRegionsData
method
in
us.ihmc.robotics.PlanarRegionFileTools

Best Java code snippets using us.ihmc.robotics.PlanarRegionFileTools.writePlanarRegionsData (Showing top 1 results out of 315)

origin: us.ihmc/ihmc-robotics-toolkit

/**
* Creates a directory with the given path and export into files the data contained in
* {@code planarRegionData}.
*
* @param folderPath the path of the folder that will contain the exported files.
* @param planarRegionData the planar regions to be exported to files. Not modified.
* @return whether the exportation succeeded or not.
*/
public static boolean exportPlanarRegionData(Path folderPath, PlanarRegionsList planarRegionData)
{
 try
 {
   Files.createDirectories(folderPath);
   writePlanarRegionsData(folderPath, planarRegionData);
   return true;
 }
 catch (IOException e)
 {
   e.printStackTrace();
   return false;
 }
}
us.ihmc.roboticsPlanarRegionFileToolswritePlanarRegionsData

Popular methods of PlanarRegionFileTools

  • importPlanarRegionData
    Load from the given data folder planar region data that has been previously exported via #exportPlan
  • createDefaultTimeStampedFolderName
    Generates a default timestamped name that can be used to generate automated and unique folders.
  • exportPlanarRegionData
    Creates a directory with the given path and export into files the data contained in planarRegionData
  • listResourceDirectoryContents
  • getDate
    Generates a String representing the data & time as of right now, like just right now.
  • fileFromClassPath
  • getResourceFile
  • getResourceURL
  • importPlanarRegionDataInternal
  • importPlanarRegionDataInternalForTests
  • isPlanarRegionFile
  • isWindows
  • isPlanarRegionFile,
  • isWindows,
  • loadPlanarRegionVertices,
  • readHeaderLine,
  • writePlanarRegionVertices

Popular in Java

  • Running tasks concurrently on multiple threads
  • getContentResolver (Context)
  • getSupportFragmentManager (FragmentActivity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • JFileChooser (javax.swing)
  • Option (scala)
  • Top 12 Jupyter Notebook extensions
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