Compare commits
No commits in common. "77ef6a6e5625cec8c78b40f19836726cc4677099" and "fef41515382d5cbe8118c1f32452829d51078f30" have entirely different histories.
77ef6a6e56
...
fef4151538
|
@ -1,13 +1,6 @@
|
||||||
<component name="ProjectCodeStyleConfiguration">
|
<component name="ProjectCodeStyleConfiguration">
|
||||||
<code_scheme name="Project" version="173">
|
<code_scheme name="Project" version="173">
|
||||||
<codeStyleSettings language="JAVA">
|
<codeStyleSettings language="JAVA">
|
||||||
<option name="SPACE_BEFORE_IF_PARENTHESES" value="false" />
|
|
||||||
<option name="SPACE_BEFORE_WHILE_PARENTHESES" value="false" />
|
|
||||||
<option name="SPACE_BEFORE_FOR_PARENTHESES" value="false" />
|
|
||||||
<option name="SPACE_BEFORE_TRY_PARENTHESES" value="false" />
|
|
||||||
<option name="SPACE_BEFORE_CATCH_PARENTHESES" value="false" />
|
|
||||||
<option name="SPACE_BEFORE_SWITCH_PARENTHESES" value="false" />
|
|
||||||
<option name="SPACE_BEFORE_SYNCHRONIZED_PARENTHESES" value="false" />
|
|
||||||
<option name="CALL_PARAMETERS_LPAREN_ON_NEXT_LINE" value="true" />
|
<option name="CALL_PARAMETERS_LPAREN_ON_NEXT_LINE" value="true" />
|
||||||
<option name="CALL_PARAMETERS_RPAREN_ON_NEXT_LINE" value="true" />
|
<option name="CALL_PARAMETERS_RPAREN_ON_NEXT_LINE" value="true" />
|
||||||
<indentOptions>
|
<indentOptions>
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
package com.danitheskunk.skunkworks;
|
|
||||||
|
|
||||||
public final class Vec2f {
|
|
||||||
final double x, y;
|
|
||||||
|
|
||||||
//constructors
|
|
||||||
public Vec2f(double x, double y) {
|
|
||||||
this.x = x;
|
|
||||||
this.y = y;
|
|
||||||
}
|
|
||||||
|
|
||||||
//getters and setters
|
|
||||||
public double getX() {
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
|
|
||||||
public double getY() {
|
|
||||||
return y;
|
|
||||||
}
|
|
||||||
|
|
||||||
//static functions
|
|
||||||
public static Vec2f add(Vec2f a, Vec2f b) {
|
|
||||||
return new Vec2f(a.x + b.x, a.y + b.y);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Vec2f sub(Vec2f a, Vec2f b) {
|
|
||||||
return new Vec2f(a.x - b.x, a.y - b.y);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Vec2f mul(Vec2f a, double b) {
|
|
||||||
return new Vec2f(a.x * b, a.y * b);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Vec2f div(Vec2f a, double b) {
|
|
||||||
return new Vec2f(a.x / b, a.y / b);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,40 +0,0 @@
|
||||||
package com.danitheskunk.skunkworks;
|
|
||||||
|
|
||||||
public final class Vec2i {
|
|
||||||
final int x, y;
|
|
||||||
|
|
||||||
//constructors
|
|
||||||
|
|
||||||
public Vec2i(int x, int y) {
|
|
||||||
this.x = x;
|
|
||||||
this.y = y;
|
|
||||||
}
|
|
||||||
|
|
||||||
//getters and setters
|
|
||||||
|
|
||||||
public int getX() {
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getY() {
|
|
||||||
return y;
|
|
||||||
}
|
|
||||||
|
|
||||||
//static functions
|
|
||||||
|
|
||||||
public static Vec2i add(Vec2i a, Vec2i b) {
|
|
||||||
return new Vec2i(a.x + b.x, a.y + b.y);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Vec2i sub(Vec2i a, Vec2i b) {
|
|
||||||
return new Vec2i(a.x - b.x, a.y - b.y);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Vec2i mul(Vec2i a, int b) {
|
|
||||||
return new Vec2i(a.x * b, a.y * b);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Vec2i div(Vec2i a, int b) {
|
|
||||||
return new Vec2i(a.x / b, a.y / b);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue