Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Is there any way to rotate VoxelShapes? I got various 12+ cube VoxelShapes blocks and it is.. frustrating to do it by hand like vanilla

 

I ended up doing a thingy to automate it

Edited by Afroman

  • 7 months later...

For anyone looking, the following code will rotate a VoxelShape around an axis:

public static VoxelShape rotateShape(Direction from, Direction to, VoxelShape shape) {
	VoxelShape[] buffer = new VoxelShape[]{ shape, VoxelShapes.empty() };

	int times = (to.getHorizontalIndex() - from.getHorizontalIndex() + 4) % 4;
	for (int i = 0; i < times; i++) {
		buffer[0].forEachBox((minX, minY, minZ, maxX, maxY, maxZ) -> buffer[1] = VoxelShapes.or(buffer[1], VoxelShapes.create(1-maxZ, minY, minX, 1-minZ, maxY, maxX)));
		buffer[0] = buffer[1];
		buffer[1] = VoxelShapes.empty();
	}

	return buffer[0];
}

 

Edited by wyn_price
Fixed mappings

  • 2 years later...

For anyone still wondering, here is the updated code for 1.19.3 with parchment mappings.

 

   public static VoxelShape rotateShape(Direction from, Direction to, VoxelShape shape) {
        VoxelShape[] buffer = new VoxelShape[]{shape, Shapes.empty()};

        int times = (to.ordinal() - from.get2DDataValue() + 4) % 4;
        for (int i = 0; i < times; i++) {
            buffer[0].forAllBoxes((minX, minY, minZ, maxX, maxY, maxZ) -> buffer[1] = Shapes.or(buffer[1], Shapes.create(1 - maxZ, minY, minX, 1 - minZ, maxY, maxX)));
            buffer[0] = buffer[1];
            buffer[1] = Shapes.empty();
        }

        return buffer[0];
    }

 

Guest
This topic is now closed to further replies.

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.