Improve PixmapPaint docs

This commit is contained in:
Elias Batek 2024-10-12 23:19:00 +02:00
parent ebdfcaf799
commit 75f77176d7
1 changed files with 30 additions and 2 deletions

View File

@ -433,13 +433,13 @@ struct Pixmap {
@safe pure nothrow: @safe pure nothrow:
/// ///
deprecated("Do `Pixmap.makeNew(size)` instead.") deprecated("Use `Pixmap.makeNew(size)` instead.")
this(Size size) { this(Size size) {
this.size = size; this.size = size;
} }
/// ///
deprecated("Do `Pixmap.makeNew(Size(width, height))` instead.") deprecated("Use `Pixmap.makeNew(Size(width, height))` instead.")
this(int width, int height) this(int width, int height)
in (width > 0) in (width > 0)
in (height > 0) { in (height > 0) {
@ -2167,6 +2167,13 @@ private void transposeTo(const Pixmap source, Pixmap target) @nogc {
/++ /++
Transposes an image. Transposes an image.
```
# #+
+x x
```
+/ +/
Pixmap transpose(const Pixmap source, Pixmap target) @nogc { Pixmap transpose(const Pixmap source, Pixmap target) @nogc {
target.adjustTo(source.transposeCalcDims()); target.adjustTo(source.transposeCalcDims());
@ -2203,6 +2210,13 @@ private void rotateClockwiseTo(const Pixmap source, Pixmap target) @nogc {
/++ /++
Rotates an image by 90° clockwise. Rotates an image by 90° clockwise.
```
# +#
+x x
```
+/ +/
Pixmap rotateClockwise(const Pixmap source, Pixmap target) @nogc { Pixmap rotateClockwise(const Pixmap source, Pixmap target) @nogc {
target.adjustTo(source.rotateClockwiseCalcDims()); target.adjustTo(source.rotateClockwiseCalcDims());
@ -2230,6 +2244,13 @@ private void rotateCounterClockwiseTo(const Pixmap source, Pixmap target) @nogc
/++ /++
Rotates an image by 90° counter-clockwise. Rotates an image by 90° counter-clockwise.
```
# x
+x #+
```
+/ +/
Pixmap rotateCounterClockwise(const Pixmap source, Pixmap target) @nogc { Pixmap rotateCounterClockwise(const Pixmap source, Pixmap target) @nogc {
target.adjustTo(source.rotateCounterClockwiseCalcDims()); target.adjustTo(source.rotateCounterClockwiseCalcDims());
@ -2266,6 +2287,13 @@ private void rotate180degTo(const Pixmap source, Pixmap target) @nogc {
/++ /++
Rotates an image by 180°. Rotates an image by 180°.
```
#- %~~
~~% -#
```
+/ +/
Pixmap rotate180deg(const Pixmap source, Pixmap target) @nogc { Pixmap rotate180deg(const Pixmap source, Pixmap target) @nogc {
target.adjustTo(source.rotate180degCalcDims()); target.adjustTo(source.rotate180degCalcDims());