This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void statistics() | |
{ | |
if (statisticsOnOff) | |
{ | |
//Generate the plane containing the statistics | |
GL.Begin(PrimitiveType.Quads); | |
GL.TexCoord2(0f, 1f); GL.Vertex2(0f, 0f); | |
GL.TexCoord2(1f, 1f); GL.Vertex2(glControl1.Width, 0f); | |
GL.TexCoord2(1f, 0f); GL.Vertex2(glControl1.Width, glControl1.Height); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reading 200 jars | |
Total 2434 fields used | |
Total 3826 methods used | |
Fields: | |
+-----------------+------------------------------------------+--------+ | |
| Srg | Mapped (null == unmapped) | Usages | | |
+-----------------+------------------------------------------+--------+ | |
| field_150350_a | AIR | 14088 | | |
| field_77994_a | stackSize | 9572 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func_100008_d isDurationMax | |
func_100009_j_ getFacing | |
func_100011_g getIsPotionDurationMax | |
func_100012_b setPotionDurationMax | |
func_100015_a isKeyDown | |
func_102007_a canInsertItem | |
func_102008_b canExtractItem | |
func_102012_a insertStackFromInventory | |
func_102013_b canExtractItemFromInventory | |
func_102015_a canInsertItemToInventory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
public class Polynomial | |
{ | |
private static final double ROOT_LEEWAY = 0.000000001; | |
private double[] coefficients; | |
private double remainder; | |
public Polynomial(double[] coefficients, double remainder) | |
{ | |
this.coefficients = coefficients; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Arrays; | |
import java.util.Stack; | |
import java.util.LinkedList; | |
enum TokenType | |
{ | |
OPERATOR, RIGHT_PARENTHESE, LEFT_PARENTHESE, NUMBER, EQUALS, UNKNOWN | |
} | |
class Token |