-
-
Notifications
You must be signed in to change notification settings - Fork 81
dtl::retouch::Multiplication (修正クラス)
Kasugaccho edited this page Aug 17, 2019
·
2 revisions
<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 |
#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,
Copyright (c) 2018-2021 As Project.
Distributed under the Boost Software License, Version 1.0.(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)