Skip to content

dtl::retouch::Multiplication (修正クラス)

Kasugaccho edited this page Aug 17, 2019 · 2 revisions

バージョン:0.4.11.0以降

<DTL/Retouch/Multiplication.hpp>

namespace dtl::retouch {
  template <typename T>
  class Multiplication;
}

T は1bit以上の型

対応機能

機能名 対応
非長方形Matrix 可能✅

概要

Multiplicationとは "Matrixの描画範囲を指定値で掛け算する" 機能を持つクラスである。

描画範囲の全てを必ず塗りつぶすとは限らない (Matrixの初期化が必要)

メンバ関数

描画

名前 説明 対応バージョン
draw Matrixに描画する v0.4.11
drawArray Matrixに描画する v0.4.11
create Matrixに描画してMatrixを返す v0.4.11
createArray Matrixに描画してMatrixを返す v0.4.11

描画範囲取得/描画値取得

名前 説明 対応バージョン
getPointX 描画始点座標Xを取得 v0.4.11
getPointY 描画始点座標Yを取得 v0.4.11
getWidth 描画横幅Wを取得 v0.4.11
getHeight 描画縦幅Hを取得 v0.4.11
getValue 描画値を取得 v0.4.11

描画範囲指定/描画値指定

名前 説明 対応バージョン
setPointX 描画始点座標Xを指定 v0.4.11
setPointY 描画始点座標Yを指定 v0.4.11
setWidth 描画横幅Wを指定 v0.4.11
setHeight 描画縦幅Hを指定 v0.4.11
setPoint 描画始点座標(X,Y)を指定 v0.4.11
setRange 描画範囲(X,Y,W,H)を指定 v0.4.11
setValue 描画値を指定 v0.4.11

描画範囲消去/描画値消去

名前 説明 対応バージョン
clearPointX 描画始点座標Xを消去 v0.4.11
clearPointY 描画始点座標Yを消去 v0.4.11
clearWidth 描画横幅Wを消去 v0.4.11
clearHeight 描画縦幅Hを消去 v0.4.11
clearPoint 描画始点座標(X,Y)を消去 v0.4.11
clearRange 描画範囲(X,Y,W,H)を消去 v0.4.11
clearValue 描画値を消去 v0.4.11

例 (C++11)

#include <DTL.hpp>
#include <cstdint>
#include <array>

int main() {

	using shape_t = std::uint_fast8_t;
	std::array<std::array<shape_t, 5>, 6> matrix{ {} };

	dtl::shape::AscendingOrder<shape_t>(50).draw(matrix);

	dtl::console::OutputNumber<shape_t>(",").draw(matrix);

	dtl::retouch::Multiplication<shape_t>(2).draw(matrix);

	dtl::console::OutputNumber<shape_t>(",").draw(matrix);
	return 0;
}

出力

50,51,52,53,54,
55,56,57,58,59,
60,61,62,63,64,
65,66,67,68,69,
70,71,72,73,74,
75,76,77,78,79,
100,102,104,106,108,
110,112,114,116,118,
120,122,124,126,128,
130,132,134,136,138,
140,142,144,146,148,
150,152,154,156,158,
Clone this wiki locally