Merge pull request #468 from Project-Cepi/relative-vec-coordinate-type-getter

Add `getCoordinateType` to RelativeVec
This commit is contained in:
TheMode 2021-09-19 14:37:26 +02:00 committed by GitHub
commit cbc87a2a68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,10 @@ public final class RelativeVec {
this.relativeZ = relativeZ;
}
public @NotNull CoordinateType coordinateType() {
return this.coordinateType;
}
/**
* Gets the location based on the relative fields and {@code position}.
*