Tabnine Logo
Ligature.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
jogamp.graph.font.typecast.ot.table.Ligature
constructor

Best Java code snippets using jogamp.graph.font.typecast.ot.table.Ligature.<init> (Showing top 2 results out of 315)

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

/** Creates new LigatureSet */
public LigatureSet(final DataInputStream dis, final int offset) throws IOException {
  dis.reset();
  dis.skipBytes(offset);
  _ligatureCount = dis.readUnsignedShort();
  _ligatureOffsets = new int[_ligatureCount];
  _ligatures = new Ligature[_ligatureCount];
  for (int i = 0; i < _ligatureCount; i++) {
    _ligatureOffsets[i] = dis.readUnsignedShort();
  }
  for (int i = 0; i < _ligatureCount; i++) {
    dis.reset();
    dis.skipBytes(offset + _ligatureOffsets[i]);
    _ligatures[i] = new Ligature(dis);
  }
}
origin: org.jogamp.jogl/jogl-all-noawt

/** Creates new LigatureSet */
public LigatureSet(final DataInputStream dis, final int offset) throws IOException {
  dis.reset();
  dis.skipBytes(offset);
  _ligatureCount = dis.readUnsignedShort();
  _ligatureOffsets = new int[_ligatureCount];
  _ligatures = new Ligature[_ligatureCount];
  for (int i = 0; i < _ligatureCount; i++) {
    _ligatureOffsets[i] = dis.readUnsignedShort();
  }
  for (int i = 0; i < _ligatureCount; i++) {
    dis.reset();
    dis.skipBytes(offset + _ligatureOffsets[i]);
    _ligatures[i] = new Ligature(dis);
  }
}
jogamp.graph.font.typecast.ot.tableLigature<init>

Javadoc

Creates new Ligature

Popular methods of Ligature

    Popular in Java

    • Reactive rest calls using spring rest template
    • setScale (BigDecimal)
    • getSupportFragmentManager (FragmentActivity)
    • compareTo (BigDecimal)
    • ObjectMapper (com.fasterxml.jackson.databind)
      ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
    • MalformedURLException (java.net)
      This exception is thrown when a program attempts to create an URL from an incorrect specification.
    • Socket (java.net)
      Provides a client-side TCP socket.
    • TreeMap (java.util)
      Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
    • StringUtils (org.apache.commons.lang)
      Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
    • LoggerFactory (org.slf4j)
      The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
    • Top Vim 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