OpenMinecraft.InfdevHandler.Local2Global C# (CSharp) Method

Local2Global() public method

public Local2Global ( int CX, int CZ, Vector3d local ) : Vector3d
CX int
CZ int
local Vector3d
return Vector3d
        public override Vector3d Local2Global(int CX, int CZ, Vector3d local)
        {
            Vector3d r = local;
            r.X += CX * ChunkX;
            r.Z += CZ * ChunkZ;
            return r;
        }
        public override Vector3d Global2Local(Vector3d global, out int CX, out int CZ)

Same methods

InfdevHandler::Local2Global ( int CX, int CZ, Vector3i local ) : Vector3i