Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/boxbeam/RedLib
/ BlockPosition
Method
BlockPosition
src/redempt/redlib/blockdata/BlockPosition.java:15–19 ·
view source on GitHub ↗
(int x, int y, int z)
Source
from the content-addressed store, hash-verified
13
private
final
int
z;
14
15
public
BlockPosition(
int
x,
int
y,
int
z) {
16
this.x = x;
17
this.y = y;
18
this.z = z;
19
}
20
21
public
BlockPosition(Block block) {
22
this(block.getX(), block.getY(), block.getZ());
Callers
nothing calls this directly
Calls
3
getY
Method · 0.80
getX
Method · 0.45
getZ
Method · 0.45
Tested by
no test coverage detected