Add new texture images: stripes.png, stripes_02.png, woodgrain_02.jpg, and woodgrain_03.jpg

- Added stripes.png and stripes_02.png with metadata from Adobe Photoshop.
- Included two new woodgrain textures (woodgrain_02.jpg and woodgrain_03.jpg) for enhanced visual variety.
This commit is contained in:
CNCKitchen
2026-03-31 20:26:25 +02:00
parent 88ab1747e7
commit f7187bc1df
9 changed files with 38 additions and 28 deletions
+11 -8
View File
@@ -153,6 +153,15 @@ const _LOG_MAX = Math.log(10);
const scaleToPos = v => Math.round((Math.log(Math.max(0.05, Math.min(10, v))) - _LOG_MIN) / (_LOG_MAX - _LOG_MIN) * 1000);
const posToScale = p => parseFloat(Math.exp(_LOG_MIN + (p / 1000) * (_LOG_MAX - _LOG_MIN)).toFixed(2));
function _applyScaleU(v) {
v = Math.max(0.05, Math.min(10, v));
settings.scaleU = v;
scaleUSlider.value = scaleToPos(v);
scaleUVal.value = v;
if (settings.lockScale) { settings.scaleV = v; scaleVSlider.value = scaleToPos(v); scaleVVal.value = v; }
clearTimeout(previewDebounce); previewDebounce = setTimeout(updatePreview, 80);
}
// ── Init ──────────────────────────────────────────────────────────────────────
let PRESETS = [];
@@ -230,6 +239,7 @@ function selectPreset(idx, swatchEl) {
activeMapEntry = PRESETS[idx];
activeMapName.textContent = PRESETS[idx].name;
resetTextureSmoothing();
if (activeMapEntry.defaultScale != null) _applyScaleU(activeMapEntry.defaultScale);
updatePreview();
}
@@ -299,14 +309,7 @@ function wireEvents() {
});
// Scale U — when lock is on, mirror to V
const applyScaleU = (v) => {
v = Math.max(0.05, Math.min(10, v));
settings.scaleU = v;
scaleUSlider.value = scaleToPos(v);
scaleUVal.value = v;
if (settings.lockScale) { settings.scaleV = v; scaleVSlider.value = scaleToPos(v); scaleVVal.value = v; }
clearTimeout(previewDebounce); previewDebounce = setTimeout(updatePreview, 80);
};
const applyScaleU = (v) => _applyScaleU(v);
scaleUSlider.addEventListener('input', () => applyScaleU(posToScale(parseFloat(scaleUSlider.value))));
scaleUSlider.addEventListener('dblclick', () => applyScaleU(posToScale(parseFloat(scaleUSlider.defaultValue))));
scaleUVal.addEventListener('change', () => applyScaleU(parseFloat(scaleUVal.value)));
+27 -20
View File
@@ -29,27 +29,34 @@ function fitDimensions(imgW, imgH) {
// ── Image-based presets ───────────────────────────────────────────────────────
const IMAGE_PRESETS = [
{ name: 'Basket', url: 'textures/basket.jpg' },
{ name: 'Brick', url: 'textures/brick.jpg' },
{ name: 'Bubble', url: 'textures/bubble.jpg' },
{ name: 'Carbon Fiber', url: 'textures/carbonFiber.jpg' },
{ name: 'Crystal', url: 'textures/crystal.jpg' },
{ name: 'Dots', url: 'textures/dots.jpg' },
{ name: 'Grip Surface', url: 'textures/gripSurface.jpg' },
{ name: 'Hexagons', url: 'textures/hexagons.jpg' },
{ name: 'Knitting', url: 'textures/knitting.jpg' },
{ name: 'Knurling', url: 'textures/knurling.jpg' },
{ name: 'Leather', url: 'textures/leather.jpg' },
{ name: 'Leather 2', url: 'textures/leather2.jpg' },
{ name: 'Noise', url: 'textures/noise.jpg' },
{ name: 'Voronoi', url: 'textures/voronoi.jpg' },
{ name: 'Weave', url: 'textures/weave.jpg' },
{ name: 'Weave 02', url: 'textures/weave_02.jpg' },
{ name: 'Weave 03', url: 'textures/weave_03.jpg' },
{ name: 'Wood', url: 'textures/wood.jpg' },
{ name: 'Basket', url: 'textures/basket.jpg', defaultScale: 0.5 },
{ name: 'Brick', url: 'textures/brick.jpg', defaultScale: 0.5 },
{ name: 'Bubble', url: 'textures/bubble.jpg', defaultScale: 0.5 },
{ name: 'Carbon Fiber', url: 'textures/carbonFiber.jpg', defaultScale: 0.5 },
{ name: 'Crystal', url: 'textures/crystal.jpg', defaultScale: 0.5 },
{ name: 'Dots', url: 'textures/dots.jpg', defaultScale: 0.1 },
{ name: 'Grip Surface', url: 'textures/gripSurface.jpg', defaultScale: 0.5 },
{ name: 'Hexagon', url: 'textures/hexagon.jpg', defaultScale: 0.5 },
{ name: 'Hexagons', url: 'textures/hexagons.jpg', defaultScale: 1.0 },
{ name: 'Isogrid', url: 'textures/isogrid.png', defaultScale: 0.5 },
{ name: 'Knitting', url: 'textures/knitting.jpg', defaultScale: 0.25 },
{ name: 'Knurling', url: 'textures/knurling.jpg', defaultScale: 0.15 },
{ name: 'Leather', url: 'textures/leather.jpg', defaultScale: 0.5 },
{ name: 'Leather 2', url: 'textures/leather2.jpg', defaultScale: 0.5 },
{ name: 'Noise', url: 'textures/noise.jpg', defaultScale: 0.3 },
{ name: 'Stripes', url: 'textures/stripes.png', defaultScale: 0.5 },
{ name: 'Stripes 02', url: 'textures/stripes_02.png', defaultScale: 1.0 },
{ name: 'Voronoi', url: 'textures/voronoi.jpg', defaultScale: 0.5 },
{ name: 'Weave', url: 'textures/weave.jpg', defaultScale: 0.5 },
{ name: 'Weave 02', url: 'textures/weave_02.jpg', defaultScale: 0.5 },
{ name: 'Weave 03', url: 'textures/weave_03.jpg', defaultScale: 0.5 },
{ name: 'Wood', url: 'textures/wood.jpg', defaultScale: 0.5 },
{ name: 'Wood Grain 02',url: 'textures/woodgrain_02.jpg', defaultScale: 1.0 },
{ name: 'Wood Grain 03',url: 'textures/woodgrain_03.jpg', defaultScale: 1.0 },
];
function loadImagePreset({ name, url }) {
function loadImagePreset(preset) {
const { name, url } = preset;
return new Promise((resolve, reject) => {
const img = new Image();
img.onload = () => {
@@ -65,7 +72,7 @@ function loadImagePreset({ name, url }) {
texture.wrapS = texture.wrapT = THREE.RepeatWrapping;
texture.name = name;
resolve({ name, thumbCanvas: thumb, fullCanvas: full, texture, imageData, width: w, height: h });
resolve({ name, thumbCanvas: thumb, fullCanvas: full, texture, imageData, width: w, height: h, defaultScale: preset.defaultScale });
};
img.onerror = () => reject(new Error(`Failed to load preset image: ${url}`));
img.src = url;
Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB