diff --git a/src/scene/texture/procedural/BlenderNoise.php b/src/scene/texture/procedural/BlenderNoise.php new file mode 100644 index 0000000..698aa74 --- /dev/null +++ b/src/scene/texture/procedural/BlenderNoise.php @@ -0,0 +1,52 @@ +mapping = $mapping; + else $this->mapping = new Mapping(); + $this->type = self::TYPE_BLENDER_NOISE; + $this->id = Scene::createID(); + Base::__construct($config); + } + +} + +?> diff --git a/src/scene/texture/procedural/BlenderStucci.php b/src/scene/texture/procedural/BlenderStucci.php new file mode 100644 index 0000000..05c9bc8 --- /dev/null +++ b/src/scene/texture/procedural/BlenderStucci.php @@ -0,0 +1,99 @@ +mapping = $mapping; + else $this->mapping = new Mapping(); + $this->type = self::TYPE_BLENDER_STUCCI; + $this->id = Scene::createID(); + Base::__construct($config); + } + +} + +?> diff --git a/src/scene/texture/procedural/BlenderVoronoi.php b/src/scene/texture/procedural/BlenderVoronoi.php new file mode 100644 index 0000000..86d9488 --- /dev/null +++ b/src/scene/texture/procedural/BlenderVoronoi.php @@ -0,0 +1,99 @@ +mapping = $mapping; + else $this->mapping = new Mapping(); + $this->type = self::TYPE_BLENDER_VORONOI; + $this->id = Scene::createID(); + Base::__construct($config); + } + +} + +?> diff --git a/src/scene/texture/procedural/BlenderWood.php b/src/scene/texture/procedural/BlenderWood.php new file mode 100644 index 0000000..103afc3 --- /dev/null +++ b/src/scene/texture/procedural/BlenderWood.php @@ -0,0 +1,112 @@ +mapping = $mapping; + else $this->mapping = new Mapping(); + $this->type = self::TYPE_BLENDER_WOOD; + $this->id = Scene::createID(); + Base::__construct($config); + } + +} + +?>