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
this.getCommand("clock").setExecutor(this); |
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
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package me.thedeadlybutter.timeflip; | |
import java.awt.Color; | |
import java.awt.Graphics2D; | |
import java.util.Random; |
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
http://first.wpi.edu/FRC/java/netbeans/update/Release/updates.xml |
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
Testing |
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
list<int> usedNum; | |
main(){ | |
object1.number = getRandom(); | |
object2.number = getRandom(); | |
... etc | |
} |
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
package com.thevoxelbox.voxelguest.modules.regions; | |
import org.bukkit.Location; | |
import org.bukkit.Material; | |
import org.bukkit.util.Vector; | |
import javax.persistence.Column; | |
import javax.persistence.Entity; | |
import javax.persistence.Id; | |
import javax.persistence.Table; |
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
Delta: 1.3800000552000023E-6 | |
Delta: 1.200000048000002E-7 | |
Delta: 6.00000024000001E-8 | |
Delta: 0.0 | |
Delta: 6.00000024000001E-8 | |
Delta: 6.00000024000001E-8 | |
Delta: 0.0 | |
Delta: 6.00000024000001E-8 | |
Delta: 0.0 | |
Delta: 6.00000024000001E-8 |
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 render(Graphics2D g, int w, int h){ | |
g.setColor(Color.WHITE); | |
g.translate(x, y); | |
g.scale(z * scale, z * scale); | |
g.drawPolygon(frontCollision.xpoints, frontCollision.ypoints, frontCollision.npoints); | |
} |
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
g.setColor(Color.WHITE); | |
double newX = z * scale; | |
double newY = z * scale; | |
g.translate(newX - x, newY - y); | |
g.scale(newX, newY); | |
g.drawPolygon(frontCollision.xpoints, frontCollision.ypoints, frontCollision.npoints); |
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
/* Tutorial #1 - Picking variable names | |
* | |
* Created by Joe Kent(@thedeadlybutter) | |
*/ | |
// Visit http://www.babynames.com/Names/Popular/ | |
// Pick your favorite baby name, for example | |
var liam; |
OlderNewer