From 6772c73d8df23c4c5c835a22332318ea072ff9b5 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 22 Jul 2025 19:38:27 +0300 Subject: [PATCH] pgmramp: fix typo (#17316) --- pages/common/pgmramp.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/pgmramp.md b/pages/common/pgmramp.md index ab4b937c95..95daed2e6a 100644 --- a/pages/common/pgmramp.md +++ b/pages/common/pgmramp.md @@ -5,20 +5,20 @@ - Generate a left-to-right greyscale map: -`pgmtexture -lr > {{path/to/output.pgm}}` +`pgmramp -lr > {{path/to/output.pgm}}` - Generate a top-to-bottom greyscale map: -`pgmtexture -tb > {{path/to/output.pgm}}` +`pgmramp -tb > {{path/to/output.pgm}}` - Generate a rectangular greyscale map: -`pgmtexture -rectangle > {{path/to/output.pgm}}` +`pgmramp -rectangle > {{path/to/output.pgm}}` - Generate a elliptical greyscale map: -`pgmtexture -ellipse {{path/to/image.pgm}} > {{path/to/output.pgm}}` +`pgmramp -ellipse {{path/to/image.pgm}} > {{path/to/output.pgm}}` - Generate a greyscale map from the top-left corner to the bottom-right corner: -`pgmtexture -diagonal {{path/to/image.pgm}} > {{path/to/output.pgm}}` +`pgmramp -diagonal {{path/to/image.pgm}} > {{path/to/output.pgm}}`