From 5485e57bdb4ce86119cd10bcf3276a75fde9877b Mon Sep 17 00:00:00 2001 From: Lobo Date: Wed, 25 Feb 2026 09:10:41 +0100 Subject: [PATCH] Updated wiki links --- src/app/constants/UrlConstants.ts | 5 +++++ src/app/pages/algorithms/cloth/cloth.component.ts | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/app/constants/UrlConstants.ts b/src/app/constants/UrlConstants.ts index f06006a..4105d8c 100644 --- a/src/app/constants/UrlConstants.ts +++ b/src/app/constants/UrlConstants.ts @@ -18,4 +18,9 @@ static readonly MANDELBOX_WIKI = 'https://de.wikipedia.org/wiki/Mandelbox' static readonly JULIA3D_WIKI = 'https://de.wikipedia.org/wiki/Mandelknolle' static readonly DOUBLE_PENDULUM_WIKI = 'https://de.wikipedia.org/wiki/Doppelpendel' + static readonly CLOTH_SIMULATION_WIKI = 'https://en.wikipedia.org/wiki/Cloth_modeling' + static readonly XPBD_WIKI = 'https://www.emergentmind.com/topics/extended-position-based-dynamics-xpbd' + static readonly GPU_COMPUTING_WIKI = 'https://en.wikipedia.org/wiki/General-purpose_computing_on_graphics_processing_units' + static readonly DATA_STRUCTURE_WIKI = 'https://de.wikipedia.org/wiki/Datenstruktur' + } diff --git a/src/app/pages/algorithms/cloth/cloth.component.ts b/src/app/pages/algorithms/cloth/cloth.component.ts index ce3bd8d..00e1929 100644 --- a/src/app/pages/algorithms/cloth/cloth.component.ts +++ b/src/app/pages/algorithms/cloth/cloth.component.ts @@ -55,25 +55,25 @@ export class ClothComponent { { name: 'CLOTH.EXPLANATION.CLOTH_SIMULATION_EXPLANATION_TITLE', description: 'CLOTH.EXPLANATION.CLOTH_SIMULATION_EXPLANATION', - link: UrlConstants.MANDELBULB_WIKI, + link: UrlConstants.CLOTH_SIMULATION_WIKI, translateName: true }, { name: 'CLOTH.EXPLANATION.XPBD_EXPLANATION_TITLE', description: 'CLOTH.EXPLANATION.XPBD_EXPLANATION', - link: UrlConstants.MANDELBOX_WIKI, + link: UrlConstants.XPBD_WIKI, translateName: true }, { name: 'CLOTH.EXPLANATION.GPU_PARALLELIZATION_EXPLANATION_TITLE', description: 'CLOTH.EXPLANATION.GPU_PARALLELIZATION_EXPLANATION', - link: UrlConstants.JULIA3D_WIKI, + link: UrlConstants.GPU_COMPUTING_WIKI, translateName: true }, { name: 'CLOTH.EXPLANATION.DATA_STRUCTURES_EXPLANATION_TITLE', description: 'CLOTH.EXPLANATION.DATA_STRUCTURES_EXPLANATION', - link: UrlConstants.JULIA3D_WIKI, + link: UrlConstants.DATA_STRUCTURE_WIKI, translateName: true } ],