Side plane texture of ConvexGeometry

Greetings!

I have 8 points (x,y,z) which represent a cell cube points, I made a box using new ConvexGeometry( points ), Can I set texture of each side plane of this convex box? I’m very new to this library , thank you for your help!

Are those points axis-aligned? If so, you can use BoxGeometry() to build a box (obviously :slight_smile: ), so you’ll be able to put 6 different materials on its sides.

1 Like

To clarify the original question: ConvexGeometry does not support this use case since the geometry has no groups data. Using BoxGeometry is indeed the better option.

1 Like