ForMatter/Materials/textile/3D Spacer Mesh (Warp-Knit Sandwich)
mat_mesh_3d_spacer

3D Spacer Mesh (Warp-Knit Sandwich)

warp-knit double-face fabric with monofilament pile separating two mesh layers · spacer mesh, 3D mesh, double-face spacer fabric, air mesh, shoe collar mesh, backpack back-panel mesh

The breathable, springy, three-dimensional fabric on the back panel of every modern backpack, in the collar of every running shoe, on the seat of every ergonomic office chair. Two flat knit faces — one open mesh on the body side, one closed or open on the gear side — separated by stiff monofilament yarns standing perpendicular between them. The whole sandwich is 3 to 12 millimeters thick and acts like a tiny springy air gap, ventilating the wearer and cushioning the load. Patagonia, Osprey, Mystery Ranch, and Salomon all use it; the running-shoe industry would be unrecognizable without it. Knitted on warp-knit machines (Karl Mayer, Liba) on a per-yard basis, then cut and bonded into the soft-goods stack.

Warp-knitted double-needle-bar Raschel construction. Two outer face layers of polyester or nylon multifilament yarn (one open hexagonal mesh, one closer-set warp knit), joined by a polyester monofilament pile yarn 0.10–0.30 mm in diameter standing nearly perpendicular between them. Total fabric thickness 3, 5, 8, 10, or 12 mm depending on application — backpack back panels typically 5–8 mm, shoe collars 3–5 mm, seat cushioning 10–12 mm. Fabric weight 200–500 g/m² for thinner grades, 600–900 g/m² for heavy seat-cushion grades. Compressive recovery is the key property — load it, release it, the monofilaments spring back; cyclic compression testing per ASTM D3574 is the standard. Air permeability 100+ cfm at 0.5 inWG (the highest of any common soft-goods fabric — that is the breathability story). Sews and laser-cuts cleanly; the cut edge shows the pile distinctly and is often used as a design feature. Bondable with TPU film for waterproof / sealed back-panel constructions.

mechanical

  • thickness_mm_typical3 / 5 / 8 / 10
  • weight_g_m2380
  • air_permeability_cfm120
  • compressive_recovery_percent95
source: Karl Mayer warp-knit technical literature; Müller spacer-fabric trade documents; Ripstop By The Roll product specifications

Sustainability

  • embodied carbon kg co2e per kg6.0
  • sourceEditorial estimate from ICE / Granta CES EduPack class databases for polyester multifilament + monofilament yarn, cradle-to-gate. Recycled-PET grades (rPET) shift this number downward.
  • recyclabilitylow to moderate — single-fiber polyester grades are mechanically recyclable; mixed nylon-polyester constructions resist sorting
  • biodegradableFalse
  • certificationsbluesign-approved (most premium soft-goods grades), OEKO-TEX, GRS (Global Recycled Standard) for rPET variants
  • localityprimary warp-knit production Taiwan, China, Germany; designer-quantity distribution via Ripstop By The Roll and Seattle Fabrics
visual
two distinct surface characters (smooth knit one side, hexagonal mesh the other) with a fine fibrous middle layer visible at the cut edge; the texture reads at arm's length
tactile
springy under thumb pressure with quick recovery; cool to the touch (the air gap is the insulator-against-warmth); mesh face slightly grippy, knit face smooth
weight perception
lighter than it looks — the air gap accounts for most of the volume
acoustic
near-silent; a faint plastic squeak when compressed quickly between fingers

PBR starter values

finish · fibrous — open for table, JSON, host snippets, downloads

Principled BSDF defaults derived from the sphere fibrous finish. Reasonable seed for Blender, Substance, Keyshot, Rhino — tune per material. Or grab the whole library at once: ForMaterials library →

# finish:                   fibrous
albedo                      #3a3a3d
metallic                    0.00
roughness                   0.70
ior                         1.45
transmission                0.00
clearcoat                   0.00
sheen                       0.70
anisotropic                 0.50
copy as JSON
{
  "albedo": "#3a3a3d",
  "metallic": 0.0,
  "roughness": 0.7,
  "ior": 1.45,
  "transmission": 0.0,
  "clearcoat": 0.0,
  "sheen": 0.7,
  "anisotropic": 0.5
}
Blender 4.x Python
# Blender 4.x — Principled BSDF
# 3D Spacer Mesh (Warp-Knit Sandwich) · finish: fibrous
import bpy
mat = bpy.data.materials.new(name="mat_mesh_3d_spacer")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.0423, 0.0423, 0.0467, 1.0)
bsdf.inputs["Metallic"].default_value           = 0.000
bsdf.inputs["Roughness"].default_value          = 0.700
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.700
bsdf.inputs["Anisotropic"].default_value        = 0.500
KeyShot Python (lux)
# KeyShot 11+ — lux Python API, Generic material
# 3D Spacer Mesh (Warp-Knit Sandwich) · finish: fibrous
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_mesh_3d_spacer", materialType="Generic")
mat.setProperty("diffuse",      (58, 58, 61))   # 8-bit sRGB
mat.setProperty("metallic",     0.000)
mat.setProperty("roughness",    0.700)
mat.setProperty("indexOfRefraction", 1.450)
mat.setProperty("transparency", 0.000)
mat.setProperty("coatingWeight", 0.000)
Substance pbrMetalRough
{
  "_format": "Substance Designer / Painter \u2014 pbrMetalRough constants",
  "_about": "3D Spacer Mesh (Warp-Knit Sandwich) \u00b7 finish: fibrous",
  "baseColor": {
    "r": 0.0423,
    "g": 0.0423,
    "b": 0.0467
  },
  "metallic": 0.0,
  "roughness": 0.7,
  "ior": 1.45,
  "opacity": 1.0,
  "anisotropyLevel": 0.5,
  "_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."
}
glTF 2.0 Metallic-Roughness
{
  "asset": {
    "version": "2.0",
    "generator": "ForMatter"
  },
  "materials": [
    {
      "name": "mat_mesh_3d_spacer",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.0423,
          0.0423,
          0.0467,
          1.0
        ],
        "metallicFactor": 0.0,
        "roughnessFactor": 0.7
      },
      "extensions": {
        "KHR_materials_ior": {
          "ior": 1.45
        },
        "KHR_materials_sheen": {
          "sheenColorFactor": [
            1.0,
            1.0,
            1.0
          ],
          "sheenRoughnessFactor": 0.7
        }
      }
    }
  ]
}
USD Preview Surface
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# 3D Spacer Mesh (Warp-Knit Sandwich) · finish: fibrous
def Material "mat_mesh_3d_spacer" {
    token outputs:surface.connect = </mat_mesh_3d_spacer/PreviewSurface.outputs:surface>

    def Shader "PreviewSurface" {
        uniform token info:id = "UsdPreviewSurface"
        color3f inputs:diffuseColor = (0.0423, 0.0423, 0.0467)
        float   inputs:metallic     = 0.000
        float   inputs:roughness    = 0.700
        float   inputs:ior          = 1.450
        float   inputs:opacity      = 1.000
        float   inputs:clearcoat    = 0.000
        token   outputs:surface
    }
}
↓ download glTF material

Second life

repairabilitylow — single-piece warp-knit with monofilament spacers; damaged sections cannot be invisibly mended.
recyclabilitylow — typically polyester / nylon blend; specialty recyclers.
disposal pathgeneral waste; some closed-loop in athletic-equipment programs.
typical longevity10 years (typical)
failure modes
  • monofilament-spacer fatigue under cyclic compression
  • face-yarn abrasion
  • UV degradation

Müller Textil / Apex 3D-spacer-fabric technical literature.