This file contains 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 class CubeRenderer{ | |
private static class Point3D{ | |
private double x, y, z; | |
public Point3D(double x, double y, double z){ | |
this.x = x; | |
this.y = y; | |
this.z = z; | |
} |
This file contains 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 javafx.application.Application; | |
import javafx.application.Platform; | |
import javafx.stage.Stage; | |
import javafx.scene.robot.Robot; | |
import javafx.animation.AnimationTimer; | |
import javafx.scene.input.MouseButton; | |
public class AutoClicker extends Application { | |
@Override | |
public void start(Stage stage) { |
This file contains 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 javafx.application.Application; | |
import javafx.stage.Stage; | |
import javafx.scene.Scene; | |
import javafx.scene.layout.StackPane; | |
import javafx.scene.canvas.*; | |
import javafx.scene.paint.Color; | |
import javafx.animation.*; | |
import javafx.util.Duration; | |
import javafx.scene.input.MouseButton; | |
import javafx.scene.input.KeyCode; |
This file contains 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
/** | |
* BMI (Body Mass Index) Calculator | |
* @author OrangoMango | |
* @version 1.0 | |
*/ | |
package com.orangomango.bmicalculator; | |
import java.text.DecimalFormat; | |
import java.text.NumberFormat; | |
import java.io.*; |
This file contains 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
<html> | |
<head> | |
<script src="script.js" type="text/javascript"> | |
</script> | |
<link rel="stylesheet" href="styles.css" /> |
This file contains 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
<html> | |
<head> | |
<script type="text/javascript" src="script.js"> | |
</script> | |
<link rel="stylesheet" href="styles.css"> |