13
$\begingroup$

I need to make a frosted glass brick wall (see the example) for archvis picture. What is the best approach for it? Using just a cube with a texture of framing grout and glass shader for bricks will not make those clearly visible internal dividers on brick edges. Modelling the whole brick and making a wall from it will be time consuming and may probably lead to heavy geometry.

In both cases, a simple glass shader will absorb too much light for such a thick object, so what it is the better way for it?

frosted glass brick wall

$\endgroup$
3
  • 3
    $\begingroup$ I don't think you can avoid the geometry cost... $\endgroup$ Commented Jun 27, 2019 at 9:04
  • $\begingroup$ you can create your object and link-duplicate it, and add some water droplets to bring some variations, and about the shader maybe mix a Glass (with high Roughness and low IOS) with a Transparent shader, maybe try shaders like translucent, or Volume Scatter in the Volume input of the Material Output? Maybe also give it a bit of noise bump... $\endgroup$
    – moonboots
    Commented Jun 27, 2019 at 10:01
  • $\begingroup$ It reminds me of this beautiful building in Amsterdam : dezeen.com/2016/04/20/… $\endgroup$ Commented Jun 28, 2019 at 7:49

2 Answers 2

14
$\begingroup$

enter image description here

Geometry should not be an issue here, glass shaders are noisy by nature and will probably have a bigger impact in your scene. If you use this technique and take advantage of instancing feature the memory consumption benefits should help mitigate the number of objects.

Make a simple box mesh with the desired dimensions of your brick, make sure you apply the scale.

Add three material slots with the following order: Clear Glass, Mortar, Frosted Glass.

enter image description here

Create materials accordingly as desired and assign clear glass to both front and back faces, and mortar to the remaining four rim faces around them. Two simple glass shader with different roughness values should suffice for both glass materials.

Now add two modifiers. One Solidify with the desired thickness; adjust the material offset to $2$, so the inner layer becomes all frosted glass.

Now add a Bevel modifier, to add some roundness; adjust radius as desired.

enter image description here

Now array the bricks with whichever method you like.

enter image description here

  • Either use an Array modifier: Quick and simple, no optimization and higher memory use.
  • Manually duplicate the object around: Instancing gives memory benefits, but ads lots of individual objects which may slow down the viewport and pollute your scene, making it harder to manage.
  • Use a particle system/Duplifaces. Array a simple plane and use either particles or duplifaces to distribute bricks along the faces. Harder to setup, memory benefits, and less individual objects to manage in the scene, but may still slow down the viewport.

enter image description here

enter image description here

$\endgroup$
3
  • $\begingroup$ Distributing the bricks using duplifaces is a very smart idea! $\endgroup$
    – akashihi
    Commented Jun 27, 2019 at 11:37
  • $\begingroup$ More memory for an array? I thought they were instances, just with a bit of organisation.. I'm surprised.. $\endgroup$
    – Robin Betts
    Commented Jun 27, 2019 at 14:08
  • 2
    $\begingroup$ Array has no instancing optimizations, it just generates one big mesh, since you can't guarantee all items are exactly the same. With the Merge options it can even result in a single mesh with no separate parts. $\endgroup$ Commented Jun 27, 2019 at 14:22
0
$\begingroup$

you can model a brick and then bake it to a displacement or normal map and use that on a lower poly brick and then use 2 array modifiers on different axis to create the wall

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .