Public operator interfaces

This commit is contained in:
TheMode 2021-07-05 11:39:51 +02:00
parent 799dbf4a61
commit 6275154997
2 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ public final class Pos implements Point {
}
@FunctionalInterface
interface Operator {
public interface Operator {
@NotNull Pos apply(double x, double y, double z);
}
}

View File

@ -391,7 +391,7 @@ public final class Vec implements Point {
}
@FunctionalInterface
interface Operator {
public interface Operator {
@NotNull Vec apply(double x, double y, double z);
}