Tabnine Logo
GaspRange
Code IndexAdd Tabnine to your IDE (free)

How to use
GaspRange
in
jogamp.graph.font.typecast.ot.table

Best Java code snippets using jogamp.graph.font.typecast.ot.table.GaspRange (Showing top 4 results out of 315)

origin: ch.unibas.cs.gravis/scalismo-native-stub

@Override
public String toString() {
  final StringBuilder sb = new StringBuilder();
  sb.append("'gasp' Table - Grid-fitting And Scan-conversion Procedure\n---------------------------------------------------------");
  sb.append("\n  'gasp' version:      ").append(version);
  sb.append("\n  numRanges:           ").append(numRanges);
  for (int i = 0; i < numRanges; i++) {
    sb.append("\n\n  gasp Range ").append(i).append("\n");
    sb.append(gaspRange[i].toString());
  }
  return sb.toString();
}
origin: ch.unibas.cs.gravis/scalismo-native-stub

/** Creates new GaspTable */
protected GaspTable(final DirectoryEntry de, final DataInput di) throws IOException {
  this.de = (DirectoryEntry) de.clone();
  version = di.readUnsignedShort();
  numRanges = di.readUnsignedShort();
  gaspRange = new GaspRange[numRanges];
  for (int i = 0; i < numRanges; i++) {
    gaspRange[i] = new GaspRange(di);
  }
}
origin: org.jogamp.jogl/jogl-all-noawt

/** Creates new GaspTable */
protected GaspTable(final DirectoryEntry de, final DataInput di) throws IOException {
  this.de = (DirectoryEntry) de.clone();
  version = di.readUnsignedShort();
  numRanges = di.readUnsignedShort();
  gaspRange = new GaspRange[numRanges];
  for (int i = 0; i < numRanges; i++) {
    gaspRange[i] = new GaspRange(di);
  }
}
origin: org.jogamp.jogl/jogl-all-noawt

@Override
public String toString() {
  final StringBuilder sb = new StringBuilder();
  sb.append("'gasp' Table - Grid-fitting And Scan-conversion Procedure\n---------------------------------------------------------");
  sb.append("\n  'gasp' version:      ").append(version);
  sb.append("\n  numRanges:           ").append(numRanges);
  for (int i = 0; i < numRanges; i++) {
    sb.append("\n\n  gasp Range ").append(i).append("\n");
    sb.append(gaspRange[i].toString());
  }
  return sb.toString();
}
jogamp.graph.font.typecast.ot.tableGaspRange

Most used methods

  • <init>
    Creates new GaspRange
  • toString

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • addToBackStack (FragmentTransaction)
  • String (java.lang)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • JFrame (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • CodeWhisperer alternatives
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