Package org.jbox2d.dynamics

Examples of org.jbox2d.dynamics.Profile$ProfileEntry


    return this.selectedProfile;
  }

  Config$ProfileEntry getSelectedProfile() {
    Config$ProfileEntry profile = (Config$ProfileEntry)this.profiles.get(this.getSelectedProfileName());

    if (profile == null) {
      profile = new Config$ProfileEntry();
      this.profiles.put(this.selectedProfile, profile);
    }

    return profile;
  }
View Full Code Here


    return profile;
  }

  Config$VersionEntry getSelectedVersion() {
    Config$ProfileEntry profile = this.getSelectedProfile();
    Config$VersionEntry version = (Config$VersionEntry)profile.versions.get(profile.version);

    if (version == null) {
      version = new Config$VersionEntry();
      profile.versions.put(profile.version, version);
View Full Code Here

  Map<String, String> getPatchedVersionMap() {
    HashMap map = new HashMap();
    Iterator i$ = this.profiles.values().iterator();

    while (i$.hasNext()) {
      Config$ProfileEntry profile = (Config$ProfileEntry)i$.next();
      profile.versions.remove((Object)null);
      profile.versions.remove("");
      Iterator i$1 = profile.versions.entrySet().iterator();

      while (i$1.hasNext()) {
View Full Code Here

          Color3f.WHITE);
      m_textLine += TEXT_LINE_SPACE;


      statsList.clear();
      Profile p = getWorld().getProfile();
      p.toDebugStrings(statsList);

      for (String s : statsList) {
        debugDraw.drawString(5, m_textLine, s, Color3f.WHITE);
        m_textLine += TEXT_LINE_SPACE;
      }
View Full Code Here

          Color3f.WHITE);
      m_textLine += TEXT_LINE_SPACE;


      statsList.clear();
      Profile p = getWorld().getProfile();
      p.toDebugStrings(statsList);

      for (String s : statsList) {
        debugDraw.drawString(5, m_textLine, s, Color3f.WHITE);
        m_textLine += TEXT_LINE_SPACE;
      }
View Full Code Here

TOP

Related Classes of org.jbox2d.dynamics.Profile$ProfileEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.