The plywood that bends in two and three dimensions — the seat-and-back of a Charles and Ray Eames LCW chair, the cantilevered frame of an Alvar Aalto Paimio chair, the lounger of a Bruno Mathsson, the bent stool of a Marcel Breuer Isokon long chair. Made by stacking thin wood veneers with grain direction alternated, brushing the stack with adhesive, and pressing the whole sandwich over a curved mould while the glue cures. The result is a single seamless wooden shell that can be both structural and the visible surface — no joints, no fasteners, no upholstery required to make the shape work. Birch is the canonical species (the Aalto / Eames / Isokon tradition); maple, beech, and walnut faces are common in modern production.
Three-dimensionally moulded engineered-wood panel made by stacking thin (0.6–1.5 mm) cross-grain rotary-cut veneers, applying urea-formaldehyde or modern PVA adhesive between each ply, and compression-moulding the stack over a male-female matched die at 80–140 °C and 0.5–1.5 MPa for 5–30 minutes per pressing. Five to thirteen plies typical for furniture; thicker stacks (15+ plies) for structural seat shells. The achievable curvature is bounded by the radius the veneer can take without checking — typically 50 mm minimum bend radius for 0.6 mm birch ply, looser for thicker stacks. Compound (double-curvature) moulding requires either short-fiber veneers (1.0 mm thick) or supplementary sliced reinforcing cross-bands between the face plies. Adhesive choice governs end-use: urea-formaldehyde (UF) is interior-grade and the historical canonical glue (cheap, cures fast, slight formaldehyde off-gas during cure); melamine-urea-formaldehyde (MUF) is moisture-resistant intermediate grade; phenol-formaldehyde (PF, the same glue as marine plywood) is the only fully waterproof and outdoor-rated option and is used for moulded boat panels rather than chairs. Density 600–720 kg/m³ depending on species (higher for European beech, lower for African okoume). Modulus of rupture 70–90 MPa across face grain, shear strength 1.5–2.0 MPa at the glue line. Surface is the face veneer (typically a clear-grade hardwood — birch, maple, walnut, oak — sliced or rotary-cut). Finished by lacquer, oil, or wax; not painted in the canonical examples (the wood grain is part of the design signature). The Charles and Ray Eames moulded-plywood program at Evans Products / Plyformed Wood / Herman Miller (1942–1946) developed the splints, stretchers, and ultimately the LCW chair using the company-developed Kazam! press — a heated rubber bag that conforms a stack of veneers to a male mould under uniform pressure. The Eames program gave moulded plywood its modern furniture vocabulary; Aalto's Artek had developed the cantilevered Paimio frame (Model 41) in 1932, fourteen years earlier.
Metal was not the only material to encourage the emergence of a modern furniture aesthetic. New forms of machine-processed wood, such as bent and sheet plywood and laminated wood, also encouraged designers to experiment with new forms. The Scandinavian designers Alvar Aalto and Bruno Mathsson provided some of the most striking experiments in this area, and Marcel Breuer, working for the British company Isokon, also produced some memorable items.
Principled BSDF defaults derived from the sphere woodgrain finish. Reasonable seed for Blender, Substance, Keyshot, Rhino — tune per material. Or grab the whole library at once: ForMaterials library →
# finish: woodgrain albedo #9a6a3c metallic 0.00 roughness 0.60 ior 1.45 transmission 0.00 clearcoat 0.00 sheen 0.00 anisotropic 0.60
{
"albedo": "#9a6a3c",
"metallic": 0.0,
"roughness": 0.6,
"ior": 1.45,
"transmission": 0.0,
"clearcoat": 0.0,
"sheen": 0.0,
"anisotropic": 0.6
}
# Blender 4.x — Principled BSDF
# Moulded Plywood (bent / laminated furniture grade) · finish: woodgrain
import bpy
mat = bpy.data.materials.new(name="mat_plywood_moulded")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value = (0.3231, 0.1441, 0.0452, 1.0)
bsdf.inputs["Metallic"].default_value = 0.000
bsdf.inputs["Roughness"].default_value = 0.600
bsdf.inputs["IOR"].default_value = 1.450
bsdf.inputs["Transmission Weight"].default_value = 0.000
bsdf.inputs["Coat Weight"].default_value = 0.000
bsdf.inputs["Sheen Weight"].default_value = 0.000
bsdf.inputs["Anisotropic"].default_value = 0.600
# KeyShot 11+ — lux Python API, Generic material
# Moulded Plywood (bent / laminated furniture grade) · finish: woodgrain
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_plywood_moulded", materialType="Generic")
mat.setProperty("diffuse", (154, 106, 60)) # 8-bit sRGB
mat.setProperty("metallic", 0.000)
mat.setProperty("roughness", 0.600)
mat.setProperty("indexOfRefraction", 1.450)
mat.setProperty("transparency", 0.000)
mat.setProperty("coatingWeight", 0.000)
{
"_format": "Substance Designer / Painter \u2014 pbrMetalRough constants",
"_about": "Moulded Plywood (bent / laminated furniture grade) \u00b7 finish: woodgrain",
"baseColor": {
"r": 0.3231,
"g": 0.1441,
"b": 0.0452
},
"metallic": 0.0,
"roughness": 0.6,
"ior": 1.45,
"opacity": 1.0,
"anisotropyLevel": 0.6,
"_notes": "Channels listed are the standard Substance pbrMetalRough output. Drop into a Uniform Color node per channel, or as the constant input on a layered stack."
}
{
"asset": {
"version": "2.0",
"generator": "ForMatter"
},
"materials": [
{
"name": "mat_plywood_moulded",
"pbrMetallicRoughness": {
"baseColorFactor": [
0.3231,
0.1441,
0.0452,
1.0
],
"metallicFactor": 0.0,
"roughnessFactor": 0.6
},
"extensions": {
"KHR_materials_ior": {
"ior": 1.45
}
}
}
]
}
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# Moulded Plywood (bent / laminated furniture grade) · finish: woodgrain
def Material "mat_plywood_moulded" {
token outputs:surface.connect = </mat_plywood_moulded/PreviewSurface.outputs:surface>
def Shader "PreviewSurface" {
uniform token info:id = "UsdPreviewSurface"
color3f inputs:diffuseColor = (0.3231, 0.1441, 0.0452)
float inputs:metallic = 0.000
float inputs:roughness = 0.600
float inputs:ior = 1.450
float inputs:opacity = 1.000
float inputs:clearcoat = 0.000
token outputs:surface
}
}
USDA Forest Products Lab plywood section; Herman Miller Eames-furniture technical literature.
Compression-moulded birch plywood with hardwood veneer. Design arose from wartime experiments moulding plywood for US Navy leg splints under the Eames Office's contract with the US Navy via Evans Products and Plyformed Wood Company; commercialized after the war by Herman Miller.
House vocabulary — terms ForMatter uses with intent.
Materials and processes for people who design and make things.
A local-first library of materials, processes, applications, and finishes — equal weight, citable everywhere, with cost-over-volume curves, trade-off profiles, equipment-tier filters, and second-life paths layered onto the data so a student can move from "what is this" toward "what's actually buildable here, now, by me." Part of the renato.design ecosystem — sibling of Plenum, Specimen, Ingenue, gesture, graf, and the Renato Rhino plug-ins. Form and matter, inseparable.
Half of teaching materials is teaching how the material is made into the thing. The standard subscription library was always light on that half. The wedge here isn't better samples or a prettier interface — it's treating Process as a peer entity, not a footnote.
Conway's Material World on raw materials, Lefteri's Making It on processes, Forty's Concrete and Culture, Sparke's Design in Context, Bürdek's Design: History, Theory and Practice of Product Design, Schröpfer's Material Design on materials in architecture, Winchester's The Perfectionists on tolerance, Minshall's Your Life Is Manufactured on the global supply chain, von Busch's Making Trouble on material activism, Were's How Materials Matter, Hegger / Drexler / Zeumer's Basics Materials, Untracht and McCreight on metalsmithing, USDA Forest Products Lab on woods, GIA on gemstones, Schott / CoorsTek / Toray / Owens Corning datasheets, MakeItFrom for verifiable property numbers, ASM Handbook, ISO standards. Museum holdings draw from the Met, MAD, V&A, Smithsonian American Art Museum, Newark Museum of Art, British Museum, Heard Museum, Smithsonian NMAI, Eiteljorg Museum, Philadelphia Museum of Art, Cranbrook Art Museum, and Grand Rapids Art Museum — collection-record permalinks only, designer overview pages and exhibition listings excluded. Voice blocks now ride on every entry kind — material, process, application, and finish — and include Ruskin on iron, Anni Albers on twining, Greg Lynn on the shred-and-teeth NURBS lineage, Pugin on the metal that won't be hammered, Barthes / Yanagi / Benjamin channeled within their philosophy; Sparke, Bürdek, Forty, Conway, Schröpfer, Minshall, von Busch, Lefteri, Pat Pruitt, Mary Lee Hu, Tom Joyce, Albert Paley, and the rest of the contemporary makers quoted verbatim with citation. All cited.
Local to this browser. No cloud, no account, no telemetry.