texture-generator

Procedural Equirectangular Textures

Simplex noise

This texture renders Simplex noise pattern. Click on a snapshot to open it online.

Code example

Code template of parameters with their default values.

import * as PET from "pet/patterns/simplex-noise.js";
:
model.material.map = PET.texture( );
PET.material( model.material );

Parameters

The parameters of the texture generator are:

API

All texture modules share the same API.

Online generator

online/simplex-noise.html

Source

src/patterns/simplex-noise.js

Back