Skip to content

dtl::shape::Border (形状クラス)

Kasugaccho edited this page May 17, 2019 · 43 revisions

バージョン:0.4.0.0以降

<DTL/Shape/Border.hpp>

namespace dtl::shape {
  template <typename T>
  class Border;
}

T は1bit以上の型

概要

Borderとは "Matrixの描画範囲の周囲1マスに描画値を設置する" 機能を持つクラスである。

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

対応機能

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

メンバ関数

描画

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

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

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

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

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

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

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

例 (C++11)

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

int main() {

	using shape_t = std::uint_fast8_t;
	std::array<std::array<shape_t, 16>, 12> matrix{ {} };

	dtl::shape::Border<shape_t>(1).draw(matrix);

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

	return 0;
}

出力

1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
################################
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
################################

画像

db border

関連項目

dtl::shape::BorderOdd

dtl::shape::PointGridWithBorder

dtl::shape::PointGridAndSomeBlocksWithBorder

Clone this wiki locally